X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=8a1726bc5e33e63b2722cd614cd877e668b5219b;hb=99e23015cf2b7780f4a684669008ae38abe62932;hp=cab6506e9adfc5bd15764f984d13dc7925e6950c;hpb=2442cdfd85e5229c7ee4ac49ca66a7d55ffcb919;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index cab6506e..8a1726bc 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -61,6 +61,8 @@ struct InterDirectionalAction{ struct InteractiveAction inter; ObDirection direction; gboolean dialog; + gboolean dock_windows; + gboolean desktop_windows; }; struct DirectionalAction{ @@ -127,8 +129,8 @@ struct DesktopDirection { struct MoveResize { struct AnyAction any; - gboolean move; gboolean keyboard; + guint32 corner; }; struct ShowMenu { @@ -141,6 +143,9 @@ struct CycleWindows { gboolean linear; gboolean forward; gboolean dialog; + gboolean dock_windows; + gboolean desktop_windows; + gboolean all_desktops; }; struct Stacking { @@ -309,8 +314,10 @@ void action_desktop_dir(union ActionData *data); void action_desktop_last(union ActionData *data); /* ClientAction */ void action_toggle_decorations(union ActionData *data); -/* MoveResize */ -void action_moveresize(union ActionData *data); +/* Move */ +void action_move(union ActionData *data); +/* Resize */ +void action_resize(union ActionData *data); /* Any */ void action_reconfigure(union ActionData *data); /* Execute */ @@ -339,5 +346,7 @@ void action_toggle_show_desktop(union ActionData *data); void action_show_desktop(union ActionData *data); /* Any */ void action_unshow_desktop(union ActionData *data); +/* Any */ +void action_break_chroot(union ActionData *data); #endif