libcosmic/examples/text-input/src/main.rs

124 lines
3.2 KiB
Rust
Raw Normal View History

2024-04-09 09:49:08 +02:00
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
//! Application API example
2024-10-16 20:36:46 -04:00
use cosmic::app::{Core, Settings, Task};
2024-04-09 09:49:08 +02:00
use cosmic::{executor, iced, ApplicationExt, Element};
/// Runs application with these settings
#[rustfmt::skip]
fn main() -> Result<(), Box<dyn std::error::Error>> {
tracing_subscriber::fmt::init();
let _ = tracing_log::LogTracer::init();
cosmic::app::run::<App>(Settings::default(), ())?;
Ok(())
}
/// Messages that are used specifically by our [`App`].
#[derive(Clone, Debug)]
pub enum Message {
EditMode(bool),
Input(String),
}
/// The [`App`] stores application-specific state.
pub struct App {
core: Core,
input: String,
editing: bool,
search_id: cosmic::widget::Id,
}
/// Implement [`cosmic::Application`] to integrate with COSMIC.
impl cosmic::Application for App {
/// Default async executor to use with the app.
type Executor = executor::Default;
/// Argument received [`cosmic::Application::new`].
type Flags = ();
/// Message type specific to our [`App`].
type Message = Message;
/// The unique application ID to supply to the window manager.
const APP_ID: &'static str = "org.cosmic.TextInputsDemo";
fn core(&self) -> &Core {
&self.core
}
fn core_mut(&mut self) -> &mut Core {
&mut self.core
}
/// Creates the application, and optionally emits command on initialize.
2024-10-16 20:36:46 -04:00
fn init(core: Core, _input: Self::Flags) -> (Self, Task<Self::Message>) {
2024-04-09 09:49:08 +02:00
let mut app = App {
core,
editing: false,
input: String::from("Test"),
search_id: cosmic::widget::Id::unique(),
};
2024-10-16 20:36:46 -04:00
let commands = Task::batch(vec![
2024-04-09 09:49:08 +02:00
cosmic::widget::text_input::focus(app.search_id.clone()),
app.update_title(),
]);
(app, commands)
}
/// Handle application events here.
2024-10-16 20:36:46 -04:00
fn update(&mut self, message: Self::Message) -> Task<Self::Message> {
2024-04-09 09:49:08 +02:00
match message {
Message::Input(text) => {
self.input = text;
}
Message::EditMode(editing) => {
self.editing = editing;
}
}
2024-10-16 20:36:46 -04:00
Task::none()
2024-04-09 09:49:08 +02:00
}
/// Creates a view after each update.
fn view(&self) -> Element<Self::Message> {
let editable = cosmic::widget::editable_input(
"Input text here",
&self.input,
self.editing,
Message::EditMode,
)
.on_input(Message::Input)
.id(self.search_id.clone());
let inline = cosmic::widget::inline_input("", &self.input).on_input(Message::Input);
2024-04-09 09:49:08 +02:00
let column = cosmic::widget::column().push(editable).push(inline);
let centered = cosmic::widget::container(column.width(200))
.width(iced::Length::Fill)
.height(iced::Length::Shrink)
2024-11-03 19:16:37 +01:00
.align_x(iced::Alignment::Center)
.align_y(iced::Alignment::Center);
2024-04-09 09:49:08 +02:00
Element::from(centered)
}
}
impl App
where
Self: cosmic::Application,
{
2024-10-16 20:36:46 -04:00
fn update_title(&mut self) -> Task<Message> {
2024-04-09 09:49:08 +02:00
let window_title = format!("COSMIC TextInputs Demo");
self.set_header_title(window_title.clone());
self.set_window_title(window_title)
}
}