File: desklaunch.c

package info (click to toggle)
desklaunch 1.1.5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 68 kB
  • ctags: 72
  • sloc: ansic: 440; makefile: 65
file content (582 lines) | stat: -rw-r--r-- 11,529 bytes parent folder | download | duplicates (2)
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
/* 
 * desklaunch
 *
 * Copyright (C) 2001 Ken Lynch
 * Copyright (C) 2002 Stefan Pfetzing
 *
 * 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, 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
 */

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/xpm.h>
#include <X11/Xatom.h>
#include <X11/extensions/shape.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/stat.h>

#define TOOLTIP_COL		"#fffacd"
#define TOOLTIP_FONT		"lucidasans-12"

#define WIN_STATE		0
#define WIN_HINTS		1
#define WIN_LAYER		2
#define GNOME_HINT_COUNT	3

#define WIN_STATE_STICKY	(1<<0)
#define WIN_HINTS_SKIP_FOCUS	(1<<0)
#define WIN_HINTS_SKIP_WINLIST	(1<<1)
#define WIN_HINTS_SKIP_TASKBAR	(1<<2)

#define MWM_DECORATIONS		(1<<1)

typedef struct
{
	unsigned long flags;
	unsigned long functions;
	unsigned long decorations;
	unsigned long inputMode;
	unsigned long status;
}
PropMwmHints;

typedef struct _Icon Icon;

struct _Icon
{
	Pixmap pixmap, mask;
	int x, y, width, height;
	Window window;
	char *pixmap_file, *tooltip, *command;
	Icon *next;
};

struct
{
	Window window;
	XFontStruct *font;
	GC gc;
}
tooltip;

Display *dpy;
int screen;
Window root;
Icon *icon = NULL, *active_icon = NULL;
int do_update;
Atom gnome[GNOME_HINT_COUNT], motif;

/*
 *
 * General functions
 *
 */

void
print_error (char *error, int critical)
{
#ifdef DEBUG
	printf ("print_error\n");
#endif

	fprintf (stderr, "DESKLAUNCH: %s", error);
	if (critical)
		exit (1);
}

void
set_gnome_hint (Window w, int a, long value)
{
#ifdef DEBUG
	printf ("set_gnome_hint\n");
#endif

	XChangeProperty (dpy, w, gnome[a], XA_CARDINAL, 32, PropModeReplace,
									 (unsigned char *) &value, 1);
}

void
set_mwm_hints (Window w, PropMwmHints * hints)
{
#ifdef DEBUG
	printf ("set_mwm_hints");
#endif

	XChangeProperty (dpy, w, motif, motif, 32, PropModeReplace,
									 (unsigned char *) hints, sizeof (*hints));
}

/*
 *
 * Icon functions
 *
 */
void
create_icon (char *icon_string)
{
	XSetWindowAttributes attr;
	XpmAttributes xpm_attr;
	Icon *i;
	Pixmap pixmap, mask;
	int x = 0, y = 0;
	char *rvalue = NULL, *pixmap_file = NULL, *text = NULL, *command = NULL;
	XSizeHints size_hints;
	PropMwmHints mwm_hints;

#ifdef DEBUG
	printf ("create_icon\n");
#endif

	rvalue = strtok (icon_string, ":");
	if (rvalue)
		{
			x = atoi (rvalue);
			rvalue = strtok (NULL, ":");
			if (rvalue)
				{
					y = atoi (rvalue);
					pixmap_file = strtok (NULL, ":");
					if (pixmap_file)
						{
							text = strtok (NULL, ":");
							if (text)
								command = strtok (NULL, "\n");
						}
				}
		}

	if (pixmap_file == NULL || text == NULL || command == NULL)
		return;

	xpm_attr.valuemask = XpmSize;
	if (XpmReadFileToPixmap (dpy, root, pixmap_file, &pixmap, &mask, &xpm_attr)
			== 0)
		{
			if ((i = malloc (sizeof *i)) == NULL)
				print_error ("Failed to allocate memory for icon.", True);
			i->x = x;
			i->y = y;
			i->width = xpm_attr.width;
			i->height = xpm_attr.height;
			i->pixmap_file = strdup (pixmap_file);
			i->tooltip = strdup (text);
			i->command = strdup (command);
			i->next = icon;
			i->pixmap = pixmap;
			i->mask = mask;
			icon = i;

			attr.event_mask =
				ButtonPressMask | ButtonReleaseMask | EnterWindowMask |
				LeaveWindowMask | StructureNotifyMask;
			attr.override_redirect = False;
			attr.background_pixel = 0;
			i->window =
				XCreateWindow (dpy, root, i->x, i->y, i->width, i->height, 0,
											 DefaultDepth (dpy, screen), CopyFromParent,
											 DefaultVisual (dpy, screen),
											 CWOverrideRedirect | CWBackPixel | CWEventMask, &attr);
			XSetWindowBackgroundPixmap (dpy, i->window, i->pixmap);
			XShapeCombineMask (dpy, icon->window, ShapeBounding, 0, 0, i->mask,
												 ShapeSet);

			set_gnome_hint (i->window, WIN_STATE, WIN_STATE_STICKY);
			set_gnome_hint (i->window, WIN_HINTS,
											WIN_HINTS_SKIP_FOCUS | WIN_HINTS_SKIP_TASKBAR |
											WIN_HINTS_SKIP_WINLIST);
			set_gnome_hint (i->window, WIN_LAYER, 0);

			mwm_hints.flags = MWM_DECORATIONS;
			mwm_hints.decorations = 0;
			set_mwm_hints (i->window, &mwm_hints);

			size_hints.flags = PPosition;
			XSetWMNormalHints (dpy, i->window, &size_hints);

			XMapWindow (dpy, i->window);
			XRaiseWindow (dpy, i->window);
		}
	else
		print_error ("Xpm file not found.", False);
}

