X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=util%2Fepist%2Factions.hh;h=a441fb41a4d4c924e8d8160e9105932a0135376c;hb=92864e8d1db97ed3154b4b40a9318dbe26d978be;hp=531d54d21f3349a7db99ed8904f5ecd117c7b47e;hpb=be77122bee3300e982ff257929ce1d1224f45803;p=chaz%2Fopenbox diff --git a/util/epist/actions.hh b/util/epist/actions.hh index 531d54d2..a441fb41 100644 --- a/util/epist/actions.hh +++ b/util/epist/actions.hh @@ -35,27 +35,29 @@ public: enum ActionType { noaction = 0, execute, - iconify, - raiseWindow, - lowerWindow, - closeWindow, - shade, + iconify, //done + raise, //done + lower, //done + close, //done + toggleshade, //done moveWindowUp, moveWindowDown, moveWindowLeft, moveWindowRight, - nextWindow, - prevWindow, - nextWindowOnAllDesktops, - prevWindowOnAllDesktops, + nextWindow, //done for now + prevWindow, //done for now + nextWindowOnAllWorkspaces, //done + prevWindowOnAllWorkspaces, //done - nextWindowOfClass, - prevWindowOfClass, + nextWindowOfClass, //done + prevWindowOfClass, //done + nextWindowOfClassOnAllWorkspaces, //done + prevWindowOfClassOnAllWorkspaces, //done - changeDesktop, - nextDesktop, - prevDesktop, + changeWorkspace, //done + nextWorkspace, //done + prevWorkspace, //done // these are openbox extensions showRootMenu, @@ -73,16 +75,19 @@ public: private: enum ActionType _type; const KeyCode _keycode; - const int _modifierMask; - + const unsigned 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 unsigned int modifierMask() const { return _modifierMask; } + inline const int number() const { return _numberParam; } - Action::Action(enum ActionType type, KeyCode keycode, int modifierMask); + Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask, + int number = 0); }; -typedef list ActionList; +typedef std::list ActionList; #endif