diff options
author | Michele Calgaro <[email protected]> | 2024-03-27 10:58:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-29 11:23:31 +0900 |
commit | cc88c98f3884e8446e5cce409fb6d8e6c87b2c96 (patch) | |
tree | 1018be9a4d9aae4e086c186dfca9bd84aa6b80db /twin/KWinInterface.h | |
parent | 7482fe22830ce974a15e3a132dcc3ac6cee1a65f (diff) | |
download | tdebase-cc88c98f3884e8446e5cce409fb6d8e6c87b2c96.tar.gz tdebase-cc88c98f3884e8446e5cce409fb6d8e6c87b2c96.zip |
twin: add tileWindowToBorder() and rename previously introduced tileHorizontally(), tileVertically(), tileGrid() DCOP calls
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'twin/KWinInterface.h')
-rw-r--r-- | twin/KWinInterface.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/twin/KWinInterface.h b/twin/KWinInterface.h index 34e35a5bd..37fe2d9b6 100644 --- a/twin/KWinInterface.h +++ b/twin/KWinInterface.h @@ -29,9 +29,10 @@ class KWinInterface : virtual public DCOPObject virtual void circulateDesktopApplications() = 0; virtual void updateOverlappingShadows(unsigned long window) = 0; virtual void setShadowed(unsigned long window, bool shadowed) = 0; - virtual void tileHorizontally(unsigned long w1, unsigned long w2) = 0; - virtual void tileVertically(unsigned long w1, unsigned long w2) = 0; - virtual void tileGrid(unsigned long w1, unsigned long w2, unsigned long w3, unsigned long w4) = 0; + virtual void tileWindowToBorder(unsigned long w1, int location) = 0; + virtual void tileTwoWindowsHorizontally(unsigned long w1, unsigned long w2) = 0; + virtual void tileTwoWindowsVertically(unsigned long w1, unsigned long w2) = 0; + virtual void tileFourWindowsInGrid(unsigned long w1, unsigned long w2, unsigned long w3, unsigned long w4) = 0; // kompmgr stuff virtual void startKompmgr() = 0; |