]> icculus.org git repositories - dana/openbox.git/blob - openbox/action_list.h
Rename ObActions* to ObAction* and remove more 3.4-compat action stuff that was missed.
[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 _ObActionValue;
23
24 typedef struct _ObActionList      ObActionList;
25 typedef struct _ObActionListTest  ObActionListTest;
26
27 /*! Each node of the Action list is an action itself (or a filter bound to
28   an action). */
29 struct _ObActionList {
30     gint ref;
31     gboolean isfilter;
32     union {
33         struct _ObActionListFilter {
34             ObActionListTest *test; /* can be null */
35             ObActionList *thendo; /* can be null */
36             ObActionList *elsedo; /* can be null */
37         } f;
38         struct _ObAction *action;
39     } u;
40     ObActionList *next;
41 };
42
43 struct _ObActionListTest {
44     gchar *key;
45     struct _ObActionValue *value; /* can be null */
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);