]> icculus.org git repositories - dana/openbox.git/blob - openbox/action_list.h
wip: Add config_parser.c which will provide a nice means to specify config variables...
[dana/openbox.git] / openbox / action_list.h
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    action_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 _ObActionAct;
22 struct _ObActionFilter;
23 struct _ObActionValue;
24
25 typedef struct _ObActionList      ObActionList;
26 typedef struct _ObActionListTest  ObActionListTest;
27
28 /*! Each node of the Action list is an action itself (or a filter bound to
29   an action). */
30 struct _ObActionList {
31     gint ref;
32     gboolean isfilterset;
33     union {
34         struct _ObActionListFilterSet {
35             ObActionListTest *test; /* can be null */
36             ObActionList *thendo; /* can be null */
37             ObActionList *elsedo; /* can be null */
38         } f;
39         struct _ObAction *action;
40     } u;
41     ObActionList *next;
42 };
43
44 struct _ObActionListTest {
45     struct _ObActionFilter *filter;
46     gboolean and;
47     ObActionListTest *next;
48 };
49
50 void action_list_ref(ObActionList *l);
51 void action_list_unref(ObActionList *l);
52
53 void action_list_test_destroy(ObActionListTest *t);
54
55 ObActionList* action_list_concat(ObActionList *a, ObActionList *b);