all repos — openbox @ f8a47de5ec444c452093371e3db16857eb39a490

openbox fork - make it a bit more like ryudo

c/mbind.c (raw)

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
#include "mbind.h"
#include "kbind.h"
#include "frame.h"
#include "openbox.h"
#include "eventdata.h"
#include "hooks.h"

#include <glib.h>
#ifdef HAVE_STDLIB_H
#  include <stdlib.h>
#endif

/* GData of GSList*'s of PointerBinding*'s. */
static GData *bound_contexts;

static gboolean grabbed;

struct mbind_foreach_grab_temp {
    Client *client;
    gboolean grab;
};

typedef struct {
    guint state;
    guint button;
    char *name;
} PointerBinding;

static gboolean translate(char *str, guint *state, guint *button)
{
    char **parsed;
    char *l;
    int i;
    gboolean ret = FALSE;

    parsed = g_strsplit(str, "-", -1);
    
    /* first, find the button (last token) */
    l = NULL;
    for (i = 0; parsed[i] != NULL; ++i)
	l = parsed[i];
    if (l == NULL)
	goto translation_fail;

    /* figure out the mod mask */
    *state = 0;
    for (i = 0; parsed[i] != l; ++i) {
	guint m = kbind_translate_modifier(parsed[i]);
	if (!m) goto translation_fail;
	*state |= m;
    }

    /* figure out the button */
    *button = atoi(l);
    if (!*button) {
	g_warning("Invalid button '%s' in pointer binding.", l);
	goto translation_fail;
    }

    ret = TRUE;

translation_fail:
    g_strfreev(parsed);
    return ret;
}

void grab_button(Client *client, guint state, guint button, GQuark context,
		 gboolean grab)
{
    Window win;
    int mode = GrabModeAsync;
    unsigned int mask;

    if (context == g_quark_try_string("frame")) {
	win = client->frame->window;
	mask = ButtonPressMask | ButtonMotionMask | ButtonReleaseMask;
    } else if (context == g_quark_try_string("client")) {
	win = client->frame->plate;
	mode = GrabModeSync; /* this is handled in mbind_fire */
	mask = ButtonPressMask; /* can't catch more than this with Sync mode
				   the release event is manufactured in
				   mbind_fire */
    } else return;

    if (grab)
	XGrabButton(ob_display, button, state, win, FALSE, mask, mode,
		    GrabModeAsync, None, None);
    else
	XUngrabButton(ob_display, button, state, win);
}

static void mbind_foreach_grab(GQuark key, gpointer data, gpointer user_data)
{
    struct mbind_foreach_grab_temp *d = user_data;
    PointerBinding *b = ((GSList *)data)->data;
    if (b != NULL)
 	grab_button(d->client, b->state, b->button, key, d->grab);
}
  
void mbind_grab_all(Client *client, gboolean grab)
{
    struct mbind_foreach_grab_temp bt;
    bt.client = client;
    bt.grab = grab;
    g_datalist_foreach(&bound_contexts, mbind_foreach_grab, &bt);
}

void grab_all_clients(gboolean grab)
{
    GSList *it;

    for (it = client_list; it != NULL; it = it->next)
	mbind_grab_all(it->data, grab);
}

void mbind_startup()
{
    grabbed = FALSE;
    g_datalist_init(&bound_contexts);
}

void mbind_shutdown()
{
    if (grabbed)
	mbind_grab_pointer(FALSE);
    mbind_clearall();
    g_datalist_clear(&bound_contexts);
}

gboolean mbind_add(char *name, GQuark context)
{
    guint state, button;
    PointerBinding *b;
    GSList *it;

    if (!translate(name, &state, &button))
	return FALSE;

    for (it = g_datalist_id_get_data(&bound_contexts, context);
	 it != NULL; it = it->next){
	b = it->data;
	if (b->state == state && b->button == button)
	    return TRUE; /* already bound */
    }

    grab_all_clients(FALSE);

    /* add the binding */
    b = g_new(PointerBinding, 1);
    b->state = state;
    b->button = button;
    b->name = g_strdup(name);
    g_datalist_id_set_data(&bound_contexts, context, 
        g_slist_append(g_datalist_id_get_data(&bound_contexts, context), b));
    grab_all_clients(TRUE);

    return TRUE;
}

static void mbind_foreach_clear(GQuark key, gpointer data, gpointer user_data)
{
    GSList *it;
    user_data = user_data;
    for (it = data; it != NULL; it = it->next) {
        PointerBinding *b = it->data;
        g_free(b->name);
        g_free(b);
    }
    g_slist_free(data);
}
void mbind_clearall()
{
    grab_all_clients(FALSE);
    g_datalist_foreach(&bound_contexts, mbind_foreach_clear, NULL);
}

void mbind_fire(guint state, guint button, GQuark context, EventType type,
		Client *client, int xroot, int yroot)
{
    GSList *it;

    if (grabbed) {
	    EventData *data;
	    data = eventdata_new_pointer(type, context, client, state, button,
					 NULL, xroot, yroot);
	    g_assert(data != NULL);
	    hooks_fire_pointer(data);
	    eventdata_free(data);
	    return;
    }

    for (it = g_datalist_id_get_data(&bound_contexts, context);
	 it != NULL; it = it->next){
	PointerBinding *b = it->data;
	if (b->state == state && b->button == button) {
	    EventData *data;
	    data = eventdata_new_pointer(type, context, client, state, button,
					 b->name, xroot, yroot);
	    g_assert(data != NULL);
	    hooks_fire(data);
	    eventdata_free(data);
	    break;
	}
    }
}

gboolean mbind_grab_pointer(gboolean grab)
{
    gboolean ret = TRUE;
    if (grab)
	ret = XGrabPointer(ob_display, ob_root, FALSE, (ButtonPressMask |
							ButtonReleaseMask |
							ButtonMotionMask |
							PointerMotionMask),
			   GrabModeAsync, GrabModeAsync, None, None,
			   CurrentTime) == GrabSuccess;
    else
	XUngrabPointer(ob_display, CurrentTime);
    return ret;
}