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-18 15:01:17 -08:00
|
|
|
pub use window::{Event, Id, Mode, RedrawRequest, frames, 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
|
|
|
}
|
|
|
|
|
|
2023-01-31 04:04:29 +01:00
|
|
|
/// Maximizes the window.
|
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
|
|
|
}
|
|
|
|
|
|
2023-01-31 04:04:29 +01:00
|
|
|
/// Minimes the window.
|
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
|
|
|
|
2023-02-15 14:55:02 -08:00
|
|
|
/// Changes the [`Mode`] of the window.
|
|
|
|
|
pub fn change_mode<Message>(id: window::Id, mode: Mode) -> Command<Message> {
|
2022-09-19 20:59:37 -03:00
|
|
|
Command::single(command::Action::Window(id, window::Action::SetMode(mode)))
|
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
|
|
|
}
|
2023-01-31 04:08:19 +01:00
|
|
|
|
|
|
|
|
/// Toggles the window to maximized or back.
|
2023-02-15 14:55:02 -08:00
|
|
|
pub fn toggle_maximize<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::ToggleMaximize))
|
2023-01-31 04:08:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Toggles the window decorations.
|
2023-02-15 14:55:02 -08:00
|
|
|
pub fn toggle_decorations<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::ToggleDecorations))
|
2023-01-31 04:08:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Request user attention to the window, this has no effect if the application
|
|
|
|
|
/// is already focused. How requesting for user attention manifests is platform dependent,
|
|
|
|
|
/// see [`UserAttention`] for details.
|
|
|
|
|
///
|
|
|
|
|
/// Providing `None` will unset the request for user attention. Unsetting the request for
|
|
|
|
|
/// user attention might not be done automatically by the WM when the window receives input.
|
|
|
|
|
pub fn request_user_attention<Message>(
|
2023-02-15 14:55:02 -08:00
|
|
|
id: window::Id,
|
2023-01-31 04:08:19 +01:00
|
|
|
user_attention: Option<UserAttention>,
|
|
|
|
|
) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(
|
2023-02-15 14:55:02 -08:00
|
|
|
id,
|
2023-01-31 04:08:19 +01:00
|
|
|
window::Action::RequestUserAttention(user_attention),
|
|
|
|
|
))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Brings the window to the front and sets input focus. Has no effect if the window is
|
|
|
|
|
/// already in focus, minimized, or not visible.
|
|
|
|
|
///
|
|
|
|
|
/// This [`Command`] steals input focus from other applications. Do not use this method unless
|
|
|
|
|
/// you are certain that's what the user wants. Focus stealing can cause an extremely disruptive
|
|
|
|
|
/// user experience.
|
2023-02-15 14:55:02 -08:00
|
|
|
pub fn gain_focus<Message>(id: window::Id) -> Command<Message> {
|
|
|
|
|
Command::single(command::Action::Window(id, window::Action::GainFocus))
|
2023-01-31 04:08:19 +01:00
|
|
|
}
|