X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=3ef5aa734a3cc8a5fb83c5ceb02b5669187f1265;hb=76f514cf52cb6a30de8a7d3a8132bd67118ea463;hp=bce741a6c794ff437ef543bee9964a796ba38c91;hpb=54b8eb3bf321190702b0515502e98c9287e6221b;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index bce741a6..3ef5aa73 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -58,6 +58,7 @@ struct InteractiveAction { struct InterDirectionalAction{ struct InteractiveAction inter; ObDirection direction; + gboolean dialog; }; struct DirectionalAction{ @@ -67,7 +68,7 @@ struct DirectionalAction{ struct Execute { struct AnyAction any; - char *path; + gchar *path; }; struct ClientAction { @@ -81,7 +82,7 @@ struct Activate { struct MoveResizeRelative { struct AnyAction any; - int delta; + gint delta; }; struct SendToDesktop { @@ -105,7 +106,7 @@ struct Desktop { struct Layer { struct AnyAction any; - int layer; /* < 0 = below, 0 = normal, > 0 = above */ + gint layer; /* < 0 = below, 0 = normal, > 0 = above */ }; struct DesktopDirection { @@ -123,13 +124,19 @@ struct MoveResize { struct ShowMenu { struct AnyAction any; - char *name; + gchar *name; }; struct CycleWindows { struct InteractiveAction inter; gboolean linear; gboolean forward; + gboolean dialog; +}; + +struct Stacking { + struct AnyAction any; + gboolean group; }; union ActionData { @@ -149,6 +156,7 @@ union ActionData { struct ShowMenu showmenu; struct CycleWindows cycle; struct Layer layer; + struct Stacking stacking; }; struct _ObAction { @@ -222,6 +230,8 @@ void action_unfocus(union ActionData *data); /* ClientAction */ void action_iconify(union ActionData *data); /* ClientAction */ +void action_focus_order_to_bottom(union ActionData *data); +/* ClientAction */ void action_raiselower(union ActionData *data); /* ClientAction */ void action_raise(union ActionData *data); @@ -247,6 +257,8 @@ void action_toggle_omnipresent(union ActionData *data); void action_move_relative_horz(union ActionData *data); /* MoveResizeRelative */ void action_move_relative_vert(union ActionData *data); +/* ClientAction */ +void action_move_to_center(union ActionData *data); /* MoveResizeRelative */ void action_resize_relative_horz(union ActionData *data); /* MoveResizeRelative */ @@ -269,6 +281,8 @@ void action_maximize_vert(union ActionData *data); void action_unmaximize_vert(union ActionData *data); /* ClientAction */ void action_toggle_maximize_vert(union ActionData *data); +/* ClientAction */ +void action_toggle_fullscreen(union ActionData *data); /* SendToDesktop */ void action_send_to_desktop(union ActionData *data); /* SendToDesktopDirection */ @@ -304,6 +318,8 @@ void action_send_to_layer(union ActionData *data); /* Layer */ void action_toggle_layer(union ActionData *data); /* Any */ +void action_toggle_dockautohide(union ActionData *data); +/* Any */ void action_toggle_show_desktop(union ActionData *data); /* Any */ void action_show_desktop(union ActionData *data);