diff options
Diffstat (limited to 'util/epist/actions.hh')
| -rw-r--r-- | util/epist/actions.hh | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/util/epist/actions.hh b/util/epist/actions.hh index 9a7a6043..09ee523f 100644 --- a/util/epist/actions.hh +++ b/util/epist/actions.hh @@ -47,15 +47,15 @@ public: nextWindow, prevWindow, - nextWindowOnAllDesktops, - prevWindowOnAllDesktops, + nextWindowOnAllWorkspaces, + prevWindowOnAllWorkspaces, nextWindowOfClass, prevWindowOfClass, - changeDesktop, - nextDesktop, - prevDesktop, + changeWorkspace, //done + nextWorkspace, //done + prevWorkspace, //done // these are openbox extensions showRootMenu, @@ -74,13 +74,16 @@ private: enum ActionType _type; const KeyCode _keycode; const int _modifierMask; - + + const int _numberParam; public: inline enum ActionType type() const { return _type;} inline const KeyCode keycode() const { return _keycode; } inline const int modifierMask() const { return _modifierMask; } + inline const int number() const { return _numberParam; } - Action(enum ActionType type, KeyCode keycode, int modifierMask); + Action(enum ActionType type, KeyCode keycode, int modifierMask, + int number = 0); }; typedef std::list<Action> ActionList; |
