X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Factions%2Fif.c;h=5f4a356f8d121d644363dc16dde8e6b46614454f;hb=d179d6428ae585a3b8a13479bfe4586e41de2ff9;hp=08f543b776ae2c1ed4fa4602d42122b6b9f56da4;hpb=cf640af0eade492a6a0a9765a1d2d35d81ea1235;p=chaz%2Fopenbox diff --git a/openbox/actions/if.c b/openbox/actions/if.c index 08f543b7..5f4a356f 100644 --- a/openbox/actions/if.c +++ b/openbox/actions/if.c @@ -3,6 +3,7 @@ #include "openbox/client.h" #include "openbox/frame.h" #include "openbox/screen.h" +#include "openbox/focus.h" #include typedef struct { @@ -16,79 +17,83 @@ typedef struct { gboolean maxfull_off; gboolean iconic_on; gboolean iconic_off; + gboolean focused; + gboolean unfocused; GSList *thenacts; GSList *elseacts; } Options; -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node); +static gpointer setup_func(xmlNodePtr node); static void free_func(gpointer options); static gboolean run_func(ObActionsData *data, gpointer options); -void action_if_startup() +void action_if_startup(void) { - actions_register("If", - setup_func, - free_func, - run_func, - NULL, NULL); + actions_register("If", setup_func, free_func, run_func); } -static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) +static gpointer setup_func(xmlNodePtr node) { xmlNodePtr n; Options *o; - o = g_new0(Options, 1); + o = g_slice_new0(Options); - if ((n = parse_find_node("shaded", node))) { - if (parse_bool(doc, n)) + if ((n = obt_xml_find_node(node, "shaded"))) { + if (obt_xml_node_bool(n)) o->shaded_on = TRUE; else o->shaded_off = TRUE; } - if ((n = parse_find_node("maximized", node))) { - if (parse_bool(doc, n)) + if ((n = obt_xml_find_node(node, "maximized"))) { + if (obt_xml_node_bool(n)) o->maxfull_on = TRUE; else o->maxfull_off = TRUE; } - if ((n = parse_find_node("maximizedhorizontal", node))) { - if (parse_bool(doc, n)) + if ((n = obt_xml_find_node(node, "maximizedhorizontal"))) { + if (obt_xml_node_bool(n)) o->maxhorz_on = TRUE; else o->maxhorz_off = TRUE; } - if ((n = parse_find_node("maximizedvertical", node))) { - if (parse_bool(doc, n)) + if ((n = obt_xml_find_node(node, "maximizedvertical"))) { + if (obt_xml_node_bool(n)) o->maxvert_on = TRUE; else o->maxvert_off = TRUE; } - if ((n = parse_find_node("iconified", node))) { - if (parse_bool(doc, n)) + if ((n = obt_xml_find_node(node, "iconified"))) { + if (obt_xml_node_bool(n)) o->iconic_on = TRUE; else o->iconic_off = TRUE; } + if ((n = obt_xml_find_node(node, "focused"))) { + if (obt_xml_node_bool(n)) + o->focused = TRUE; + else + o->unfocused = TRUE; + } - if ((n = parse_find_node("then", node))) { + if ((n = obt_xml_find_node(node, "then"))) { xmlNodePtr m; - m = parse_find_node("action", n->xmlChildrenNode); + m = obt_xml_find_node(n->children, "action"); while (m) { - ObActionsAct *action = actions_parse(i, doc, m); - if (action) o->thenacts = g_slist_prepend(o->thenacts, action); - m = parse_find_node("action", m->next); + ObActionsAct *action = actions_parse(m); + if (action) o->thenacts = g_slist_append(o->thenacts, action); + m = obt_xml_find_node(m->next, "action"); } } - if ((n = parse_find_node("else", node))) { + if ((n = obt_xml_find_node(node, "else"))) { xmlNodePtr m; - m = parse_find_node("action", n->xmlChildrenNode); + m = obt_xml_find_node(n->children, "action"); while (m) { - ObActionsAct *action = actions_parse(i, doc, m); - if (action) o->elseacts = g_slist_prepend(o->elseacts, action); - m = parse_find_node("action", m->next); + ObActionsAct *action = actions_parse(m); + if (action) o->elseacts = g_slist_append(o->elseacts, action); + m = obt_xml_find_node(m->next, "action"); } } @@ -99,7 +104,16 @@ static void free_func(gpointer options) { Options *o = options; - g_free(o); + while (o->thenacts) { + actions_act_unref(o->thenacts->data); + o->thenacts = g_slist_delete_link(o->thenacts, o->thenacts); + } + while (o->elseacts) { + actions_act_unref(o->elseacts->data); + o->elseacts = g_slist_delete_link(o->elseacts, o->elseacts); + } + + g_slice_free(Options, o); } /* Always return FALSE because its not interactive */ @@ -118,7 +132,9 @@ static gboolean run_func(ObActionsData *data, gpointer options) (!o->maxvert_on || (c && c->max_vert)) && (!o->maxvert_off || (c && !c->max_vert)) && (!o->maxfull_on || (c && c->max_vert && c->max_horz)) && - (!o->maxfull_off || (c && !(c->max_vert && c->max_horz)))) + (!o->maxfull_off || (c && !(c->max_vert && c->max_horz))) && + (!o->focused || (c && (c == focus_client))) && + (!o->unfocused || (c && !(c == focus_client)))) { acts = o->thenacts; }