2021-09-02 16:30:14 +07:00
|
|
|
//! Interact with the window of your application.
|
|
|
|
|
use crate::command::{self, Command};
|
|
|
|
|
use iced_native::window;
|
2021-09-01 19:21:49 +07:00
|
|
|
|
2023-01-05 15:26:28 -08:00
|
|
|
pub use window::{Event, Id, Mode, UserAttention};
|
2021-09-02 16:30:14 +07:00
|
|
|
|
2023-01-05 15:26:28 -08:00
|
|
|
/// Closes the window.
|
|
|
|
|
pub fn close<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::Close))
|
2022-12-15 03:06:04 +01:00
|
|
|
}
|
|
|
|
|
|
2022-10-06 20:38:21 +02:00
|
|
|
/// Begins dragging the window while the left mouse button is held.
|
2023-01-05 15:26:28 -08:00
|
|
|
pub fn drag<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::Drag))
|
2022-10-06 20:38:21 +02:00
|
|
|
}
|
|
|
|
|
|
2023-01-05 15:26:28 -08:00
|
|
|
/// Spawns a new window.
|
2022-10-19 23:33:20 -03:00
|
|
|
pub fn spawn<Message>(
|
|
|
|
|
id: window::Id,
|
|
|
|
|
settings: window::Settings,
|
|
|
|
|
) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(
|
|
|
|
|
id,
|
|
|
|
|
window::Action::Spawn { settings },
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-02 16:30:14 +07:00
|
|
|
/// Resizes the window to the given logical dimensions.
|
2022-09-19 20:59:37 -03:00
|
|
|
pub fn resize<Message>(
|
|
|
|
|
id: window::Id,
|
|
|
|
|
width: u32,
|
|
|
|
|
height: u32,
|
|
|
|
|
) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(
|
|
|
|
|
id,
|
|
|
|
|
window::Action::Resize { width, height },
|
|
|
|
|
))
|
2021-09-02 16:30:14 +07:00
|
|
|
}
|
|
|
|
|
|
2022-10-09 16:35:28 +02:00
|
|
|
/// Sets the window to maximized or back.
|
2023-01-05 15:26:28 -08:00
|
|
|
pub fn maximize<Message>(id: window::Id, value: bool) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(
|
|
|
|
|
id,
|
|
|
|
|
window::Action::Maximize(value),
|
|
|
|
|
))
|
2022-10-09 16:35:28 +02:00
|
|
|
}
|
|
|
|
|
|
2022-10-11 15:24:26 +02:00
|
|
|
/// Set the window to minimized or back.
|
2023-01-05 15:26:28 -08:00
|
|
|
pub fn minimize<Message>(id: window::Id, value: bool) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(
|
|
|
|
|
id,
|
|
|
|
|
window::Action::Minimize(value),
|
|
|
|
|
))
|
2022-10-11 15:24:26 +02:00
|
|
|
}
|
|
|
|
|
|
2021-09-02 16:30:14 +07:00
|
|
|
/// Moves a window to the given logical coordinates.
|
2022-09-19 20:59:37 -03:00
|
|
|
pub fn move_to<Message>(id: window::Id, x: i32, y: i32) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::Move { x, y }))
|
2021-09-02 16:30:14 +07:00
|
|
|
}
|
2022-08-18 14:39:15 +02:00
|
|
|
|
|
|
|
|
/// Sets the [`Mode`] of the window.
|
2022-09-19 20:59:37 -03:00
|
|
|
pub fn set_mode<Message>(id: window::Id, mode: Mode) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::SetMode(mode)))
|
2022-08-18 14:39:15 +02:00
|
|
|
}
|
|
|
|
|
|
2022-10-09 16:35:28 +02:00
|
|
|
/// Sets the window to maximized or back.
|
2023-01-05 15:26:28 -08:00
|
|
|
pub fn toggle_maximize<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::ToggleMaximize))
|
2022-10-09 16:35:28 +02:00
|
|
|
}
|
|
|
|
|
|
2022-08-18 14:39:15 +02:00
|
|
|
/// Fetches the current [`Mode`] of the window.
|
|
|
|
|
pub fn fetch_mode<Message>(
|
2022-09-19 20:59:37 -03:00
|
|
|
id: window::Id,
|
2022-08-18 14:39:15 +02:00
|
|
|
f: impl FnOnce(Mode) -> Message + 'static,
|
|
|
|
|
) -> Command<Message> {
|
2022-09-19 20:59:37 -03:00
|
|
|
Command::single(command::Action::Window(
|
|
|
|
|
id,
|
|
|
|
|
window::Action::FetchMode(Box::new(f)),
|
|
|
|
|
))
|
2022-08-18 14:39:15 +02:00
|
|
|
}
|