-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.c
448 lines (373 loc) · 8.58 KB
/
menu.c
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
* ISC License
*
* Copyright (c) 2021, Tommi Leino <namhas@gmail.com>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "mxswm.h"
#include <stdio.h>
#include <string.h>
#include <err.h>
static Window _menu;
static Window _global_menu;
static struct client *currentp;
static int _menu_visible;
static int _global_menu_visible;
static int _highlight;
static int _use_global_menu;
static void move_menu_item(int);
static struct client *
current(struct stack *stack)
{
if (currentp == NULL) {
return currentp;
}
while (currentp != NULL &&
((stack != NULL && currentp->stack != stack) || !currentp->mapped))
currentp = next_client(currentp, stack);
if (currentp == NULL)
currentp = next_client(NULL, stack);
return currentp;
}
int
menu_has_highlight()
{
return _highlight;
}
void
highlight_menu(int i)
{
_highlight = i;
draw_stack(current_stack());
draw_menu();
}
int
is_menu_visible()
{
return _menu_visible;
}
void
create_global_menu()
{
int x, y, w, h;
XSetWindowAttributes a;
unsigned long v;
/* TODO: Show menu on the monitor which has the focused stack */
w = display_width(0) / 2;
set_font(FONT_NORMAL);
h = get_font_height();
x = w/2;
y = display_height(0) / 2 - (h/2);
v = CWBackPixel | CWOverrideRedirect;
a.background_pixel = query_color(COLOR_TITLE_BG_FOCUS).pixel;
a.override_redirect = True;
_global_menu = XCreateWindow(display(),
DefaultRootWindow(display()),
x, y, w, h, 0, CopyFromParent,
InputOutput, CopyFromParent,
v, &a);
}
void
create_menu()
{
int x, y, w, h;
XSetWindowAttributes a;
unsigned long v;
w = 1;
h = 1;
x = 0;
y = 0;
v = CWBackPixel | CWOverrideRedirect;
a.background_pixel = query_color(COLOR_TITLE_BG_FOCUS).pixel;
a.override_redirect = True;
_menu = XCreateWindow(display(),
DefaultRootWindow(display()),
x, y, w, h, 0, CopyFromParent,
InputOutput, CopyFromParent,
v, &a);
}
void
select_menu_item()
{
struct client *client;
client = current(current_stack());
if (client != NULL) {
focus_client(client, NULL);
currentp = NULL;
}
close_menu();
}
static void
move_menu_item(int dir)
{
struct client *client;
if (_menu_visible && current(current_stack()) != NULL)
client = current(current_stack());
else
client = current_client();
if (client == NULL)
return;
if (dir == -1)
focus_stack_backward();
else
focus_stack_forward();
if (client != NULL) {
client->stack = current_stack();
focus_client(client, client->stack);
client = NULL;
}
if (_menu_visible) {
currentp = NULL;
close_menu();
}
}
void
move_menu_item_right()
{
move_menu_item(1);
}
void
move_menu_item_left()
{
move_menu_item(-1);
}
void
select_move_menu_item()
{
struct client *client;
highlight_stacks(0);
if (_global_menu_visible || _use_global_menu) {
client = current(NULL);
close_global_menu();
if (client != NULL)
focus_client(client, client->stack);
} else {
client = current(current_stack());
close_menu();
if (client != NULL)
focus_client(client, NULL);
}
currentp = NULL;
}
void
select_menu_item_right()
{
struct client *client;
client = current(current_stack());
focus_stack_forward();
if (client != NULL)
focus_client(client, NULL);
close_menu();
}
void
select_menu_item_left()
{
struct client *client;
client = current(current_stack());
focus_stack_backward();
if (client != NULL)
focus_client(client, NULL);
close_menu();
}
void
reset_global_menu()
{
currentp = next_client(NULL, NULL);
_use_global_menu = 1;
}
void
open_global_menu()
{
if (_global_menu_visible)
return;
currentp = next_client(NULL, NULL);
if (_global_menu == 0)
create_global_menu();
_global_menu_visible = 1;
XMapWindow(display(), _global_menu);
draw_global_menu();
}
void
close_global_menu()
{
if (_global_menu_visible) {
XUnmapWindow(display(), _global_menu);
_global_menu_visible = 0;
}
_use_global_menu = 0;
}
void
select_next_global_menu()
{
struct client *client;
client = current(NULL);
currentp = next_client(client, NULL);
if (currentp == NULL)
currentp = next_client(NULL, NULL);
}
void
draw_global_menu()
{
struct client *client;
char *name;
char buf[256];
int is_last, is_first;
TRACE_LOG("visible=%d", _menu_visible);
if (_global_menu_visible == 0 || _global_menu == 0)
return;
if (currentp == NULL)
currentp = current(NULL);
client = currentp;
XClearWindow(display(), _global_menu);
XRaiseWindow(display(), _global_menu);
name = NULL;
if (client != NULL && client->renamed_name != NULL)
name = client->renamed_name;
else if (client != NULL)
name = client_name(client);
if (name == NULL)
name = "<no name>";
is_last = (next_client(client, NULL) == NULL);
is_first = (client == next_client(NULL, NULL));
snprintf(buf, sizeof(buf), "%c%s%c",
is_first ? '<' : ' ', name, is_last ? '>' : ' ');
set_font_color(COLOR_MENU_FG_NORMAL);
set_font(FONT_NORMAL);
draw_font(_global_menu, 0, 0, -1, buf);
}
void
draw_menu()
{
struct client *client, *cclient;
char *name;
struct stack *stack = current_stack();
char buf[256], flags[10];
int row_height;
int y, x;
size_t nclients;
XGlyphInfo extents;
if (_menu_visible == 0 || _menu == 0) {
TRACE_LOG("not doing anything...");
return;
}
client = NULL;
nclients = count_clients(stack);
if (nclients > 0)
nclients--;
if (nclients == 0) {
TRACE_LOG("zero clients, closing menu");
close_menu();
return;
}
cclient = current(current_stack());
set_font(FONT_NORMAL);
row_height = get_font_height();
XMoveResizeWindow(display(), _menu, STACK_X(stack), row_height,
STACK_WIDTH(stack), nclients * row_height);
XRaiseWindow(display(), _menu);
client = current_client();
y = 0;
while ((client = next_client(client, stack)) != NULL) {
if (client->renamed_name != NULL)
name = client->renamed_name;
else
name = client_name(client);
if (name == NULL)
name = "???";
snprintf(buf, sizeof(buf), " %s ", name);
snprintf(flags, sizeof(flags), "%d%c%c%c%c ",
client->stack ? client->stack->num : 0,
(cclient == client) ? '*' : '-',
client->flags & CF_HAS_TAKEFOCUS ? 't' : '-',
client->flags & CF_HAS_DELWIN ? 'd' : '-',
client->mapped ? 'm' : '-');
if (client == cclient) {
if (_highlight)
set_font_color(COLOR_MENU_FG_HIGHLIGHT);
else
set_font_color(COLOR_MENU_FG_FOCUS);
} else
set_font_color(COLOR_MENU_FG_NORMAL);
XClearArea(display(), _menu, 0, y, STACK_WIDTH(stack),
get_font_height(), False);
x = draw_font(_menu, 0, y, -1, buf);
set_font_color(COLOR_FLAGS);
font_extents(flags, strlen(flags), &extents);
if (x > STACK_WIDTH(stack) - extents.xOff)
x = STACK_WIDTH(stack) - extents.xOff;
XClearArea(display(), _menu, x, y, STACK_WIDTH(stack) - x,
get_font_height(), False);
draw_font(_menu, STACK_WIDTH(stack) - extents.xOff, y, -1,
flags);
y += row_height;
}
TRACE_LOG("%zu clients displayed...", nclients);
}
void
show_menu()
{
TRACE_LOG("*");
if (_menu == 0)
create_menu();
currentp = next_client(current_client(), current_stack());
if (!_menu_visible) {
TRACE_LOG("map menu window %lx", _menu);
XMapWindow(display(), _menu);
_menu_visible = 1;
draw_menu();
draw_stack(current_stack());
} else
TRACE_LOG("ignore");
}
void
hide_menu()
{
if (_menu_visible) {
TRACE_LOG("hide menu window %lx", _menu);
XUnmapWindow(display(), _menu);
_menu_visible = 0;
currentp = NULL;
draw_stack(current_stack());
} else
TRACE_LOG("ignore");
}
void
focus_menu_backward()
{
struct client *client;
if (!_menu_visible)
return;
client = current(current_stack());
currentp = prev_client(client, current_stack());
if (currentp == NULL || currentp == current_client()) {
hide_menu();
return;
}
draw_menu();
}
void
focus_menu_forward()
{
struct client *client;
if (!_menu_visible) {
TRACE_LOG("showing menu because not visible");
show_menu();
return;
}
client = current(current_stack());
client = next_client(client, current_stack());
if (client != NULL)
currentp = client;
draw_menu();
}