aboutsummaryrefslogtreecommitdiff
path: root/src/dock.c
blob: f41a39225bd790b9691e54cbe7deb305f46756d0 (plain)
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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/**
 * @file dock.c
 * @author Joe Wingbermuehle
 * @date 2006
 *
 * @brief Dock functions.
 *
 */

#include "jwm.h"
#include "dock.h"
#include "tray.h"
#include "main.h"
#include "error.h"
#include "color.h"

#define SYSTEM_TRAY_REQUEST_DOCK    0
#define SYSTEM_TRAY_BEGIN_MESSAGE   1
#define SYSTEM_TRAY_CANCEL_MESSAGE  2

#define SYSTEM_TRAY_ORIENTATION_HORZ 0
#define SYSTEM_TRAY_ORIENTATION_VERT 1

/** Structure to represent a docked window. */
typedef struct DockNode {

	Window window;
	int needs_reparent;

	struct DockNode *next;

} DockNode;

/** Structure to represent a dock tray component. */
typedef struct DockType {

	TrayComponentType *cp;

	Window window;

	DockNode *nodes;

} DockType;

static const char *BASE_SELECTION_NAME = "_NET_SYSTEM_TRAY_S%d";
static const char *ORIENTATION_ATOM = "_NET_SYSTEM_TRAY_ORIENTATION";

static DockType *dock = NULL;
static int owner = 0;
static Atom dockAtom;
static unsigned long orientation;

static void SetSize(TrayComponentType *cp, int width, int height);
static void Create(TrayComponentType *cp);
static void Resize(TrayComponentType *cp);

static void DockWindow(Window win);
static int UndockWindow(Window win);

static void UpdateDock();

/** Initialize dock data. */
void
InitializeDock()
{
}

/** Startup the dock. */
void
StartupDock()
{

	char *selectionName;

	if(!dock) {
		/* No dock has been requested. */
		return;
	}

	if(!dock->cp) {
		/* The Dock item has been removed from the configuration. */
		JXDestroyWindow(display, dock->window);
		Release(dock);
		dock = NULL;
		return;
	}

	if(dock->window == None) {

		/* No dock yet. */

		/* Get the selection atom. */
		selectionName = AllocateStack(strlen(BASE_SELECTION_NAME) + 1);
		sprintf(selectionName, BASE_SELECTION_NAME, rootScreen);
		dockAtom = JXInternAtom(display, selectionName, False);
		ReleaseStack(selectionName);

		/* The location and size of the window doesn't matter here. */
		dock->window = JXCreateSimpleWindow(display, rootWindow,
			/* x, y, width, height */ 0, 0, 1, 1,
			/* border_size, border_color */ 0, 0,
			/* background */ colors[COLOR_TRAY_BG]);
		JXSelectInput(display, dock->window,
			  SubstructureNotifyMask
			| SubstructureRedirectMask
			| PointerMotionMask | PointerMotionHintMask);

	}
	dock->cp->window = dock->window;

}

/** Shutdown the dock. */
void
ShutdownDock()
{

	DockNode *np;

	if(dock) {

		if(shouldRestart) {

			/* If restarting we just reparent the dock window to the root
			 * window. We need to keep the dock around and visible so that
			 * we don't cause problems with the docked windows.
			 * It seems every application handles docking differently...
			 */
			JXReparentWindow(display, dock->window, rootWindow, 0, 0);

		} else {

			/* JWM is exiting. */

			/* Release memory used by the dock list. */
			while(dock->nodes) {
				np = dock->nodes->next;
				JXReparentWindow(display, dock->nodes->window, rootWindow, 0, 0);
				Release(dock->nodes);
				dock->nodes = np;
			}

			/* Release the selection. */
			if(owner) {
				JXSetSelectionOwner(display, dockAtom, None, CurrentTime);
			}

			/* Destroy the dock window. */
			JXDestroyWindow(display, dock->window);

		}

	}

}

/** Destroy dock data. */
void
DestroyDock()
{

	if(dock) {
		if(shouldRestart) {
			dock->cp = NULL;
		} else {
			Release(dock);
			dock = NULL;
		}
	}

}

/** Create a dock component. */
TrayComponentType *
CreateDock()
{

	TrayComponentType *cp;

	if(dock != NULL && dock->cp != NULL) {
		Warning("only one Dock allowed");
		return NULL;
	} else if(dock == NULL) {
		dock = Allocate(sizeof(DockType));
		dock->nodes = NULL;
		dock->window = None;
	}

	cp = CreateTrayComponent();
	cp->object = dock;
	dock->cp = cp;
	cp->requestedWidth = 1;
	cp->requestedHeight = 1;

	cp->SetSize = SetSize;
	cp->Create = Create;
	cp->Resize = Resize;

	return cp;

}

