1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 // actions.hh for Epistrophy - a key handler for NETWM/EWMH window managers.
3 // Copyright (c) 2002 - 2002 Ben Jansens <ben at orodu.net>
5 // Permission is hereby granted, free of charge, to any person obtaining a
6 // copy of this software and associated documentation files (the "Software"),
7 // to deal in the Software without restriction, including without limitation
8 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 // and/or sell copies of the Software, and to permit persons to whom the
10 // Software is furnished to do so, subject to the following conditions:
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 // DEALINGS IN THE SOFTWARE.
43 toggleomnipresent
, //done
45 moveWindowDown
, //done
46 moveWindowLeft
, //done
47 moveWindowRight
, //done
48 resizeWindowWidth
, //done
49 resizeWindowHeight
, //done
51 toggleMaximizeFull
, //done
52 toggleMaximizeVertical
, //done
53 toggleMaximizeHorizontal
, //done
55 sendToWorkspace
, //done
57 nextWindow
, //done for now
58 prevWindow
, //done for now
59 nextWindowOnAllWorkspaces
, //done for now
60 prevWindowOnAllWorkspaces
, //done for now
62 nextWindowOnAllScreens
, //done for now
63 prevWindowOnAllScreens
, //done for now
65 nextWindowOfClass
, //done for now
66 prevWindowOfClass
, //done for now
67 nextWindowOfClassOnAllWorkspaces
, //done for now
68 prevWindowOfClassOnAllWorkspaces
, //done for now
75 changeWorkspace
, //done
79 upWorkspace
, //all done
84 nextScreen
, //done for now
85 prevScreen
, //done for now
87 // these are openbox extensions
103 enum ActionType _type
;
104 const KeyCode _keycode
;
105 const unsigned int _modifierMask
;
108 std::string _stringParam
;
110 inline enum ActionType
type() const { return _type
;}
111 inline const KeyCode
keycode() const { return _keycode
; }
112 inline const unsigned int modifierMask() const { return _modifierMask
; }
113 inline const int number() const { return _numberParam
; }
114 inline const std::string
&string() const { return _stringParam
; }
116 Action(enum ActionType type
, KeyCode keycode
, unsigned int modifierMask
,
117 const std::string
&str
= "");
120 typedef std::list
<Action
> ActionList
;