X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=a5b1708e412b459478770f0e4db8e6a58fc10721;hb=07d48062395604c1dfeea214993d48476976f8e9;hp=9c204e35082c26d73ebe5bb372908ef475af5bd4;hpb=2135d9e2fda58dcf1c9a40266fd1b38c1cd4d71f;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index 9c204e35..a5b1708e 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -65,7 +65,15 @@ struct Resize { struct ShowMenu { Client *c; - char * menuName; + char *menuName; +}; + +struct CycleWindows { + Client *c; + gboolean linear; + gboolean forward; + gboolean final; + gboolean cancel; }; union ActionData { @@ -80,6 +88,7 @@ union ActionData { struct Move move; struct Resize resize; struct ShowMenu showMenu; + struct CycleWindows cycle; }; typedef struct { @@ -194,4 +203,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