summaryrefslogtreecommitdiff
path: root/WindowServer/WSAPITypes.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-21 00:21:23 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-21 00:21:23 +0100
commit6084cd0c56f9d1949b8bb07db5729d2a0108d5a4 (patch)
tree63aa1fb2ff50cc5c132c6be67b671e316ca05bf2 /WindowServer/WSAPITypes.h
parentfd575055c2215ce2ce42efaa82be53a94c7b3932 (diff)
downloadserenity-6084cd0c56f9d1949b8bb07db5729d2a0108d5a4.zip
Add concept of size increments to windowing system.
Use this to implement incremental resizing for Terminal so that we only ever resize to fit a perfect number of rows and columns. This is very nice. :^)
Diffstat (limited to 'WindowServer/WSAPITypes.h')
-rw-r--r--WindowServer/WSAPITypes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/WindowServer/WSAPITypes.h b/WindowServer/WSAPITypes.h
index da39a9a04e..9cd0fea2d8 100644
--- a/WindowServer/WSAPITypes.h
+++ b/WindowServer/WSAPITypes.h
@@ -170,6 +170,8 @@ struct WSAPI_ClientMessage {
WSAPI_Rect rect;
bool has_alpha_channel;
float opacity;
+ WSAPI_Size base_size;
+ WSAPI_Size size_increment;
} window;
struct {
WSAPI_Size size;