iced-yoda/src/window/settings.rs

73 lines
2.1 KiB
Rust
Raw Normal View History

use crate::window::Icon;
/// The window settings of an application.
#[derive(Debug, Clone)]
pub struct Settings {
/// The initial size of the window.
pub size: (u32, u32),
2021-06-25 17:16:44 +02:00
/// The initial position of the window.
///
/// When the decorations of the window are enabled, Windows 10 will add some
/// invisible padding to the window. This padding gets included in the
/// position. So if you have decorations enabled and want the window to be
/// at (0, 0) you would have to set the position to
/// `(PADDING_X, PADDING_Y)`.
2021-06-25 18:03:18 +02:00
pub position: (i32, i32),
2021-06-25 17:16:44 +02:00
/// The minimum size of the window.
pub min_size: Option<(u32, u32)>,
/// The maximum size of the window.
pub max_size: Option<(u32, u32)>,
/// Whether the window should be resizable or not.
pub resizable: bool,
/// Whether the window should have a border, a title bar, etc. or not.
pub decorations: bool,
/// Whether the window should be transparent.
2020-08-17 15:38:02 +07:00
pub transparent: bool,
/// Whether the window will always be on top of other windows.
pub always_on_top: bool,
/// The icon of the window.
pub icon: Option<Icon>,
}
impl Default for Settings {
fn default() -> Settings {
Settings {
size: (1024, 768),
2021-06-25 17:16:44 +02:00
position: (100, 100),
min_size: None,
max_size: None,
resizable: true,
decorations: true,
2020-08-17 15:38:02 +07:00
transparent: false,
always_on_top: false,
icon: None,
}
}
}
#[cfg(not(target_arch = "wasm32"))]
impl From<Settings> for iced_winit::settings::Window {
fn from(settings: Settings) -> Self {
Self {
size: settings.size,
2021-06-25 17:16:44 +02:00
position: settings.position,
min_size: settings.min_size,
max_size: settings.max_size,
resizable: settings.resizable,
decorations: settings.decorations,
2020-08-17 15:38:02 +07:00
transparent: settings.transparent,
always_on_top: settings.always_on_top,
icon: settings.icon.map(Icon::into),
platform_specific: Default::default(),
}
}
}