]> Dogcows Code - chaz/openbox/blobdiff - util/epist/actions.hh
add iconifying
[chaz/openbox] / util / epist / actions.hh
index 09ee523f2ed8ca26ce60dfe8b3ff9482f984cf8c..6506f0e729055586d22b318c8eb6e3f3bbe34cf1 100644 (file)
@@ -35,18 +35,18 @@ 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,
+    nextWindow, //done for now
+    prevWindow, //done for now
     nextWindowOnAllWorkspaces,
     prevWindowOnAllWorkspaces,
 
@@ -73,16 +73,16 @@ 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(enum ActionType type, KeyCode keycode, int modifierMask,
+  Action(enum ActionType type, KeyCode keycode, unsigned int modifierMask,
          int number = 0);
 };
   
This page took 0.024069 seconds and 4 git commands to generate.