X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=ff99af99dbad2e74cff235b7779c41a72967f5be;hb=5c472be0b312243b7ef705c84ef42f6560537e04;hp=672ee6c42b1f78c9e9e1bb253d2553641c033f10;hpb=1a32ba561afef1a3dabeb8d4443c1aafe7ad9977;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index 672ee6c4..ff99af99 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -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 { @@ -91,6 +97,10 @@ Action *action_new(void (*func)(union ActionData *data)); action_execute - the path needs to be set action_restart - the path can optionally be set action_desktop - the destination desktop needs to be set + action_move_relative_horz - the delta + action_move_relative_vert - the delta + action_resize_relative_horz - the delta + action_resize_relative_vert - the delta */ Action *action_from_string(char *name); void action_free(Action *a); @@ -116,6 +126,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); @@ -177,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