wmgeneral, wmsun: Use threadsafe functions.
[dockapps.git] / wmckgmail / wmgeneral / wmgeneral.c
blobc624193040be8e5664d5074a489df85747fc9ae7
1 /*
2 wmgeneral was taken from wmppp.
4 It has a lot of routines which most of the wm* programs use.
6 ------------------------------------------------------------
8 Copyright (C) 1998 Martijn Pieterse (pieterse@xs4all.nl)
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation; either version 2
13 of the License, or (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 02110-1301, USA.
25 ---
26 CHANGES:
27 ---
28 10/10/2003 (Simon Law, sfllaw@debian.org)
29 * changed the parse_rcfile function to use getline instead of
30 fgets.
31 10/14/2000 (Chris Gray, cgray@tribsoft.com)
32 * Removed a bug from parse_rcfile. An extra
33 newline would cause a segfault.
34 14/09/1998 (Dave Clark, clarkd@skyia.com)
35 * Updated createXBMfromXPM routine
36 * Now supports >256 colors
37 11/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
38 * Removed a bug from parse_rcfile. You could
39 not use "start" in a command if a label was
40 also start.
41 * Changed the needed geometry string.
42 We don't use window size, and don't support
43 negative positions.
44 03/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
45 * Added parse_rcfile2
46 02/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
47 * Added -geometry support (untested)
48 28/08/1998 (Martijn Pieterse, pieterse@xs4all.nl)
49 * Added createXBMfromXPM routine
50 * Saves a lot of work with changing xpm's.
51 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
52 * changed the read_rc_file to parse_rcfile, as suggested by
53 Marcelo E. Magallon
54 * debugged the parse_rc file.
55 30/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
56 * Ripped similar code from all the wm* programs,
57 and put them in a single file.
61 #define _POSIX_C_SOURCE 200809L
62 #include "wmgeneral.h"
63 #include <X11/Xlib.h> /* for XCopyArea, etc */
64 #include <X11/Xutil.h> /* for XSizeHints, XWMHints, etc */
65 #include <X11/extensions/shape.h> /* for XShapeCombineMask */
66 #include <X11/extensions/shapeconst.h> /* for ShapeBounding, ShapeSet */
67 #include <X11/xpm.h> /* for XpmAttributes, Pixel, etc */
68 #include <stddef.h> /* for size_t */
69 #include <stdio.h> /* for fprintf, stderr, NULL, etc */
70 #include <stdlib.h> /* for exit, free */
71 #include <string.h> /* for strcmp, strdup, strcspn, etc */
73 /*****************/
74 /* X11 Variables */
75 /*****************/
77 Window Root;
78 int screen;
79 int x_fd;
80 int d_depth;
81 XSizeHints mysizehints;
82 XWMHints mywmhints;
83 Pixel back_pix, fore_pix;
84 Window iconwin, win;
85 GC NormalGC;
86 XpmIcon wmgen;
87 Pixmap pixmask;
89 /*****************/
90 /* Mouse Regions */
91 /*****************/
93 typedef struct {
94 int enable;
95 int top;
96 int bottom;
97 int left;
98 int right;
99 } MOUSE_REGION;
101 MOUSE_REGION mouse_region[MAX_MOUSE_REGION];
103 /***********************/
104 /* Function Prototypes */
105 /***********************/
107 static void GetXPM(XpmIcon *, char **);
108 static Pixel GetColor(char *);
109 void RedrawWindow(void);
110 void AddMouseRegion(int, int, int, int, int);
111 int CheckMouseRegion(int, int);
113 /*******************************************************************************\
114 |* parse_rcfile *|
115 \*******************************************************************************/
117 void parse_rcfile(const char *filename, rckeys *keys) {
119 char *p;
120 FILE *fp;
122 fp = fopen(filename, "r");
123 if (fp) {
124 char temp[128];
126 while (fgets(temp, 128, fp)) {
127 char *q, *saveptr;
128 char *tokens = " :\t\n";
129 int key;
131 key = 0;
132 q = strdup(temp);
133 q = strtok_r(q, tokens, &saveptr);
134 if(!q)
135 continue;
136 while (key >= 0 && keys[key].label) {
137 if ((!strcmp(q, keys[key].label))) {
138 int i;
140 p = strstr(temp, keys[key].label);
141 p += strlen(keys[key].label);
142 p += strspn(p, tokens);
143 if ((i = strcspn(p, "#\n"))) p[i] = '\0';
144 *keys[key].var = strdup(p);
145 key = -1;
146 } else key++;
149 fclose(fp);
153 /*******************************************************************************\
154 |* parse_rcfile2 *|
155 \*******************************************************************************/
157 void parse_rcfile2(const char *filename, rckeys2 *keys) {
159 char *p;
160 char *line = NULL;
161 size_t line_size = 0;
162 FILE *fp;
164 fp = fopen(filename, "r");
165 if (fp) {
166 while (getline(&line, &line_size, fp) >= 0) {
167 int key;
169 key = 0;
170 while (key >= 0 && keys[key].label) {
171 if ((p = strstr(line, keys[key].label))) {
172 char *tokens = " :\t\n";
173 int i;
175 p += strlen(keys[key].label);
176 p += strspn(p, tokens);
177 if ((i = strcspn(p, "#\n"))) p[i] = 0;
178 *keys[key].var = strdup(p);
179 key = -1;
180 } else key++;
183 fclose(fp);
188 /*******************************************************************************\
189 |* GetXPM *|
190 \*******************************************************************************/
192 static void GetXPM(XpmIcon *wmgen, char *pixmap_bytes[]) {
194 XWindowAttributes attributes;
195 int err;
197 /* For the colormap */
198 XGetWindowAttributes(display, Root, &attributes);
200 wmgen->attributes.valuemask |= (XpmReturnPixels | XpmReturnExtensions);
202 err = XpmCreatePixmapFromData(display, Root, pixmap_bytes, &(wmgen->pixmap),
203 &(wmgen->mask), &(wmgen->attributes));
205 if (err != XpmSuccess) {
206 fprintf(stderr, "Not enough free colorcells.\n");
207 exit(1);
211 /*******************************************************************************\
212 |* GetColor *|
213 \*******************************************************************************/
215 static Pixel GetColor(char *name) {
217 XColor color;
218 XWindowAttributes attributes;
220 XGetWindowAttributes(display, Root, &attributes);
222 color.pixel = 0;
223 if (!XParseColor(display, attributes.colormap, name, &color)) {
224 fprintf(stderr, "wm.app: can't parse %s.\n", name);
225 } else if (!XAllocColor(display, attributes.colormap, &color)) {
226 fprintf(stderr, "wm.app: can't allocate %s.\n", name);
228 return color.pixel;
231 /*******************************************************************************\
232 |* flush_expose *|
233 \*******************************************************************************/
235 static int flush_expose(Window w) {
237 XEvent dummy;
238 int i=0;
240 while (XCheckTypedWindowEvent(display, w, Expose, &dummy))
241 i++;
243 return i;
246 /*******************************************************************************\
247 |* RedrawWindow *|
248 \*******************************************************************************/
250 void RedrawWindow(void) {
252 flush_expose(iconwin);
253 XCopyArea(display, wmgen.pixmap, iconwin, NormalGC,
254 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0);
255 flush_expose(win);
256 XCopyArea(display, wmgen.pixmap, win, NormalGC,
257 0,0, wmgen.attributes.width, wmgen.attributes.height, 0,0);
260 /*******************************************************************************\
261 |* RedrawWindowXY *|
262 \*******************************************************************************/
264 void RedrawWindowXY(int x, int y) {
266 flush_expose(iconwin);
267 XCopyArea(display, wmgen.pixmap, iconwin, NormalGC,
268 x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0);
269 flush_expose(win);
270 XCopyArea(display, wmgen.pixmap, win, NormalGC,
271 x,y, wmgen.attributes.width, wmgen.attributes.height, 0,0);
274 /*******************************************************************************\
275 |* AddMouseRegion *|
276 \*******************************************************************************/
278 void AddMouseRegion(int index, int left, int top, int right, int bottom) {
280 if (index < MAX_MOUSE_REGION) {
281 mouse_region[index].enable = 1;
282 mouse_region[index].top = top;
283 mouse_region[index].left = left;
284 mouse_region[index].bottom = bottom;
285 mouse_region[index].right = right;
289 /*******************************************************************************\
290 |* CheckMouseRegion *|
291 \*******************************************************************************/
293 int CheckMouseRegion(int x, int y) {
295 int i;
296 int found;
298 found = 0;
300 for (i=0; i<MAX_MOUSE_REGION && !found; i++) {
301 if (mouse_region[i].enable &&
302 x <= mouse_region[i].right &&
303 x >= mouse_region[i].left &&
304 y <= mouse_region[i].bottom &&
305 y >= mouse_region[i].top)
306 found = 1;
308 if (!found) return -1;
309 return (i-1);
312 /*******************************************************************************\
313 |* createXBMfromXPM *|
314 \*******************************************************************************/
315 void createXBMfromXPM(char *xbm, char **xpm, int sx, int sy) {
317 int i,j,k;
318 int width, height, numcol, depth;
319 int zero=0;
320 int curpixel;
322 sscanf(*xpm, "%10d %10d %10d %10d", &width, &height, &numcol, &depth);
325 for (k=0; k!=depth; k++)
327 zero <<=8;
328 zero |= xpm[1][k];
331 for (i=numcol+1; i < numcol+sy+1; i++) {
332 unsigned char bwrite;
333 int bcount;
335 bcount = 0;
336 bwrite = 0;
337 for (j=0; j<sx*depth; j+=depth) {
338 bwrite >>= 1;
340 curpixel=0;
341 for (k=0; k!=depth; k++)
343 curpixel <<=8;
344 curpixel |= xpm[i][j+k];
347 if ( curpixel != zero ) {
348 bwrite += 128;
350 bcount++;
351 if (bcount == 8) {
352 *xbm = bwrite;
353 xbm++;
354 bcount = 0;
355 bwrite = 0;
361 /*******************************************************************************\
362 |* copyXPMArea *|
363 \*******************************************************************************/
365 void copyXPMArea(int x, int y, int sx, int sy, int dx, int dy) {
367 XCopyArea(display, wmgen.pixmap, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy);
371 /*******************************************************************************\
372 |* copyXBMArea *|
373 \*******************************************************************************/
375 void copyXBMArea(int x, int y, int sx, int sy, int dx, int dy) {
377 XCopyArea(display, wmgen.mask, wmgen.pixmap, NormalGC, x, y, sx, sy, dx, dy);
381 /*******************************************************************************\
382 |* setMaskXY *|
383 \*******************************************************************************/
385 void setMaskXY(int x, int y) {
387 XShapeCombineMask(display, win, ShapeBounding, x, y, pixmask, ShapeSet);
388 XShapeCombineMask(display, iconwin, ShapeBounding, x, y, pixmask, ShapeSet);
391 /*******************************************************************************\
392 |* openXwindow *|
393 \*******************************************************************************/
394 void openXwindow(int argc, char *argv[], char *pixmap_bytes[], char *pixmask_bits, int pixmask_width, int pixmask_height) {
396 unsigned int borderwidth = 1;
397 XClassHint classHint;
398 char *display_name = NULL;
399 char *wname = argv[0];
400 XTextProperty name;
402 XGCValues gcv;
403 unsigned long gcm;
405 char *geometry = NULL;
407 int dummy=0;
408 int i;
410 for (i=1; argv[i]; i++) {
411 if (!strcmp(argv[i], "-display"))
412 display_name = argv[++i];
413 else if (!strcmp(argv[i], "-geometry"))
414 geometry = argv[++i];
417 if (!(display = XOpenDisplay(display_name))) {
418 fprintf(stderr, "%s: can't open display %s\n",
419 wname, XDisplayName(display_name));
420 exit(1);
422 screen = DefaultScreen(display);
423 Root = RootWindow(display, screen);
424 d_depth = DefaultDepth(display, screen);
425 x_fd = XConnectionNumber(display);
427 /* Convert XPM to XImage */
428 GetXPM(&wmgen, pixmap_bytes);
430 /* Create a window to hold the stuff */
431 mysizehints.flags = USSize | USPosition;
432 mysizehints.x = 0;
433 mysizehints.y = 0;
435 back_pix = GetColor("white");
436 fore_pix = GetColor("black");
438 XWMGeometry(display, screen, geometry, NULL, borderwidth, &mysizehints,
439 &mysizehints.x, &mysizehints.y,&mysizehints.width,&mysizehints.height, &dummy);
441 mysizehints.width = 64;
442 mysizehints.height = 64;
444 win = XCreateSimpleWindow(display, Root, mysizehints.x, mysizehints.y,
445 mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix);
447 iconwin = XCreateSimpleWindow(display, win, mysizehints.x, mysizehints.y,
448 mysizehints.width, mysizehints.height, borderwidth, fore_pix, back_pix);
450 /* Activate hints */
451 XSetWMNormalHints(display, win, &mysizehints);
452 classHint.res_name = wname;
453 classHint.res_class = wname;
454 XSetClassHint(display, win, &classHint);
456 XSelectInput(display, win, ButtonPressMask | ExposureMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask);
457 XSelectInput(display, iconwin, ButtonPressMask | ExposureMask | ButtonReleaseMask | PointerMotionMask | StructureNotifyMask);
459 if (XStringListToTextProperty(&wname, 1, &name) == 0) {
460 fprintf(stderr, "%s: can't allocate window name\n", wname);
461 exit(1);
464 XSetWMName(display, win, &name);
466 /* Create GC for drawing */
468 gcm = GCForeground | GCBackground | GCGraphicsExposures;
469 gcv.foreground = fore_pix;
470 gcv.background = back_pix;
471 gcv.graphics_exposures = 0;
472 NormalGC = XCreateGC(display, Root, gcm, &gcv);
474 /* ONLYSHAPE ON */
476 pixmask = XCreateBitmapFromData(display, win, pixmask_bits, pixmask_width, pixmask_height);
478 XShapeCombineMask(display, win, ShapeBounding, 0, 0, pixmask, ShapeSet);
479 XShapeCombineMask(display, iconwin, ShapeBounding, 0, 0, pixmask, ShapeSet);
481 /* ONLYSHAPE OFF */
483 mywmhints.initial_state = WithdrawnState;
484 mywmhints.icon_window = iconwin;
485 mywmhints.icon_x = mysizehints.x;
486 mywmhints.icon_y = mysizehints.y;
487 mywmhints.window_group = win;
488 mywmhints.flags = StateHint | IconWindowHint | IconPositionHint | WindowGroupHint;
490 XSetWMHints(display, win, &mywmhints);
492 XSetCommand(display, win, argv, argc);
493 XMapWindow(display, win);