summaryrefslogtreecommitdiff
path: root/util/epist/actions.hh
diff options
context:
space:
mode:
authorScott Moynes <smoynes@nexus.carleton.ca>2002-07-20 01:44:01 +0000
committerScott Moynes <smoynes@nexus.carleton.ca>2002-07-20 01:44:01 +0000
commitb4411cb1ef1c25a287181b570e974545e1010530 (patch)
treeb06395f3ac03869f239c1744c6c8551d54661926 /util/epist/actions.hh
parenta939bb6e41772ffd4fe75f0c73ae79db237ca979 (diff)
Added changeWorkspace() and a broken toggleShaded()
Diffstat (limited to 'util/epist/actions.hh')
-rw-r--r--util/epist/actions.hh17
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;