summaryrefslogtreecommitdiff
path: root/openbox/actions
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-22 14:32:50 +0000
committerDana Jansens <danakj@orodu.net>2007-06-22 14:32:50 +0000
commitb0fa629769ef17cae28f137aad80f8c4798f7592 (patch)
treefa46c6b63a4ebe1081cb25e9cc525f2b0b5951fa /openbox/actions
parenta5c2aadf2778d6ab4105abd457cd2ab21a1172ec (diff)
add the unfocus action
Diffstat (limited to 'openbox/actions')
-rw-r--r--openbox/actions/all.c1
-rw-r--r--openbox/actions/all.h1
-rw-r--r--openbox/actions/unfocus.c53
3 files changed, 55 insertions, 0 deletions
diff --git a/openbox/actions/all.c b/openbox/actions/all.c
index c4edc5c3..3b1fb5fe 100644
--- a/openbox/actions/all.c
+++ b/openbox/actions/all.c
@@ -17,4 +17,5 @@ void action_all_startup()
action_raise_startup();
action_lower_startup();
action_raiselower_startup();
+ action_unfocus_startup();
}
diff --git a/openbox/actions/all.h b/openbox/actions/all.h
index 48b6d1c1..69f2a589 100644
--- a/openbox/actions/all.h
+++ b/openbox/actions/all.h
@@ -18,5 +18,6 @@ void action_focus_startup();
void action_raise_startup();
void action_lower_startup();
void action_raiselower_startup();
+void action_unfocus_startup();
#endif
diff --git a/openbox/actions/unfocus.c b/openbox/actions/unfocus.c
new file mode 100644
index 00000000..d581864e
--- /dev/null
+++ b/openbox/actions/unfocus.c
@@ -0,0 +1,53 @@
+#include "openbox/actions.h"
+#include "openbox/focus.h"
+
+typedef struct {
+ gboolean tobottom;
+} 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_unfocus_startup()
+{
+ actions_register("Unfocus",
+ 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->tobottom = TRUE;
+
+ if ((n = parse_find_node("tobottom", node)))
+ o->tobottom = parse_bool(doc, n);
+ 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 && data->client == focus_client) {
+ if (o->tobottom)
+ focus_order_to_bottom(data->client);
+ focus_fallback(FALSE, FALSE, TRUE);
+ }
+
+ return FALSE;
+}