diff options
author | 2025-01-06 23:24:01 +0100 | |
---|---|---|
committer | 2025-01-06 23:24:01 +0100 | |
commit | 82ac0e7bf96d7c130108159a8b933ddfb39233fd (patch) | |
tree | f701ccb666d5a735ed25f2f97c7de8351de7c69a /runtime | |
parent | 91fd6d395fad08bcf5d068be95575865ccb305cb (diff) | |
download | iced-82ac0e7bf96d7c130108159a8b933ddfb39233fd.tar.gz iced-82ac0e7bf96d7c130108159a8b933ddfb39233fd.tar.bz2 iced-82ac0e7bf96d7c130108159a8b933ddfb39233fd.zip |
Rename `window::resizable` to `window::set_resizable`
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/window.rs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/runtime/src/window.rs b/runtime/src/window.rs index 9be61315..ab805e52 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -278,10 +278,29 @@ pub fn resize<T>(id: Id, new_size: Size) -> Task<T> { } /// Set the window to be resizable or not. -pub fn resizable<T>(id: Id, resizable: bool) -> Task<T> { +pub fn set_resizable<T>(id: Id, resizable: bool) -> Task<T> { task::effect(crate::Action::Window(Action::SetResizable(id, resizable))) } +/// Set the inner maximum size of the window. +pub fn set_max_size<T>(id: Id, size: Option<Size>) -> Task<T> { + task::effect(crate::Action::Window(Action::SetMaxSize(id, size))) +} + +/// Set the inner minimum size of the window. +pub fn set_min_size<T>(id: Id, size: Option<Size>) -> Task<T> { + task::effect(crate::Action::Window(Action::SetMinSize(id, size))) +} + +/// Set the window size increment. +/// +/// This is usually used by apps such as terminal emulators that need "blocky" resizing. +pub fn set_resize_increments<T>(id: Id, increments: Option<Size>) -> Task<T> { + task::effect(crate::Action::Window(Action::SetResizeIncrements( + id, increments, + ))) +} + /// Get the window's size in logical dimensions. pub fn get_size(id: Id) -> Task<Size> { task::oneshot(move |channel| { @@ -385,25 +404,6 @@ pub fn change_level<T>(id: Id, level: Level) -> Task<T> { task::effect(crate::Action::Window(Action::ChangeLevel(id, level))) } -/// Set the inner maximum size of the window. -pub fn set_max_size<T>(id: Id, size: Option<Size>) -> Task<T> { - task::effect(crate::Action::Window(Action::SetMaxSize(id, size))) -} - -/// Set the inner minimum size of the window. -pub fn set_min_size<T>(id: Id, size: Option<Size>) -> Task<T> { - task::effect(crate::Action::Window(Action::SetMinSize(id, size))) -} - -/// Set the window size increment. -/// -/// This is usually used by apps such as terminal emulators that need "blocky" resizing. -pub fn set_resize_increments<T>(id: Id, increments: Option<Size>) -> Task<T> { - task::effect(crate::Action::Window(Action::SetResizeIncrements( - id, increments, - ))) -} - /// Show the [system menu] at cursor position. /// /// [system menu]: https://en.wikipedia.org/wiki/Common_menus_in_Microsoft_Windows#System_menu |