mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 04:52:23 +00:00
LibGUI+WindowServer: Don't use a WM IPC to initiate own window resize
The WM_* IPC messages are intended for "outsider" window management, not for a client's own windows. Make a separate StartWindowResize message for this. This was the only reason that every IPC client had to know its server side client ID.
This commit is contained in:
parent
c41d340983
commit
a5bbe3280d
Notes:
sideshowbarker
2024-07-18 22:39:49 +09:00
Author: https://github.com/awesomekling
Commit: a5bbe3280d
6 changed files with 20 additions and 4 deletions
|
@ -60,6 +60,8 @@ endpoint WindowServer = 2
|
|||
|
||||
GetWindowRectInMenubar(i32 window_id) => (Gfx::IntRect rect)
|
||||
|
||||
StartWindowResize(i32 window_id) =|
|
||||
|
||||
IsMaximized(i32 window_id) => (bool maximized)
|
||||
|
||||
InvalidateRect(i32 window_id, Vector<Gfx::IntRect> rects, bool ignore_occlusion) =|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue