X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=a5b1708e412b459478770f0e4db8e6a58fc10721;hb=f278ec41e4c310da218563e7d443df32783e26e4;hp=fae5b6479bcee058073be89b7cae72db5eae00da;hpb=9d136ab7983ac5bc6f640199032f6b76e8328e82;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index fae5b647..a5b1708e 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,19 @@ struct Resize { Corner corner; }; +struct ShowMenu { + Client *c; + char *menuName; +}; + +struct CycleWindows { + Client *c; + gboolean linear; + gboolean forward; + gboolean final; + gboolean cancel; +}; + union ActionData { struct AnyAction any; struct Execute execute; @@ -73,6 +87,8 @@ union ActionData { struct NextPreviousDesktop nextprevdesktop; struct Move move; struct Resize resize; + struct ShowMenu showMenu; + struct CycleWindows cycle; }; typedef struct { @@ -185,5 +201,8 @@ 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); +/* CycleWindows */ +void action_cycle_windows(union ActionData *data); #endif