]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.h
add (optional) support for showing a busy cursor via startup notification
[chaz/openbox] / openbox / action.h
index 0fe42f64b31494cbea9ab621a53e80d6b65c3f1f..6e0b6c520064bd99aa0e7ce735f7f848bfb7ed3c 100644 (file)
@@ -48,24 +48,19 @@ struct NextPreviousDesktop {
     gboolean wrap;
 };
 
-struct Move {
+struct MoveResize {
     Client *c;
     int x;
     int y;
-    gboolean final;
+    guint32 corner; /* prop_atoms.net_wm_moveresize_* */
+    guint button;
 };
 
-struct Resize {
+struct ShowMenu {
     Client *c;
+    char *name;
     int x;
     int y;
-    gboolean final;
-    Corner corner;
-};
-
-struct ShowMenu {
-    Client *c;
-    char *menuName;
 };
 
 struct CycleWindows {
@@ -73,6 +68,7 @@ struct CycleWindows {
     gboolean linear;
     gboolean forward;
     gboolean final;
+    gboolean cancel;
 };
 
 union ActionData {
@@ -84,9 +80,8 @@ union ActionData {
     struct SendToNextPreviousDesktop sendtonextprev;
     struct Desktop desktop;
     struct NextPreviousDesktop nextprevdesktop;
-    struct Move move;
-    struct Resize resize;
-    struct ShowMenu showMenu;
+    struct MoveResize moveresize;
+    struct ShowMenu showmenu;
     struct CycleWindows cycle;
 };
 
@@ -192,10 +187,8 @@ void action_next_desktop_row(union ActionData *data);
 void action_previous_desktop_row(union ActionData *data);
 /* ClientAction */
 void action_toggle_decorations(union ActionData *data);
-/* Move */
-void action_move(union ActionData *data);
-/* Resize */
-void action_resize(union ActionData *data);
+/* MoveResize */
+void action_moveresize(union ActionData *data);
 /* Execute */
 void action_restart(union ActionData *data);
 /* Any */
This page took 0.023828 seconds and 4 git commands to generate.