2 Best viewed with vim5, using ts=4
4 wmgeneral was taken from wmppp.
6 It has a lot of routines which most of the wm* programs use.
8 ------------------------------------------------------------
10 Author: Martijn Pieterse (pieterse@xs4all.nl)
15 12/03/1999 (Wee Liang, wliang@tartarus.uwa.edu.au)
16 * Removed argument parsing from openXwindow
17 12/02/1999 (Wee Liang, wliang@tartarus.uwa.edu.au)
18 * Removed parse_rcfile and parse_rcfile2.
19 * Change RedrawWindowXY to RedrawWindowXYWH
20 * Minor modifications to openXwindow. Added execute
22 11/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
23 * Removed a bug from parse_rcfile. You could
24 not use "start" in a command if a label was
26 * Changed the needed geometry string.
27 We don't use window size, and don't support
29 03/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
31 02/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
32 * Added -geometry support (untested)
33 28/08/1998 (Martijn Pieterse, pieterse@xs4all.nl)
34 * Added createXBMfromXPM routine
35 * Saves a lot of work with changing xpm's.
36 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
37 * changed the read_rc_file to parse_rcfile, as suggested by Marcelo E. Magallon
38 * debugged the parse_rc file.
39 30/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
40 * Ripped similar code from all the wm* programs,
41 and put them in a single file.
55 #include <X11/extensions/shape.h>
57 #include "wmgeneral.h"
67 XSizeHints mysizehints
;
69 Pixel back_pix
, fore_pix
;
76 char *display_name
= NULL
;
77 char *geometry
= NULL
;
92 MOUSE_REGION mouse_region
[MAX_MOUSE_REGION
];
94 /***********************/
95 /* Function Prototypes */
96 /***********************/
98 static void GetXPM(XpmIcon
*, char **);
99 static Pixel
GetColor(char *);
100 void RedrawWindow(void);
101 void AddMouseRegion(int, int, int, int, int);
102 int CheckMouseRegion(int, int);
104 /*******************************************************************************\
106 \*******************************************************************************/
108 static void GetXPM(XpmIcon
*wmgen
, char *pixmap_bytes
[]) {
110 XWindowAttributes attributes
;
113 /* For the colormap */
114 XGetWindowAttributes(display
, Root
, &attributes
);
116 wmgen
->attributes
.valuemask
|= (XpmReturnPixels
| XpmReturnExtensions
);
118 err
= XpmCreatePixmapFromData(display
, Root
, pixmap_bytes
, &(wmgen
->pixmap
),
119 &(wmgen
->mask
), &(wmgen
->attributes
));
121 if (err
!= XpmSuccess
) {
122 fprintf(stderr
, "Not enough free colorcells.\n");
127 /*******************************************************************************\
129 \*******************************************************************************/
131 static Pixel
GetColor(char *name
) {
134 XWindowAttributes attributes
;
136 XGetWindowAttributes(display
, Root
, &attributes
);
139 if (!XParseColor(display
, attributes
.colormap
, name
, &color
)) {
140 fprintf(stderr
, "wm.app: can't parse %s.\n", name
);
141 } else if (!XAllocColor(display
, attributes
.colormap
, &color
)) {
142 fprintf(stderr
, "wm.app: can't allocate %s.\n", name
);
147 /*******************************************************************************\
149 \*******************************************************************************/
151 static int flush_expose(Window w
) {
156 while (XCheckTypedWindowEvent(display
, w
, Expose
, &dummy
))
162 /*******************************************************************************\
164 \*******************************************************************************/
166 void RedrawWindow(void) {
168 flush_expose(iconwin
);
169 XCopyArea(display
, wmgen
.pixmap
, iconwin
, NormalGC
,
170 0,0, wmgen
.attributes
.width
, wmgen
.attributes
.height
, 0,0);
172 XCopyArea(display
, wmgen
.pixmap
, win
, NormalGC
,
173 0,0, wmgen
.attributes
.width
, wmgen
.attributes
.height
, 0,0);
176 /*******************************************************************************\
177 |* RedrawWindowXYWH *|
178 \*******************************************************************************/
180 void RedrawWindowXYWH(int x
, int y
, int w
, int h
) {
182 flush_expose(iconwin
);
183 XCopyArea(display
, wmgen
.pixmap
, iconwin
, NormalGC
,
186 XCopyArea(display
, wmgen
.pixmap
, win
, NormalGC
,
190 /*******************************************************************************\
192 \*******************************************************************************/
194 void AddMouseRegion(int index
, int left
, int top
, int right
, int bottom
) {
196 if (index
< MAX_MOUSE_REGION
) {
197 mouse_region
[index
].enable
= 1;
198 mouse_region
[index
].top
= top
;
199 mouse_region
[index
].left
= left
;
200 mouse_region
[index
].bottom
= bottom
;
201 mouse_region
[index
].right
= right
;
205 /*******************************************************************************\
206 |* CheckMouseRegion *|
207 \*******************************************************************************/
209 int CheckMouseRegion(int x
, int y
) {
216 for (i
=0; i
<MAX_MOUSE_REGION
&& !found
; i
++) {
217 if (mouse_region
[i
].enable
&&
218 x
<= mouse_region
[i
].right
&&
219 x
>= mouse_region
[i
].left
&&
220 y
<= mouse_region
[i
].bottom
&&
221 y
>= mouse_region
[i
].top
)
224 if (!found
) return -1;
228 /*******************************************************************************\
229 |* createXBMfromXPM *|
230 \*******************************************************************************/
231 void createXBMfromXPM(char *xbm
, char **xpm
, int sx
, int sy
) {
234 int width
, height
, numcol
;
236 unsigned char bwrite
;
240 sscanf(*xpm
, "%d %d %d", &width
, &height
, &numcol
);
243 for (i
=numcol
+1; i
< numcol
+sy
+1; i
++) {
246 for (j
=0; j
<sx
; j
++) {
248 if (xpm
[i
][j
] != zero
) {
262 /*******************************************************************************\
264 \*******************************************************************************/
266 void copyXPMArea(int x
, int y
, int sx
, int sy
, int dx
, int dy
) {
268 XCopyArea(display
, wmgen
.pixmap
, wmgen
.pixmap
, NormalGC
, x
, y
, sx
, sy
, dx
, dy
);
272 /*******************************************************************************\
274 \*******************************************************************************/
276 void copyXBMArea(int x
, int y
, int sx
, int sy
, int dx
, int dy
) {
278 XCopyArea(display
, wmgen
.mask
, wmgen
.pixmap
, NormalGC
, x
, y
, sx
, sy
, dx
, dy
);
282 /*******************************************************************************\
284 \*******************************************************************************/
286 void setMaskXY(int x
, int y
) {
288 XShapeCombineMask(display
, win
, ShapeBounding
, x
, y
, pixmask
, ShapeSet
);
289 XShapeCombineMask(display
, iconwin
, ShapeBounding
, x
, y
, pixmask
, ShapeSet
);
292 /*******************************************************************************\
294 \*******************************************************************************/
295 void openXwindow(int argc
, char *argv
[], char *pixmap_bytes
[], char *pixmask_bits
, int pixmask_width
, int pixmask_height
) {
297 unsigned int borderwidth
= 1;
298 XClassHint classHint
;
299 char *wname
= argv
[0];
309 //XWindowAttributes winatr;
312 for (i=1; argv[i]; i++) {
313 if (!strcmp(argv[i], "-display")) {
314 display_name = argv[i+1];
317 if (!strcmp(argv[i], "-geometry")) {
318 geometry = argv[i+1];
321 if (!strcmp(argv[i], "-exe")) {
330 if (!(display
= XOpenDisplay(display_name
))) {
331 fprintf(stderr
, "%s: can't open display %s\n",
332 wname
, XDisplayName(display_name
));
336 screen
= DefaultScreen(display
);
337 Root
= RootWindow(display
, screen
);
338 d_depth
= DefaultDepth(display
, screen
);
339 x_fd
= XConnectionNumber(display
);
341 /* Convert XPM to XImage */
342 GetXPM(&wmgen
, pixmap_bytes
);
344 /* Create a window to hold the stuff */
345 mysizehints
.flags
= USSize
| USPosition
;
349 back_pix
= GetColor("white");
350 fore_pix
= GetColor("black");
352 XWMGeometry(display
, screen
, Geometry
, NULL
, borderwidth
, &mysizehints
,
353 &mysizehints
.x
, &mysizehints
.y
, &mysizehints
.width
, &mysizehints
.height
, &dummy
);
355 mysizehints
.width
= 64;
356 mysizehints
.height
= 64;
358 win
= XCreateSimpleWindow(display
, Root
, mysizehints
.x
, mysizehints
.y
,
359 mysizehints
.width
, mysizehints
.height
, borderwidth
, fore_pix
, back_pix
);
361 iconwin
= XCreateSimpleWindow(display
, win
, mysizehints
.x
, mysizehints
.y
,
362 mysizehints
.width
, mysizehints
.height
, borderwidth
, fore_pix
, back_pix
);
365 XSetWMNormalHints(display
, win
, &mysizehints
);
366 classHint
.res_name
= wname
;
367 classHint
.res_class
= wname
;
368 XSetClassHint(display
, win
, &classHint
);
370 XSelectInput(display
, win
, ButtonPressMask
| ExposureMask
| ButtonReleaseMask
| PointerMotionMask
| StructureNotifyMask
| VisibilityChangeMask
);
371 XSelectInput(display
, iconwin
, ButtonPressMask
| ExposureMask
| ButtonReleaseMask
| PointerMotionMask
| StructureNotifyMask
| VisibilityChangeMask
);
373 if (XStringListToTextProperty(&wname
, 1, &name
) == 0) {
374 fprintf(stderr
, "%s: can't allocate window name\n", wname
);
378 XSetWMName(display
, win
, &name
);
380 /* Create GC for drawing */
382 gcm
= GCForeground
| GCBackground
| GCGraphicsExposures
;
383 gcv
.foreground
= fore_pix
;
384 gcv
.background
= back_pix
;
385 gcv
.graphics_exposures
= 0;
386 NormalGC
= XCreateGC(display
, Root
, gcm
, &gcv
);
390 pixmask
= XCreateBitmapFromData(display
, win
, pixmask_bits
, pixmask_width
, pixmask_height
);
392 XShapeCombineMask(display
, win
, ShapeBounding
, 0, 0, pixmask
, ShapeSet
);
393 XShapeCombineMask(display
, iconwin
, ShapeBounding
, 0, 0, pixmask
, ShapeSet
);
397 mywmhints
.initial_state
= WithdrawnState
;
398 mywmhints
.icon_window
= iconwin
;
399 mywmhints
.icon_x
= mysizehints
.x
;
400 mywmhints
.icon_y
= mysizehints
.y
;
401 mywmhints
.window_group
= win
;
402 mywmhints
.flags
= StateHint
| IconWindowHint
| IconPositionHint
| WindowGroupHint
;
403 XSetWMHints(display
, win
, &mywmhints
);
405 XSetCommand(display
, win
, argv
, argc
);
406 XMapWindow(display
, win
);
408 // XGetWindowAttributes(display, iconwin, &winatr);
409 // XTranslateCoordinates(display, iconwin, winatr.root, -winatr.border_width, - winatr.border_width,
410 // &rx, &ry, &junkwin);
413 if (sscanf(geometry
, "+%d+%d", &wx
, &wy
) != 2) {
414 fprintf(stderr
, "Bad geometry string.\n");
417 XMoveWindow(display
, win
, wx
, wy
);