mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibGUI+Minesweeper: Add GWindow::set_resizable().
This commit is contained in:
parent
a0633c298b
commit
0dcb7a234e
2 changed files with 4 additions and 0 deletions
|
@ -28,6 +28,9 @@ public:
|
|||
bool is_modal() const { return m_modal; }
|
||||
void set_modal(bool);
|
||||
|
||||
bool is_resizable() const { return m_resizable; }
|
||||
void set_resizable(bool resizable) { m_resizable = resizable; }
|
||||
|
||||
void set_double_buffering_enabled(bool);
|
||||
void set_has_alpha_channel(bool);
|
||||
void set_opacity(float);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue