diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-13 15:01:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-13 15:01:27 +0000 |
| commit | 1443e17317950d5bb096a55aca81bc8fa419ffe7 (patch) | |
| tree | 67f661ab3090d68912946606115205e81a1d942f /openbox/action.h | |
| parent | 338798a408e52304cc560093247e496e73b20140 (diff) | |
add AddDesktopLast RemoveDesktopLast AddDesktopCurrent RemoveDesktopCurrent
Diffstat (limited to 'openbox/action.h')
| -rw-r--r-- | openbox/action.h | 10 |
1 files changed, 10 insertions, 0 deletions
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 |
