X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=0fe42f64b31494cbea9ab621a53e80d6b65c3f1f;hb=bd12517c615d661fa2823f85bbbcb48555f7c3db;hp=ff99af99dbad2e74cff235b7779c41a72967f5be;hpb=a116f2c6310db702e377e9cd1a95c9a980aba5ae;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index ff99af99..0fe42f64 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 { @@ -64,7 +65,14 @@ struct Resize { struct ShowMenu { Client *c; - char * menuName; + char *menuName; +}; + +struct CycleWindows { + Client *c; + gboolean linear; + gboolean forward; + gboolean final; }; union ActionData { @@ -79,6 +87,7 @@ union ActionData { struct Move move; struct Resize resize; struct ShowMenu showMenu; + struct CycleWindows cycle; }; typedef struct { @@ -193,4 +202,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