]> icculus.org git repositories - dana/openbox.git/blob - openbox/action_list.c
wip: Add config_parser.c which will provide a nice means to specify config variables...
[dana/openbox.git] / openbox / action_list.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    action_list.c for the Openbox window manager
4    Copyright (c) 2011        Dana Jansens
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #include "action_list.h"
20 #include "action.h"
21 #include "action_filter.h"
22
23 #include <glib.h>
24
25 void action_list_ref(ObActionList *l)
26 {
27     if (l) ++l->ref;
28 }
29
30 void action_list_unref(ObActionList *l)
31 {
32     while (l && --l->ref < 1) {
33         ObActionList *n = l->next;
34
35         if (l->isfilterset) {
36             action_list_test_destroy(l->u.f.test);
37             action_list_unref(l->u.f.thendo);
38             action_list_unref(l->u.f.elsedo);
39         }
40         else {
41             action_unref(l->u.action);
42         }
43         g_slice_free(ObActionList, l);
44         l = n;
45     }
46 }
47
48 void action_list_test_destroy(ObActionListTest *t)
49 {
50     while (t) {
51         ObActionListTest *n = t->next;
52
53         action_filter_unref(t->filter);
54         g_slice_free(ObActionListTest, t);
55         t = n;
56     }
57 }
58
59 ObActionList* action_list_concat(ObActionList *a, ObActionList *b)
60 {
61     ObActionList *start = a;
62
63     if (!start) return b;
64     while (a->next) a = a->next;
65     a->next = b;
66     return start;
67 }