Icon *
find_icon_from_window (Window w)
{
	Icon *i;

#ifdef DEBUG
	printf ("find_icon_from_window\n");
#endif

	for (i = icon; i != NULL; i = i->next)
		if (i->window == w)
			return i;
	return NULL;
}

void
free_icons ()
{
	Icon *i;

#ifdef DEBUG
	printf ("free_icons\n");
#endif

	while (icon)
		{
			XDestroyWindow (dpy, icon->window);
			XFreePixmap (dpy, icon->pixmap);
			XFreePixmap (dpy, icon->mask);
			free (icon->pixmap_file);
			free (icon->command);
			i = icon->next;
			free (icon);
			icon = i;
		}
}

/*
 *
 * Rc file functions
 *
 */

void
parse_rc (char *dir, char *file)
{
	FILE *rc;
	char *rc_file, buf[1024], *lvalue, *rvalue;

#ifdef DEBUG
	printf ("parse_rc\n");
#endif

	if ((rc_file = malloc (strlen (dir) + strlen (file) + 2)) == NULL)
		return;

	sprintf (rc_file, "%s/%s", dir, file);

	if ((rc = fopen (rc_file, "r")))
		{
			while (fgets (buf, sizeof buf, rc))
				{
					lvalue = strtok (buf, "=");
					if (lvalue)
						{
							if (!strcmp (lvalue, "icon"))
								{
									rvalue = strtok (NULL, "\n");
									if (rvalue)
										create_icon (rvalue);
								}
						}
				}
			fclose (rc);
		}
	free (rc_file);
	do_update = 0;
}

void
save_icons (char *dir, char *file)
{
	char *rc_file;
	Icon *i;
	FILE *rc;

#ifdef DEBUG
	printf ("save_icons\n");
#endif

	if ((rc_file = malloc (strlen (dir) + strlen (file) + 2)) == NULL)
		return;

	sprintf (rc_file, "%s/%s", dir, file);

	if ((rc = fopen (rc_file, "w")))
		{
			fprintf (rc,
							 "#\n# .desklauchrc created automaticlly by desklaunch\n#\n");
			for (i = icon; i; i = i->next)
				fprintf (rc, "icon=%d:%d:%s:%s:%s\n", i->x, i->y, i->pixmap_file,
								 i->tooltip, i->command);
			fclose (rc);
		}
	do_update = 0;
}

/*
 *
 * Execute command
 *
 */

void
fork_exec (char *cmd)
{
	pid_t pid = fork ();

#ifdef DEBUG
	printf ("fork_exec\n");
	printf ("  executing %s\n", cmd);
#endif

	switch (pid)
		{
		case 0:
			execlp ("/bin/sh", "sh", "-c", cmd, NULL);
			fprintf (stderr, "Exec failed.\n");
			exit (0);
			break;
		case -1:
			fprintf (stderr, "Fork failed.\n");
			break;
		}
}

/*
 *
 * Event handlers
 *
 */

void
event_enter_notify (XCrossingEvent * ev)
{
	Icon *i;
	int x, width, height;

#ifdef DEBUG
	printf ("event_enter_notify\n");
#endif

	i = find_icon_from_window (ev->window);

	if (i)
		{
			width = XTextWidth (tooltip.font, i->tooltip, strlen (i->tooltip)) + 2;
			height = tooltip.font->ascent + tooltip.font->descent + 2;
			x = i->x + (i->width / 2) - (width / 2) - 1;
			XMoveResizeWindow (dpy, tooltip.window, x, i->y + i->height + 4, width,
												 height);
			XMapRaised (dpy, tooltip.window);
			XDrawString (dpy, tooltip.window, tooltip.gc, 1,
									 tooltip.font->ascent + 1, i->tooltip, strlen (i->tooltip));
			active_icon = i;
		}
}

