From b4411cb1ef1c25a287181b570e974545e1010530 Mon Sep 17 00:00:00 2001 From: Scott Moynes Date: Sat, 20 Jul 2002 01:44:01 +0000 Subject: Added changeWorkspace() and a broken toggleShaded() --- util/epist/actions.hh | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'util/epist/actions.hh') 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 ActionList; -- cgit v1.2.3