diff options
Diffstat (limited to 'openbox/actions')
| -rw-r--r-- | openbox/actions/all.c | 1 | ||||
| -rw-r--r-- | openbox/actions/all.h | 1 | ||||
| -rw-r--r-- | openbox/actions/fullscreen.c | 24 |
3 files changed, 26 insertions, 0 deletions
diff --git a/openbox/actions/all.c b/openbox/actions/all.c index 101cc75f..a7295ac7 100644 --- a/openbox/actions/all.c +++ b/openbox/actions/all.c @@ -19,4 +19,5 @@ void action_all_startup() action_raiselower_startup(); action_unfocus_startup(); action_iconify_startup(); + action_fullscreen_startup(); } diff --git a/openbox/actions/all.h b/openbox/actions/all.h index 0b6813eb..238dc3a9 100644 --- a/openbox/actions/all.h +++ b/openbox/actions/all.h @@ -20,5 +20,6 @@ void action_lower_startup(); void action_raiselower_startup(); void action_unfocus_startup(); void action_iconify_startup(); +void action_fullscreen_startup(); #endif diff --git a/openbox/actions/fullscreen.c b/openbox/actions/fullscreen.c new file mode 100644 index 00000000..c791191e --- /dev/null +++ b/openbox/actions/fullscreen.c @@ -0,0 +1,24 @@ +#include "openbox/actions.h" +#include "openbox/client.h" + +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_fullscreen_startup() +{ + actions_register("Fullscreen", + NULL, NULL, + run_func, + NULL, NULL); +} + +/* Always return FALSE because its not interactive */ +static gboolean run_func(ObActionsData *data, gpointer options) +{ + if (data->client) { + actions_client_move(data, TRUE); + client_fullscreen(data->client, !data->client->fullscreen); + actions_client_move(data, FALSE); + } + + return FALSE; +} |
