]> Dogcows Code - chaz/openbox/blobdiff - openbox/action.h
Menu data structures basically completed.
[chaz/openbox] / openbox / action.h
index fae5b6479bcee058073be89b7cae72db5eae00da..ff99af99dbad2e74cff235b7779c41a72967f5be 100644 (file)
@@ -62,6 +62,11 @@ struct Resize {
     Corner corner;
 };
 
+struct ShowMenu {
+    Client *c;
+    char * menuName;
+};
+
 union ActionData {
     struct AnyAction any;
     struct Execute execute;
@@ -73,6 +78,7 @@ union ActionData {
     struct NextPreviousDesktop nextprevdesktop;
     struct Move move;
     struct Resize resize;
+    struct ShowMenu showMenu;
 };
 
 typedef struct {
@@ -185,5 +191,6 @@ void action_resize(union ActionData *data);
 void action_restart(union ActionData *data);
 /* Any */
 void action_exit(union ActionData *data);
-
+/* ShowMenu */
+void action_showmenu(union ActionData *data);
 #endif
This page took 0.022837 seconds and 4 git commands to generate.