]> icculus.org git repositories - dana/openbox.git/blob - openbox/actions_list.c
rm some unused fn defns
[dana/openbox.git] / openbox / actions_list.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    actions_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 "actions_list.h"
20 #include "actions.h"
21 #include "actions_value.h"
22
23 #include <glib.h>
24
25 void actions_list_ref(ObActionsList *l)
26 {
27     if (l) ++l->ref;
28 }
29
30 void actions_list_unref(ObActionsList *l)
31 {
32     while (l && --l->ref < 1) {
33         ObActionsList *n = l->next;
34
35         if (l->isfilter) {
36             actions_list_test_destroy(l->u.f.test);
37             actions_list_unref(l->u.f.thendo);
38             actions_list_unref(l->u.f.elsedo);
39         }
40         else {
41             actions_act_unref(l->u.action);
42         }
43         g_slice_free(ObActionsList, l);
44         l = n;
45     }
46 }
47
48 void actions_list_test_destroy(ObActionsListTest *t)
49 {
50     while (t) {
51         ObActionsListTest *n = t->next;
52
53         g_free(t->key);
54         actions_value_unref(t->value);
55         g_slice_free(ObActionsListTest, t);
56         t = n;
57     }
58 }
59
60 ObActionsList* actions_list_concat(ObActionsList *a, ObActionsList *b)
61 {
62     ObActionsList *start = a;
63
64     if (!start) return b;
65     while (a->next) a = a->next;
66     a->next = b;
67     return start;
68 }