summaryrefslogtreecommitdiff
path: root/openbox/actions.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2013-08-19 00:03:51 +0200
committerMikael Magnusson <mikachu@gmail.com>2013-08-19 21:35:44 +0200
commit780b2428a2463f164608c498f7d2e586016b8e11 (patch)
tree907040e1ca50ac6d07cef48748055941073c229e /openbox/actions.c
parent2d5239b60a5caa20c6030fa996ea4711113dcea6 (diff)
Add ForEach action which is like If but runs on all clients
Also adds a Stop action that lets you stop running, in case you only want to run actions on the first match.
Diffstat (limited to 'openbox/actions.c')
-rw-r--r--openbox/actions.c26
1 files changed, 23 insertions, 3 deletions
diff --git a/openbox/actions.c b/openbox/actions.c
index ac849a97..bf00c6c8 100644
--- a/openbox/actions.c
+++ b/openbox/actions.c
@@ -52,6 +52,7 @@ struct _ObActionsDefinition {
ObActionsRunFunc run;
ObActionsShutdownFunc shutdown;
gboolean modifies_focused_window;
+ gboolean can_stop;
};
struct _ObActionsAct {
@@ -111,6 +112,7 @@ ObActionsDefinition* do_register(const gchar *name,
def->run = run;
def->shutdown = NULL;
def->modifies_focused_window = TRUE;
+ def->can_stop = FALSE;
registered = g_slist_prepend(registered, def);
return def;
@@ -174,6 +176,22 @@ gboolean actions_set_modifies_focused_window(const gchar *name,
return FALSE;
}
+gboolean actions_set_can_stop(const gchar *name,
+ gboolean can_stop)
+{
+ GSList *it;
+ ObActionsDefinition *def;
+
+ for (it = registered; it; it = g_slist_next(it)) {
+ def = it->data;
+ if (!g_ascii_strcasecmp(name, def->name)) {
+ def->can_stop = can_stop;
+ return TRUE;
+ }
+ }
+ return FALSE;
+}
+
static void actions_definition_ref(ObActionsDefinition *def)
{
++def->ref;
@@ -356,16 +374,18 @@ void actions_run_acts(GSList *acts,
/* fire the action's run function with this data */
if (ok) {
if (!act->def->run(&data, act->options)) {
- if (actions_act_is_interactive(act))
+ if (actions_act_is_interactive(act)) {
actions_interactive_end_act();
+ }
if (client && client == focus_client &&
act->def->modifies_focused_window)
{
update_user_time = TRUE;
}
} else {
- /* make sure its interactive if it returned TRUE */
- g_assert(act->i_input);
+ /* make sure its interactive or allowed to stop
+ if it returned TRUE */
+ g_assert(act->i_input || act->def->can_stop);
/* no actions are run after the interactive one */
break;