/** Set the size of a dock component. */
void
SetSize(TrayComponentType *cp, int width, int height)
{

	int count;
	DockNode *np;

	Assert(cp);
	Assert(dock);

	count = 0;
	for(np = dock->nodes; np; np = np->next) {
		++count;
	}

	if(width == 0) {
		if(count > 0) {
			cp->width = count * height;
			cp->requestedWidth = cp->width;
		} else {
			cp->width = 1;
			cp->requestedWidth = 1;
		}
	} else if(height == 0) {
		if(count > 0) {
			cp->height = count * width;
			cp->requestedHeight = cp->height;
		} else {
			cp->height = 1;
			cp->requestedHeight = 1;
		}
	}

}

/** Initialize a dock component. */
void
Create(TrayComponentType *cp)
{

	XEvent event;
	Atom orientationAtom;

	Assert(cp);

	/* Map the dock window. */
	if(cp->window != None) {
		JXResizeWindow(display, cp->window, cp->width, cp->height);
		JXMapRaised(display, cp->window);
	}

	/* Set the orientation. */
	orientationAtom = JXInternAtom(display, ORIENTATION_ATOM, False);
	if(cp->height == 1) {
		orientation = SYSTEM_TRAY_ORIENTATION_VERT;
	} else {
		orientation = SYSTEM_TRAY_ORIENTATION_HORZ;
	}
	JXChangeProperty(display, dock->cp->window, orientationAtom,
		XA_CARDINAL, 32, PropModeReplace, (unsigned char*)&orientation, 1);

	/* Get the selection if we don't already own it.
	 * If we did already own it, getting it again would cause problems
	 * with some clients due to the way restarts are handled.
	 */
	if(!owner) {

		owner = 1;
		JXSetSelectionOwner(display, dockAtom, dock->cp->window, CurrentTime);
		if(JXGetSelectionOwner(display, dockAtom) != dock->cp->window) {

			owner = 0;
			Warning("could not acquire system tray selection");

		} else {

			memset(&event, 0, sizeof(event));
			event.xclient.type = ClientMessage;
			event.xclient.window = rootWindow;
			event.xclient.message_type = JXInternAtom(display, "MANAGER", False);
			event.xclient.format = 32;
			event.xclient.data.l[0] = CurrentTime;
			event.xclient.data.l[1] = dockAtom;
			event.xclient.data.l[2] = dock->cp->window;
			event.xclient.data.l[3] = 0;
			event.xclient.data.l[4] = 0;

			JXSendEvent(display, rootWindow, False, StructureNotifyMask, &event);

		}

	}

}

/** Resize a dock component. */
void
Resize(TrayComponentType *cp)
{

	Assert(cp);

	JXResizeWindow(display, cp->window, cp->width, cp->height);
	UpdateDock();

}

/** Handle a dock event. */
void
HandleDockEvent(const XClientMessageEvent *event)
{

	Assert(event);

	switch(event->data.l[1]) {
	case SYSTEM_TRAY_REQUEST_DOCK:
		DockWindow(event->data.l[2]);
		break;
	case SYSTEM_TRAY_BEGIN_MESSAGE:
		break;
	case SYSTEM_TRAY_CANCEL_MESSAGE:
		break;
	default:
		Debug("invalid opcode in dock event");
		break;
	}

}

/** Handle a resize request event. */
int
HandleDockResizeRequest(const XResizeRequestEvent *event)
{

	DockNode *np;

	Assert(event);

	if(!dock) {
		return 0;
	}

	for(np = dock->nodes; np; np = np->next) {
		if(np->window == event->window) {

			JXResizeWindow(display, np->window, event->width, event->height);
			UpdateDock();

			return 1;
		}
	}

	return 0;
}

/** Handle a configure request event. */
int
HandleDockConfigureRequest(const XConfigureRequestEvent *event)
{

	XWindowChanges wc;
	DockNode *np;

	Assert(event);

	if(!dock) {
		return 0;
	}

	for(np = dock->nodes; np; np = np->next) {
		if(np->window == event->window) {
			wc.stack_mode = event->detail;
			wc.sibling = event->above;
			wc.border_width = event->border_width;
			wc.x = event->x;
			wc.y = event->y;
			wc.width = event->width;
			wc.height = event->height;
			JXConfigureWindow(display, np->window, event->value_mask, &wc);
			UpdateDock();
			return 1;
		}
	}

	return 0;

}

/** Handle a reparent notify event. */
int
HandleDockReparentNotify(const XReparentEvent *event)
{

	DockNode *np;
	int handled;

	Assert(event);

	/* Just return if there is no dock. */
	if(!dock) {
		return 0;
	}

	/* Check each docked window. */
	handled = 0;
	for(np = dock->nodes; np; np = np->next) {
		if(np->window == event->window) {
			if(event->parent != dock->cp->window) {
				/* For some reason the application reparented the window.
				 * We make note of this condition and reparent every time
				 * the dock is updated. Unfortunately we can't do this for
				 * all applications because some won't deal with it.
				 */
				np->needs_reparent = 1;
				handled = 1;
			}
		}
	}

	/* Layout the stuff on the dock again if something happened. */
	if(handled) {
		UpdateDock();
	}

	return handled;

}

