diff options
author | Michele Calgaro <[email protected]> | 2024-03-27 10:58:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-29 11:25:20 +0900 |
commit | 577b0ec106ca8a4e6072f3a05db137892d129840 (patch) | |
tree | db8529ef3663fb4f6c160e438a5ebd7a1400e350 /twin/KWinInterface.h | |
parent | 62ce84146e5a9505e59121b9ab65f9e32704f16f (diff) | |
download | tdebase-577b0ec106ca8a4e6072f3a05db137892d129840.tar.gz tdebase-577b0ec106ca8a4e6072f3a05db137892d129840.zip |
twin: add tileWindowToBorder() and rename previously introduced tileHorizontally(), tileVertically(), tileGrid() DCOP calls
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit cc88c98f3884e8446e5cce409fb6d8e6c87b2c96)
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; |