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
|
/* -*- 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 "misc.h"
#include "frame.h"
#include "parser/parse.h"
#include <glib.h>
#include <X11/Xlib.h>
typedef struct _ObActionsDefinition ObActionsDefinition;
typedef struct _ObActionsAct ObActionsAct;
typedef struct _ObActionsData ObActionsData;
typedef struct _ObActionsAnyData ObActionsAnyData;
typedef struct _ObActionsGlobalData ObActionsGlobalData;
typedef struct _ObActionsClientData ObActionsClientData;
typedef struct _ObActionsSelectorData ObActionsSelectorData;
typedef enum {
OB_ACTION_DONE,
OB_ACTION_CANCELLED,
OB_ACTION_INTERACTING,
OB_NUM_ACTIONS_INTERACTIVE_STATES
} ObActionsInteractiveState;
typedef gpointer (*ObActionsDataSetupFunc)(ObParseInst *i,
xmlDocPtr doc, xmlNodePtr node);
typedef void (*ObActionsDataFreeFunc)(gpointer options);
typedef void (*ObActionsRunFunc)(ObActionsData *data,
gpointer options);
/*
The theory goes:
06:10 (@dana) hm i think there are 3 types of actions
06:10 (@dana) global actions, window actions, and selector actions
06:11 (@dana) eg show menu/exit, raise/focus, and cycling/directional/expose
*/
typedef enum {
OB_ACTION_TYPE_GLOBAL,
OB_ACTION_TYPE_CLIENT,
OB_ACTION_TYPE_SELECTOR
} ObActionsType;
/* These structures are all castable as eachother */
struct _ObActionsAnyData {
ObUserAction uact;
Time time;
guint state;
guint button;
gint x;
gint y;
};
struct _ObActionsGlobalData {
ObActionsType type;
ObActionsAnyData any;
};
struct _ObActionsClientData {
ObActionsType type;
ObActionsAnyData any;
struct _ObClient *c;
ObFrameContext context;
};
struct _ObActionsSelectorData {
ObActionsType type;
ObActionsAnyData any;
ObActionsInteractiveState interactive;
GSList *actions;
};
struct _ObActionsData {
ObActionsType type;
union {
ObActionsAnyData any;
ObActionsGlobalData global;
ObActionsClientData client;
ObActionsSelectorData selector;
};
};
void actions_startup(gboolean reconfigure);
void actions_shutdown(gboolean reconfigure);
gboolean actions_register(const gchar *name,
ObActionsType type,
ObActionsDataSetupFunc setup,
ObActionsDataFreeFunc free,
ObActionsRunFunc run);
ObActionsAct* actions_parse(ObParseInst *i,
xmlDocPtr doc,
xmlNodePtr node);
ObActionsAct* actions_parse_string(const gchar *name);
void actions_act_ref(ObActionsAct *act);
void actions_act_unref(ObActionsAct *act);
/*! Pass in a GSList of ObActionsAct's to be run */
void actions_run_acts(GSList *acts,
ObUserAction uact,
Time time,
guint state,
guint button,
gint x,
gint y,
ObFrameContext con,
struct _ObClient *client,
ObActionsInteractiveState interactive);
|