diff options
author | rathnor <rathnor> | 2003-02-02 16:32:41 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-02-02 16:32:41 (GMT) |
commit | 1b063dcea92e0a7ac5008518fc5c13f03c055f54 (patch) | |
tree | 29d5b622c0870f06a94086ed463ab90e23bc673e /src/Keys.hh | |
parent | 5244fc32447d2649a52a06dc84d96da94e9fd715 (diff) | |
download | fluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.zip fluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.tar.bz2 |
Integration of new Layering code, plus updates to the layering code itself
- new KeyActions: Raise/LowerLayer, AlwaysOnTop/Bottom, Top/BottomLayer
Added a "Quit" KeyAction
Diffstat (limited to 'src/Keys.hh')
-rw-r--r-- | src/Keys.hh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Keys.hh b/src/Keys.hh index 91a774e..d59b002 100644 --- a/src/Keys.hh +++ b/src/Keys.hh | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Keys.hh,v 1.18 2002/12/01 13:41:57 rathnor Exp $ | 22 | // $Id: Keys.hh,v 1.19 2003/02/02 16:32:38 rathnor Exp $ |
23 | 23 | ||
24 | #ifndef KEYS_HH | 24 | #ifndef KEYS_HH |
25 | #define KEYS_HH | 25 | #define KEYS_HH |
@@ -36,7 +36,9 @@ public: | |||
36 | */ | 36 | */ |
37 | enum KeyAction{ | 37 | enum KeyAction{ |
38 | ICONIFY=0, | 38 | ICONIFY=0, |
39 | RAISE, LOWER, | 39 | RAISE, LOWER, |
40 | RAISELAYER, LOWERLAYER, TOPLAYER, BOTTOMLAYER, | ||
41 | ALWAYSONTOP, ALWAYSONBOTTOM, // aliases for TOPLAYER, etc | ||
40 | CLOSE, | 42 | CLOSE, |
41 | ABORTKEYCHAIN, | 43 | ABORTKEYCHAIN, |
42 | WORKSPACE, | 44 | WORKSPACE, |
@@ -59,6 +61,7 @@ public: | |||
59 | TOGGLEDECOR,// toggle visibility of decor (title, frame, handles) | 61 | TOGGLEDECOR,// toggle visibility of decor (title, frame, handles) |
60 | TOGGLETAB, // toggle visibilty of tab | 62 | TOGGLETAB, // toggle visibilty of tab |
61 | ROOTMENU, // pop up rootmenu | 63 | ROOTMENU, // pop up rootmenu |
64 | QUIT, // Die, quit, logout, shutdown | ||
62 | LASTKEYGRAB //mark end of keygrabbs | 65 | LASTKEYGRAB //mark end of keygrabbs |
63 | }; | 66 | }; |
64 | /** | 67 | /** |