LibGUI: Implement set_max_size

I already support set_min_size so why not this :)
This commit is contained in:
2025-06-25 13:31:54 +03:00
parent 85f200bd86
commit bbb490b24f
7 changed files with 58 additions and 2 deletions

View File

@@ -38,6 +38,7 @@ public:
void on_window_set_mouse_capture(int fd, const LibGUI::WindowPacket::WindowSetMouseCapture&);
void on_window_set_size(int fd, const LibGUI::WindowPacket::WindowSetSize&);
void on_window_set_min_size(int fd, const LibGUI::WindowPacket::WindowSetMinSize&);
void on_window_set_max_size(int fd, const LibGUI::WindowPacket::WindowSetMaxSize&);
void on_window_set_fullscreen(int fd, const LibGUI::WindowPacket::WindowSetFullscreen&);
void on_window_set_title(int fd, const LibGUI::WindowPacket::WindowSetTitle&);