/** Handle a destroy event. */
int
HandleDockDestroy(Window win)
{

	if(dock) {
		return UndockWindow(win);
	} else {
		return 0;
	}

}

/** Handle a selection clear event. */
int
HandleDockSelectionClear(const XSelectionClearEvent *event)
{

	if(event->selection == dockAtom) {
		Debug("lost _NET_SYSTEM_TRAY selection");
		owner = 0;
	}

	return 0;

}

/** Add a window to the dock. */
void
DockWindow(Window win)
{

	DockNode *np;

	Assert(dock);

	/* Make sure we have a valid window to add. */
	if(win == None) {
		return;
	}

	/* If this window is already docked ignore it. */
	for(np = dock->nodes; np; np = np->next) {
		if(np->window == win) {
			return;
		}
	}

	/* Add the window to our list. */
	np = Allocate(sizeof(DockNode));
	np->window = win;
	np->needs_reparent = 0;
	np->next = dock->nodes;
	dock->nodes = np;

	/* Update the requested size. */
	if(orientation == SYSTEM_TRAY_ORIENTATION_HORZ) {
		if(dock->cp->requestedWidth > 1) {
			dock->cp->requestedWidth += dock->cp->height;
		} else {
			dock->cp->requestedWidth = dock->cp->height;
		}
	} else {
		if(dock->cp->requestedHeight > 1) {
			dock->cp->requestedHeight += dock->cp->width;
		} else {
			dock->cp->requestedHeight = dock->cp->width;
		}
	}

	/* It's safe to reparent at (0, 0) since we call
	 * ResizeTray which will invoke the Resize callback.
	 */
	JXAddToSaveSet(display, win);
	JXSelectInput(display, win,
		  StructureNotifyMask
		| ResizeRedirectMask
		| PointerMotionMask | PointerMotionHintMask);
	JXReparentWindow(display, win, dock->cp->window, 0, 0);
	JXMapRaised(display, win);

	/* Resize the tray containing the dock. */
	ResizeTray(dock->cp->tray);

}

/** Remove a window from the dock. */
int
UndockWindow(Window win)
{

	DockNode *np;
	DockNode *last;

	Assert(dock);

	last = NULL;
	for(np = dock->nodes; np; np = np->next) {
		if(np->window == win) {

			/* Remove the window from our list. */
			if(last) {
				last->next = np->next;
			} else {
				dock->nodes = np->next;
			}
			Release(np);

			/* Update the requested size. */
			if(orientation == SYSTEM_TRAY_ORIENTATION_HORZ) {
				dock->cp->requestedWidth -= dock->cp->height;
				if(dock->cp->requestedWidth <= 0) {
					dock->cp->requestedWidth = 1;
				}
			} else {
				dock->cp->requestedHeight -= dock->cp->width;
				if(dock->cp->requestedHeight <= 0) {
					dock->cp->requestedHeight = 1;
				}
			}

			/* Resize the tray. */
			ResizeTray(dock->cp->tray);

			return 1;

		}
		last = np;
	}

	return 0;
}

/** Layout items on the dock. */
void
UpdateDock()
{

	XWindowAttributes attr;
	DockNode *np;
	int x, y;
	int width, height;
	int xoffset, yoffset;
	int itemWidth, itemHeight;
	double ratio;

	Assert(dock);

	/* Determine the size of items in the dock. */
	if(orientation == SYSTEM_TRAY_ORIENTATION_HORZ) {
		itemWidth = dock->cp->height;
		itemHeight = dock->cp->height;
	} else {
		itemHeight = dock->cp->width;
		itemWidth = dock->cp->width;
	}

	x = 0;
	y = 0;
	for(np = dock->nodes; np; np = np->next) {

		xoffset = 0;
		yoffset = 0;
		width = itemWidth;
		height = itemHeight;

		if(JXGetWindowAttributes(display, np->window, &attr)) {

			ratio = (double)attr.width / attr.height;

			if(ratio > 1.0) {
				if(width > attr.width) {
					width = attr.width;
				}
				height = width / ratio;
			} else {
				if(height > attr.height) {
					height = attr.height;
				}
				width = height * ratio;
			}

			xoffset = (itemWidth - width) / 2;
			yoffset = (itemHeight - height) / 2;

		}

		JXMoveResizeWindow(display, np->window, x + xoffset, y + yoffset,
			width, height);

		/* Reparent if this window likes to go other places. */
		if(np->needs_reparent) {
			JXReparentWindow(display, np->window, dock->cp->window,
			x + xoffset, y + yoffset);
		}

		if(orientation == SYSTEM_TRAY_ORIENTATION_HORZ) {
			x += itemWidth;
		} else {
			y += itemHeight;
		}
	}

}