WindowServer: Implement window resizing

windows can now set resizable attribute which allows window server to
resize them
This commit is contained in:
2025-05-05 03:14:50 +03:00
parent fcfadd7c74
commit 7798145c74
4 changed files with 106 additions and 22 deletions

View File

@@ -186,6 +186,7 @@ namespace LibGUI
bool focusable;
bool rounded_corners;
bool alpha_channel;
bool resizable;
};
DEFINE_PACKET(

View File

@@ -22,6 +22,7 @@ namespace LibGUI
.focusable = true,
.rounded_corners = true,
.alpha_channel = false,
.resizable = false,
};
public: