]> icculus.org git repositories - dana/openbox.git/blob - openbox/actions_list.h
rm some unused fn defns
[dana/openbox.git] / openbox / actions_list.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    actions_list.h 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 <glib.h>
20
21 struct _ObActionsAct;
22 struct _ObActionsValue;
23
24 typedef struct _ObActionsList      ObActionsList;
25 typedef struct _ObActionsListTest  ObActionsListTest;
26
27 /*! Each node of the Actions list is an action itself (or a filter bound to
28   an action). */
29 struct _ObActionsList {
30     gint ref;
31     gboolean isfilter;
32     union {
33         struct _ObActionsListFilter {
34             ObActionsListTest *test; /* can be null */
35             ObActionsList *thendo; /* can be null */
36             ObActionsList *elsedo; /* can be null */
37         } f;
38         struct _ObActionsAct *action;
39     } u;
40     ObActionsList *next;
41 };
42
43 struct _ObActionsListTest {
44     gchar *key;
45     struct _ObActionsValue *value; /* can be null */
46     gboolean and;
47     ObActionsListTest *next;
48 };
49
50 void actions_list_ref(ObActionsList *l);
51 void actions_list_unref(ObActionsList *l);
52
53 void actions_list_test_destroy(ObActionsListTest *t);
54
55 ObActionsList* actions_list_concat(ObActionsList *a, ObActionsList *b);