X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Faction.h;h=9c204e35082c26d73ebe5bb372908ef475af5bd4;hb=e2c3582a5c0230cae0571e8f92829b910039f179;hp=95d9bc2cf9de6f49361c15fb4cb81fd710fe6ab5;hpb=dffe96008448a7d66c5026e1e0520904c62702b4;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index 95d9bc2c..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 { @@ -120,6 +127,10 @@ void action_kill(union ActionData *data); /* ClientAction */ void action_shade(union ActionData *data); /* ClientAction */ +void action_shadelower(union ActionData *data); +/* ClientAction */ +void action_unshaderaise(union ActionData *data); +/* ClientAction */ void action_unshade(union ActionData *data); /* ClientAction */ void action_toggle_shade(union ActionData *data); @@ -181,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