X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=989b975dd8062a11ea8e8cd1a31aea35d9a8d8e3;hb=d4b2de21809110290b825538f29986b170e4dc16;hp=9c204e35082c26d73ebe5bb372908ef475af5bd4;hpb=2135d9e2fda58dcf1c9a40266fd1b38c1cd4d71f;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index 9c204e35..989b975d 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -65,7 +65,17 @@ struct Resize { struct ShowMenu { Client *c; - char * menuName; + char *name; + int x; + int y; +}; + +struct CycleWindows { + Client *c; + gboolean linear; + gboolean forward; + gboolean final; + gboolean cancel; }; union ActionData { @@ -79,7 +89,8 @@ union ActionData { struct NextPreviousDesktop nextprevdesktop; struct Move move; struct Resize resize; - struct ShowMenu showMenu; + struct ShowMenu showmenu; + struct CycleWindows cycle; }; typedef struct { @@ -194,4 +205,6 @@ void action_restart(union ActionData *data); void action_exit(union ActionData *data); /* ShowMenu */ void action_showmenu(union ActionData *data); +/* CycleWindows */ +void action_cycle_windows(union ActionData *data); #endif