1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
actions.h for the Openbox window manager
Copyright (c) 2007 Dana Jansens
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
See the COPYING file for a copy of the GNU General Public License.
*/
#include "actions.h"
#include "gettext.h"
static void actions_definition_ref(ObActionsDefinition *def);
static void actions_definition_unref(ObActionsDefinition *def);
struct _ObActionsDefinition {
guint ref;
gchar *name;
ObActionsType type;
ObActionsDataSetupFunc setup;
ObActionsDataFreeFunc free;
ObActionsRunFunc run;
ObActionsInteractiveInputFunc i_input;
ObActionsInteractiveCancelFunc i_cancel;
};
struct _ObActionsAct {
guint ref;
ObActionsDefinition *def;
gpointer options;
};
static GSList *registered = NULL;
void actions_startup(gboolean reconfig)
{
if (reconfig) return;
}
void actions_shutdown(gboolean reconfig)
{
if (reconfig) return;
/* free all the registered actions */
while (registered) {
actions_definition_unref(registered->data);
registered = g_slist_delete_link(registered, registered);
}
}
gboolean actions_register(const gchar *name,
ObActionsType type,
ObActionsDataSetupFunc setup,
ObActionsDataFreeFunc free,
ObActionsRunFunc run,
ObActionsInteractiveInputFunc i_input,
ObActionsInteractiveCancelFunc i_cancel)
{
GSList *it;
ObActionsDefinition *def;
for (it = registered; it; it = g_slist_next(it)) {
def = it->data;
if (!g_ascii_strcasecmp(name, def->name)) /* already registered */
return FALSE;
}
g_assert((i_input == NULL) == (i_cancel == NULL));
def = g_new(ObActionsDefinition, 1);
def->ref = 1;
def->name = g_strdup(name);
def->type = type;
def->setup = setup;
def->free = free;
def->run = run;
def->i_input = i_input;
def->i_cancel = i_cancel;
return TRUE;
}
static void actions_definition_ref(ObActionsDefinition *def)
{
++def->ref;
}
static void actions_definition_unref(ObActionsDefinition *def)
{
if (def && --def->ref == 0) {
g_free(def->name);
g_free(def);
}
}
ObActionsAct* actions_parse_string(const gchar *name)
{
GSList *it;
ObActionsDefinition *def;
ObActionsAct *act = NULL;
/* find the requested action */
for (it = registered; it; it = g_slist_next(it)) {
def = it->data;
if (!g_ascii_strcasecmp(name, def->name))
break;
def = NULL;
}
/* if we found the action */
if (def) {
act = g_new(ObActionsAct, 1);
act->ref = 1;
act->def = def;
actions_definition_ref(act->def);
act->options = NULL;
} else
g_message(_("Invalid action '%s' requested. No such action exists."),
name);
return act;
}
ObActionsAct* actions_parse(ObParseInst *i,
xmlDocPtr doc,
xmlNodePtr node)
{
gchar *name;
ObActionsAct *act = NULL;
if (parse_attr_string("name", node, &name)) {
if ((act = actions_parse_string(name)))
/* there is more stuff to parse here */
act->options = act->def->setup(i, doc, node->children);
g_free(name);
}
return act;
}
gboolean actions_act_is_interactive(ObActionsAct *act)
{
return act->def->i_cancel != NULL;
}
void actions_act_ref(ObActionsAct *act)
{
++act->ref;
}
void actions_act_unref(ObActionsAct *act)
{
if (act && --act->ref == 0) {
/* free the action specific options */
act->def->free(act->options);
/* unref the definition */
actions_definition_unref(act->def);
g_free(act);
}
}
static void actions_setup_data(ObActionsData *data,
ObUserAction uact,
Time time,
guint state,
gint x,
gint y)
{
data->any.uact = uact;
data->any.time = time;
data->any.state = state;
data->any.x = x;
data->any.y = y;
}
void actions_run_acts(GSList *acts,
ObUserAction uact,
Time time,
guint state,
gint x,
gint y,
ObFrameContext con,
struct _ObClient *client)
{
GSList *it;
for (it = acts; it; it = g_slist_next(it)) {
ObActionsData data;
ObActionsAct *act = it->data;
data.type = act->def->type;
actions_setup_data(&data, uact, time, state, x, y);
switch (data.type) {
case OB_ACTION_TYPE_GLOBAL:
break;
case OB_ACTION_TYPE_CLIENT:
data.client.context = con;
data.client.c = client;
break;
default:
g_assert_not_reached();
}
/* fire the action's run function with this data */
act->def->run(&data, act->options);
}
}
|