aboutsummaryrefslogtreecommitdiff
path: root/src/WorkspaceCmd.hh
diff options
context:
space:
mode:
authorThomas Lübking <thomas.luebking@gmail.com>2016-08-12 15:29:50 (GMT)
committerMathias Gumz <akira@fluxbox.org>2016-08-26 06:06:47 (GMT)
commit6c0565c482b496b7d34e3731415829e7c4872535 (patch)
tree7b59e1a464c3c915e98f2d292cb5e4e992b3985e /src/WorkspaceCmd.hh
parentf22435d60bf7a52e00608576074dd791e8731bf2 (diff)
downloadfluxbox-6c0565c482b496b7d34e3731415829e7c4872535.zip
fluxbox-6c0565c482b496b7d34e3731415829e7c4872535.tar.bz2
add commands to toggle toolbar and slit layer
toggle(Toolbar|Slit)Above toggles the resp. item between its regular and the AboveDock layer (ie. above everything, even visible on active fullscreen windows) Also required step for autoraising. REQUEST: 222
Diffstat (limited to 'src/WorkspaceCmd.hh')
-rw-r--r--src/WorkspaceCmd.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/WorkspaceCmd.hh b/src/WorkspaceCmd.hh
index f4609b6..1766b3a 100644
--- a/src/WorkspaceCmd.hh
+++ b/src/WorkspaceCmd.hh
@@ -192,6 +192,16 @@ public:
192 void execute(); 192 void execute();
193}; 193};
194 194
195class ToggleSlitAboveCmd: public FbTk::Command<void> {
196public:
197 void execute();
198};
199
200class ToggleToolbarAboveCmd: public FbTk::Command<void> {
201public:
202 void execute();
203};
204
195class CloseAllWindowsCmd: public FbTk::Command<void> { 205class CloseAllWindowsCmd: public FbTk::Command<void> {
196public: 206public:
197 void execute(); 207 void execute();