File: dock.c

package info (click to toggle)
jwm 1.5-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,212 kB
  • ctags: 1,758
  • sloc: ansic: 14,975; sh: 2,704; makefile: 183
file content (477 lines) | stat: -rw-r--r-- 10,851 bytes parent folder | download
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
/***************************************************************************
 * Dock functions.
 * Copyright (C) 2006 Joe Wingbermuehle
 ***************************************************************************/

#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

typedef struct DockNode {

	Window window;

	struct DockNode *next;

} DockNode;

typedef struct DockType {

	TrayComponentType *cp;

	Window window;

	DockNode *nodes;

} DockType;

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

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

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

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

static void UpdateDock();

/***************************************************************************
 ***************************************************************************/
void InitializeDock() {
}

/***************************************************************************
 ***************************************************************************/
void StartupDock() {

	char *selectionName;

	if(!dock) {
		return;
	}

	selectionName = Allocate(strlen(BASE_SELECTION_NAME) + 1);
	sprintf(selectionName, BASE_SELECTION_NAME, rootScreen);
	dockAtom = JXInternAtom(display, selectionName, False);
	Release(selectionName);

	/* The location and size of the window doesn't matter here. */
	if(dock->window == None) {
		dock->window = JXCreateSimpleWindow(display, rootWindow,
			/* x, y, width, height */ 0, 0, 1, 1,
			/* border_size, border_color */ 0, 0,
			/* background */ colors[COLOR_TRAY_BG]);
	}
	dock->cp->window = dock->window;

}

/***************************************************************************
 ***************************************************************************/
void ShutdownDock() {

	DockNode *np;

	if(dock) {

		if(shouldRestart) {

			JXReparentWindow(display, dock->window, rootWindow, 0, 0);
			JXUnmapWindow(display, dock->window);

		} else {

			while(dock->nodes) {
				np = dock->nodes->next;
				JXReparentWindow(display, dock->nodes->window, rootWindow, 0, 0);
				Release(dock->nodes);
				dock->nodes = np;
			}

			if(owner) {
				JXSetSelectionOwner(display, dockAtom, None, CurrentTime);
			}

			JXDestroyWindow(display, dock->window);

		}

	}

}

/***************************************************************************
 ***************************************************************************/
void DestroyDock() {

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

}

/***************************************************************************
 ***************************************************************************/
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->Destroy = Destroy;
	cp->Resize = Resize;

	return cp;

}

/***************************************************************************
 ***************************************************************************/
void SetSize(TrayComponentType *cp, int width, int height) {

	int count;
	DockNode *np;

	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;
		}
	}

}

/***************************************************************************
 ***************************************************************************/
void Create(TrayComponentType *cp) {

	XEvent event;
	Atom orientationAtom;

	Assert(cp);

	if(cp->window != None) {
		JXResizeWindow(display, cp->window, cp->width, cp->height);
		JXMapRaised(display, cp->window);
	}

	orientationAtom = JXInternAtom(display, "_NET_SYSTEM_TRAY_ORIENTATION",
		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);

	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;

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

	}

}

/***************************************************************************
 ***************************************************************************/
void Resize(TrayComponentType *cp) {

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

}

/***************************************************************************
 ***************************************************************************/
void Destroy(TrayComponentType *cp) {
}

/***************************************************************************
 ***************************************************************************/
void HandleDockEvent(const XClientMessageEvent *event) {

	long opcode;
	Window win;

	Assert(event);

	opcode = event->data.l[1];
	win = event->data.l[2];

	switch(opcode) {
	case SYSTEM_TRAY_REQUEST_DOCK:
		DockWindow(win);
		break;
	case SYSTEM_TRAY_BEGIN_MESSAGE:
		break;
	case SYSTEM_TRAY_CANCEL_MESSAGE:
		break;
	default:
		Debug("invalid opcode in dock event");
		break;
	}

}

/***************************************************************************
 ***************************************************************************/
int HandleDockResizeRequest(const XResizeRequestEvent *event) {

	DockNode *np;

	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;
}

/***************************************************************************
 ***************************************************************************/
int HandleDockDestroy(Window win) {
	if(dock) {
		return UndockWindow(win);
	} else {
		return 0;
	}
}

/***************************************************************************
 ***************************************************************************/
int HandleDockSelectionClear(const XSelectionClearEvent *event) {

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

	return 0;

}

/***************************************************************************
 ***************************************************************************/
void DockWindow(Window win) {

	DockNode *np;

	Assert(dock);

	UndockWindow(win);

	if(win != None) {

		np = Allocate(sizeof(DockNode));
		np->window = win;
		np->next = dock->nodes;
		dock->nodes = np;

		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;
			}
		}

		JXAddToSaveSet(display, win);
		JXSelectInput(display, win,
			SubstructureNotifyMask | StructureNotifyMask | ResizeRedirectMask);
		JXReparentWindow(display, win, dock->cp->window, 0, 0);
		JXMapRaised(display, win);

	}

	ResizeTray(dock->cp->tray);

}

/***************************************************************************
 ***************************************************************************/
int UndockWindow(Window win) {

	DockNode *np;
	DockNode *last;

	Assert(dock);

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

			Release(np);

			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;
				}
			}

			ResizeTray(dock->cp->tray);

			return 1;

		}
		last = np;
	}

	return 0;
}

/***************************************************************************
 ***************************************************************************/
void UpdateDock() {

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

	Assert(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);

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

}