X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=9c204e35082c26d73ebe5bb372908ef475af5bd4;hb=88f8ebada97c4c82252badeb57b7e71a2940600b;hp=fae5b6479bcee058073be89b7cae72db5eae00da;hpb=9d136ab7983ac5bc6f640199032f6b76e8328e82;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index fae5b647..9c204e35 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -28,7 +28,8 @@ struct MoveResizeRelative { struct SendToDesktop { Client *c; - guint desktop; + guint desk; + gboolean follow; }; struct SendToNextPreviousDesktop { @@ -62,6 +63,11 @@ struct Resize { Corner corner; }; +struct ShowMenu { + Client *c; + char * menuName; +}; + union ActionData { struct AnyAction any; struct Execute execute; @@ -73,6 +79,7 @@ union ActionData { struct NextPreviousDesktop nextprevdesktop; struct Move move; struct Resize resize; + struct ShowMenu showMenu; }; typedef struct { @@ -185,5 +192,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