X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.h;h=17e35766a640d336f2d5b44abe2f1674a5f1aba1;hb=1e2b24cd2f2d21b5b263087fcee65ae622d0ee23;hp=38452e44081747b0b984432a134df992e9ac0a26;hpb=b906db3e11c06997261297cdb1992fd1b05738ff;p=chaz%2Fopenbox diff --git a/openbox/action.h b/openbox/action.h index 38452e44..17e35766 100644 --- a/openbox/action.h +++ b/openbox/action.h @@ -142,6 +142,11 @@ struct ShowMenu { gchar *name; }; +struct AddRemoveDesktop { + struct AnyAction any; + gboolean current; +}; + struct CycleWindows { struct InteractiveAction inter; gboolean linear; @@ -175,6 +180,7 @@ union ActionData { struct CycleWindows cycle; struct Layer layer; struct Stacking stacking; + struct AddRemoveDesktop addremovedesktop; }; struct _ObAction { @@ -356,5 +362,9 @@ void action_show_desktop(union ActionData *data); void action_unshow_desktop(union ActionData *data); /* Any */ void action_break_chroot(union ActionData *data); +/* AddRemoveDesktop */ +void action_add_desktop(union ActionData *data); +/* AddRemoveDesktop */ +void action_remove_desktop(union ActionData *data); #endif