X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=989b975dd8062a11ea8e8cd1a31aea35d9a8d8e3;hb=185d1337e553283530e23b1edff3bb709f04e9bb;hp=cf6f633e18fa6cce1b83df9caf430c30410a75ef;hpb=9b514b3b6165c80cfe7152c2088a97765f6c82f4;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index cf6f633e..989b975d 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -23,13 +23,13 @@ struct ClientAction { struct MoveResizeRelative { Client *c; - int dx; - int dy; + int delta; }; struct SendToDesktop { Client *c; - guint desktop; + guint desk; + gboolean follow; }; struct SendToNextPreviousDesktop { @@ -63,6 +63,21 @@ struct Resize { Corner corner; }; +struct ShowMenu { + Client *c; + char *name; + int x; + int y; +}; + +struct CycleWindows { + Client *c; + gboolean linear; + gboolean forward; + gboolean final; + gboolean cancel; +}; + union ActionData { struct AnyAction any; struct Execute execute; @@ -74,6 +89,8 @@ union ActionData { struct NextPreviousDesktop nextprevdesktop; struct Move move; struct Resize resize; + struct ShowMenu showmenu; + struct CycleWindows cycle; }; typedef struct { @@ -85,6 +102,19 @@ typedef struct { } Action; Action *action_new(void (*func)(union ActionData *data)); + +/* Creates a new Action from the name of the action + A few action types need data set after making this call still. Check if + the returned action's "func" is one of these. + 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); /* Execute */ @@ -108,15 +138,23 @@ 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); /* ClientAction */ void action_toggle_omnipresent(union ActionData *data); /* MoveResizeRelative */ -void action_move_relative(union ActionData *data); +void action_move_relative_horz(union ActionData *data); /* MoveResizeRelative */ -void action_resize_relative(union ActionData *data); +void action_move_relative_vert(union ActionData *data); +/* MoveResizeRelative */ +void action_resize_relative_horz(union ActionData *data); +/* MoveResizeRelative */ +void action_resize_relative_vert(union ActionData *data); /* ClientAction */ void action_maximize_full(union ActionData *data); /* ClientAction */ @@ -161,5 +199,12 @@ void action_toggle_decorations(union ActionData *data); void action_move(union ActionData *data); /* Resize */ void action_resize(union ActionData *data); - +/* Execute */ +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