summaryrefslogtreecommitdiffstats
path: root/winit/src/settings/mod.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2019-12-03 07:38:03 +0100
committerLibravatar GitHub <noreply@github.com>2019-12-03 07:38:03 +0100
commit60b32a9fed67acfd3e3ab8b9aa204853664ffd04 (patch)
tree1b4b177e0a16fca8be52791a6afb907c8d4ec82d /winit/src/settings/mod.rs
parentff0dc44cd7847bf6b1754b5f3b4d1ee53377bc49 (diff)
parent7756081fdbc93aee3f5d11fbd14e3d9f2cbefe57 (diff)
downloadiced-60b32a9fed67acfd3e3ab8b9aa204853664ffd04.tar.gz
iced-60b32a9fed67acfd3e3ab8b9aa204853664ffd04.tar.bz2
iced-60b32a9fed67acfd3e3ab8b9aa204853664ffd04.zip
Merge pull request #94 from hatoo/improve-setting
Improve window setting
Diffstat (limited to 'winit/src/settings/mod.rs')
-rw-r--r--winit/src/settings/mod.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/winit/src/settings/mod.rs b/winit/src/settings/mod.rs
new file mode 100644
index 00000000..151d73d7
--- /dev/null
+++ b/winit/src/settings/mod.rs
@@ -0,0 +1,43 @@
+//! Configure your application.
+
+#[cfg_attr(target_os = "windows", path = "windows.rs")]
+#[cfg_attr(not(target_os = "windows"), path = "not_windows.rs")]
+mod platform;
+
+pub use platform::PlatformSpecific;
+
+/// The settings of an application.
+#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
+pub struct Settings {
+ /// The [`Window`] settings
+ ///
+ /// [`Window`]: struct.Window.html
+ pub window: Window,
+}
+
+/// The window settings of an application.
+#[derive(Debug, Clone, Copy, PartialEq, Eq)]
+pub struct Window {
+ /// The size of the window.
+ pub size: (u32, u32),
+
+ /// Whether the window should be resizable or not.
+ pub resizable: bool,
+
+ /// Whether the window should have a border, a title bar, etc.
+ pub decorations: bool,
+
+ /// Platform specific settings.
+ pub platform_specific: platform::PlatformSpecific,
+}
+
+impl Default for Window {
+ fn default() -> Window {
+ Window {
+ size: (1024, 768),
+ resizable: true,
+ decorations: true,
+ platform_specific: Default::default(),
+ }
+ }
+}