mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 20:31:27 +00:00
parent
b236d2d06e
commit
9cb1a4a4e0
10 changed files with 261 additions and 21 deletions
|
|
@ -249,6 +249,18 @@ public:
|
|||
return cbindgen_private::slint_window_properties_get_fullscreen(inner());
|
||||
}
|
||||
|
||||
/// Returns true if the window should be minimized; false otherwise
|
||||
bool minimized() const
|
||||
{
|
||||
return cbindgen_private::slint_window_properties_get_minimized(inner());
|
||||
}
|
||||
|
||||
/// Returns true if the window should be maximized; false otherwise
|
||||
bool maximized() const
|
||||
{
|
||||
return cbindgen_private::slint_window_properties_get_maximized(inner());
|
||||
}
|
||||
|
||||
/// This struct describes the layout constraints of a window.
|
||||
///
|
||||
/// It is the return value of WindowProperties::layout_constraints().
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue