diff options
author | 2024-06-20 18:44:13 +0200 | |
---|---|---|
committer | 2024-06-20 18:44:13 +0200 | |
commit | a26493ed2b3a7679c9de751ddb6d2e45e9343fa0 (patch) | |
tree | b216ed35a59e9129dfa749de3e19cc2165bef0bb /src | |
parent | 714d4503154a6224c26f2eed6e399c73d57b4bf8 (diff) | |
parent | 0785b334e79d8f973c96b86608823f54afdf93c4 (diff) | |
download | iced-a26493ed2b3a7679c9de751ddb6d2e45e9343fa0.tar.gz iced-a26493ed2b3a7679c9de751ddb6d2e45e9343fa0.tar.bz2 iced-a26493ed2b3a7679c9de751ddb6d2e45e9343fa0.zip |
Merge pull request #2470 from ryankopf/master
feat: Add methods for window settings in Application
Diffstat (limited to 'src')
-rw-r--r-- | src/application.rs | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/application.rs b/src/application.rs index edca6e79..5d16b40f 100644 --- a/src/application.rs +++ b/src/application.rs @@ -212,6 +212,13 @@ impl<P: Program> Application<P> { self } + /// Sets the [`window::Settings`] of the [`Application`]. + /// + /// Overwrites any previous [`window::Settings`]. + pub fn window(self, window: window::Settings) -> Self { + Self { window, ..self } + } + /// Sets the [`window::Settings::position`] to [`window::Position::Centered`] in the [`Application`]. pub fn centered(self) -> Self { Self { @@ -256,6 +263,50 @@ impl<P: Program> Application<P> { } } + /// Sets the [`window::Settings::resizable`] of the [`Application`]. + pub fn resizable(self, resizable: bool) -> Self { + Self { + window: window::Settings { + resizable, + ..self.window + }, + ..self + } + } + + /// Sets the [`window::Settings::decorations`] of the [`Application`]. + pub fn decorations(self, decorations: bool) -> Self { + Self { + window: window::Settings { + decorations, + ..self.window + }, + ..self + } + } + + /// Sets the [`window::Settings::position`] of the [`Application`]. + pub fn position(self, position: window::Position) -> Self { + Self { + window: window::Settings { + position, + ..self.window + }, + ..self + } + } + + /// Sets the [`window::Settings::level`] of the [`Application`]. + pub fn level(self, level: window::Level) -> Self { + Self { + window: window::Settings { + level, + ..self.window + }, + ..self + } + } + /// Sets the [`Title`] of the [`Application`]. pub(crate) fn title( self, |