void
event_leave_notify (XCrossingEvent * ev)
{
#ifdef DEBUG
	printf ("event_leave_notify\n");
#endif

	XClearWindow (dpy, tooltip.window);
	XUnmapWindow (dpy, tooltip.window);
	active_icon = NULL;
}

void
event_button_release (XButtonEvent * ev)
{
#ifdef DEBUG
	printf ("event_button_release\n");
#endif

	if (active_icon)
		{
			if (ev->window == active_icon->window && ev->button == Button1
					&& (ev->state == Button1Mask
							|| ev->state == (Button1Mask | LockMask)
							|| ev->state == (Button1Mask | ShiftMask)))
				fork_exec (active_icon->command);
		}
}

void
event_configure_notify (XConfigureEvent * ev)
{
	Icon *i;

#ifdef DEBUG
	printf ("event_configure_notify\n");
#endif

	i = find_icon_from_window (ev->window);
	if (i)
		{
			if (i->x != ev->x || i->y != ev->y)
				{
					i->x = ev->x;
					i->y = ev->y;
					XUnmapWindow (dpy, tooltip.window);
					save_icons (getenv ("HOME"), RCFILE);
				}
		}
}

/*
 *
 * Initialize and quit functions
 *
 */

void
quit ()
{
#ifdef DEBUG
	printf ("quit\n");
#endif

	free_icons ();
	XDestroyWindow (dpy, tooltip.window);
	XFreeFont (dpy, tooltip.font);
	XFreeGC (dpy, tooltip.gc);
	XCloseDisplay (dpy);
	exit (0);
}

void
signal_handler (int signal)
{
#ifdef DEBUG
	printf ("signal_handler\n");
#endif

	switch (signal)
		{
		case SIGHUP:
			do_update = 1;
			break;
		case SIGINT:
		case SIGTERM:
			quit ();
			break;
		case SIGCHLD:
			wait (NULL);
			break;
		}
}

void
initialize ()
{
	struct sigaction act;
	XSetWindowAttributes attr;
	XColor tooltip_col, dummyc;
	XGCValues gcv;

#ifdef DEBUG
	printf ("initialize\n");
#endif

	act.sa_handler = signal_handler;
	act.sa_flags = 0;
	sigaction (SIGTERM, &act, NULL);
	sigaction (SIGINT, &act, NULL);
	sigaction (SIGHUP, &act, NULL);
	sigaction (SIGCHLD, &act, NULL);

	if (!(dpy = XOpenDisplay (NULL)))
		print_error ("Can't open display, X may not be running.\n", True);

	screen = XDefaultScreen (dpy);
	root = XDefaultRootWindow (dpy);

	XAllocNamedColor (dpy, DefaultColormap (dpy, screen), TOOLTIP_COL,
										&tooltip_col, &dummyc);
	tooltip.font = XLoadQueryFont (dpy, TOOLTIP_FONT);

	attr.override_redirect = True;
	attr.background_pixel = tooltip_col.pixel;
	tooltip.window =
		XCreateWindow (dpy, root, 0, 0, 10, 10, 1, DefaultDepth (dpy, screen),
									 CopyFromParent, DefaultVisual (dpy, screen),
									 CWOverrideRedirect | CWBackPixel, &attr);

	gcv.function = GXcopy;
	gcv.foreground = 0;
	gcv.font = tooltip.font->fid;
	tooltip.gc =
		XCreateGC (dpy, root, GCFunction | GCForeground | GCFont, &gcv);

	gnome[WIN_STATE] = XInternAtom (dpy, "_WIN_STATE", False);
	gnome[WIN_HINTS] = XInternAtom (dpy, "_WIN_HINTS", False);
	gnome[WIN_LAYER] = XInternAtom (dpy, "_WIN_LAYER", False);
	motif = XInternAtom (dpy, "_MOTIF_WM_HINTS", False);

	parse_rc (getenv ("HOME"), RCFILE);
}

/*
 *
 * Main
 *
 */

int
main (int argc, char *argv[])
{
	initialize ();

	/* Event loop */
	while (1)
		{
			XEvent ev;

			while (XPending (dpy))
				{
					XNextEvent (dpy, &ev);
					switch (ev.type)
						{
						case EnterNotify:
							event_enter_notify (&ev.xcrossing);
							break;
						case LeaveNotify:
							event_leave_notify (&ev.xcrossing);
							break;
						case ButtonRelease:
							event_button_release (&ev.xbutton);
							break;
						case ConfigureNotify:
							event_configure_notify (&ev.xconfigure);
							break;
						}
				}

			if (do_update)
				{
					free_icons ();
					parse_rc (getenv ("HOME"), RCFILE);
				}
			usleep (250);
		}
	return 0;
}

/**This must remain at the end of the file.**********
 * vim600:set sw=2 ts=2:                            *
 * vim600:set cindent cinoptions={1s,>2s,^-1s,n-1s: *
 * vim600:set foldmarker={{{,}}} foldmethod=marker: * 
 ****************************************************/