diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:59:07 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-06-22 15:59:07 +0000 |
| commit | 48facba205a42b502038b43e1a735a30ffe276f8 (patch) | |
| tree | 2ee8f3562dd42520e4a91735892ce02e1eaa8897 /openbox/actions | |
| parent | f227bd994d21d901790d93a962915863914b6c09 (diff) | |
add omnipresent action
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/omnipresent.c | 62 |
3 files changed, 64 insertions, 0 deletions
diff --git a/openbox/actions/all.c b/openbox/actions/all.c index 9b11b49b..f303c099 100644 --- a/openbox/actions/all.c +++ b/openbox/actions/all.c @@ -27,4 +27,5 @@ void action_all_startup() action_moverelative_startup(); action_shade_startup(); action_kill_startup(); + action_omnipresent_startup(); } diff --git a/openbox/actions/all.h b/openbox/actions/all.h index 265ec428..17bba0af 100644 --- a/openbox/actions/all.h +++ b/openbox/actions/all.h @@ -28,5 +28,6 @@ void action_moveto_startup(); void action_moverelative_startup(); void action_shade_startup(); void action_kill_startup(); +void action_omnipresent_startup(); #endif diff --git a/openbox/actions/omnipresent.c b/openbox/actions/omnipresent.c new file mode 100644 index 00000000..02bd9917 --- /dev/null +++ b/openbox/actions/omnipresent.c @@ -0,0 +1,62 @@ +#include "openbox/actions.h" +#include "openbox/client.h" +#include "openbox/screen.h" + +typedef struct { + gboolean toggle; + gboolean on; +} Options; + +static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node); +static void free_func(gpointer options); +static gboolean run_func(ObActionsData *data, gpointer options); + +void action_omnipresent_startup() +{ + actions_register("omnipresent", + setup_func, + free_func, + run_func, + NULL, NULL); +} + +static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) +{ + xmlNodePtr n; + Options *o; + + o = g_new0(Options, 1); + o->toggle = TRUE; + + if ((n = parse_find_node("omnipresent", node))) { + gchar *s = parse_string(doc, n); + if (g_ascii_strcasecmp(s, "toggle")) { + o->toggle = FALSE; + o->on = parse_bool(doc, n); + } + g_free(s); + } + + return o; +} + +static void free_func(gpointer options) +{ + Options *o = options; + + g_free(o); +} + +/* Always return FALSE because its not interactive */ +static gboolean run_func(ObActionsData *data, gpointer options) +{ + Options *o = options; + + if (data->client) + if (o->toggle || (o->on != (data->client->desktop == DESKTOP_ALL))) + client_set_desktop(data->client, + data->client->desktop == DESKTOP_ALL ? + screen_desktop : DESKTOP_ALL, FALSE, TRUE); + + return FALSE; +} |
