X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=9c204e35082c26d73ebe5bb372908ef475af5bd4;hb=88f8ebada97c4c82252badeb57b7e71a2940600b;hp=a8f37e1574c5f20a0397503c1f1b9835321feba0;hpb=b6b514c47764517ef6845ddced6530538ce8d33b;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index a8f37e15..9c204e35 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -26,6 +26,12 @@ struct MoveResizeRelative { int delta; }; +struct SendToDesktop { + Client *c; + guint desk; + gboolean follow; +}; + struct SendToNextPreviousDesktop { Client *c; gboolean wrap; @@ -67,6 +73,7 @@ union ActionData { struct Execute execute; struct ClientAction client; struct MoveResizeRelative relative; + struct SendToDesktop sendto; struct SendToNextPreviousDesktop sendtonextprev; struct Desktop desktop; struct NextPreviousDesktop nextprevdesktop; @@ -155,7 +162,7 @@ void action_maximize_vert(union ActionData *data); void action_unmaximize_vert(union ActionData *data); /* ClientAction */ void action_toggle_maximize_vert(union ActionData *data); -/* Desktop */ +/* SendToDesktop */ void action_send_to_desktop(union ActionData *data); /* SendToNextPreviousDesktop */ void action_send_to_next_desktop(union ActionData *data);