Fixed a few improper macro usages
[wmaker-crm.git] / src / client.c
blobfe9a64ae261984e774b9d53cfdd4b163dcb0693c
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "wconfig.h"
22 #include <X11/Xlib.h>
23 #include <X11/Xutil.h>
24 #include <X11/Xatom.h>
25 #ifdef USE_XSHAPE
26 #include <X11/extensions/shape.h>
27 #endif
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <string.h>
33 #include "WindowMaker.h"
34 #include "framewin.h"
35 #include "window.h"
36 #include "properties.h"
37 #include "actions.h"
38 #include "icon.h"
39 #include "client.h"
40 #include "colormap.h"
41 #include "stacking.h"
42 #include "appicon.h"
43 #include "appmenu.h"
44 #include "wmspec.h"
45 #include "misc.h"
49 *--------------------------------------------------------------------
50 * wClientRestore--
51 * Reparent the window back to the root window.
53 *--------------------------------------------------------------------
55 void wClientRestore(WWindow * wwin)
57 #if 0
58 int gx, gy;
60 wClientGetGravityOffsets(wwin, &gx, &gy);
61 /* set the position of the frame on screen */
62 wwin->frame_x -= gx * wwin->screen_ptr->frame_border_width;
63 wwin->frame_y -= gy * wwin->screen_ptr->frame_border_width;
64 /* if gravity is to the south, account for the border sizes */
65 if (gy > 0)
66 wwin->frame_y += (wwin->frame->top_width + wwin->frame->bottom_width);
67 #endif
68 XSetWindowBorderWidth(dpy, wwin->client_win, wwin->old_border_width);
69 XReparentWindow(dpy, wwin->client_win, wwin->screen_ptr->root_win, wwin->frame_x, wwin->frame_y);
71 /* don't let the window get iconified after restart */
73 if (wwin->flags.shaded)
74 wClientSetState(wwin, NormalState, None);
79 *----------------------------------------------------------------------
80 * wClientSetState--
81 * Set the state of the client window to one of the window
82 * states defined in ICCCM (Iconic, Withdrawn, Normal)
84 * Side effects:
85 * The WM_STATE property of the window is updated as well as the
86 * WWindow.state variable.
87 *----------------------------------------------------------------------
89 void wClientSetState(WWindow * wwin, int state, Window icon_win)
91 long data[2];
93 wwin->state = state;
95 data[0] = (unsigned long)state;
96 data[1] = (unsigned long)icon_win;
98 XChangeProperty(dpy, wwin->client_win, w_global.atom.wm.state,
99 w_global.atom.wm.state, 32, PropModeReplace,
100 (unsigned char *)data, 2);
103 void wClientGetGravityOffsets(WWindow * wwin, int *ofs_x, int *ofs_y)
105 switch (wwin->normal_hints->win_gravity) {
106 case ForgetGravity:
107 case CenterGravity:
108 case StaticGravity:
109 *ofs_x = 0;
110 *ofs_y = 0;
111 break;
112 case NorthWestGravity:
113 *ofs_x = -1;
114 *ofs_y = -1;
115 break;
116 case NorthGravity:
117 *ofs_x = 0;
118 *ofs_y = -1;
119 break;
120 case NorthEastGravity:
121 *ofs_x = 1;
122 *ofs_y = -1;
123 break;
124 case WestGravity:
125 *ofs_x = -1;
126 *ofs_y = 0;
127 break;
128 case EastGravity:
129 *ofs_x = 1;
130 *ofs_y = 0;
131 break;
132 case SouthWestGravity:
133 *ofs_x = -1;
134 *ofs_y = 1;
135 break;
136 case SouthGravity:
137 *ofs_x = 0;
138 *ofs_y = 1;
139 break;
140 case SouthEastGravity:
141 *ofs_x = 1;
142 *ofs_y = 1;
143 break;
147 void wClientConfigure(WWindow * wwin, XConfigureRequestEvent * xcre)
149 XWindowChanges xwc;
150 int nx, ny, nwidth, nheight;
151 int ofs_x, ofs_y;
153 /* printf("configure event: %d %d %d %d\n", xcre->x, xcre->y, xcre->width, xcre->height); */
155 if (wwin == NULL) {
157 * configure a window that was not mapped by us
159 xwc.x = xcre->x;
160 xwc.y = xcre->y;
161 xwc.width = xcre->width;
162 xwc.height = xcre->height;
163 xwc.border_width = xcre->border_width;
164 xwc.stack_mode = xcre->detail;
165 xwc.sibling = xcre->above;
166 XConfigureWindow(dpy, xcre->window, xcre->value_mask, &xwc);
167 return;
169 #ifdef USE_XSHAPE
170 if (w_global.xext.shape.supported) {
171 int junk;
172 unsigned int ujunk;
173 int b_shaped;
175 XShapeSelectInput(dpy, wwin->client_win, ShapeNotifyMask);
176 XShapeQueryExtents(dpy, wwin->client_win, &b_shaped, &junk, &junk,
177 &ujunk, &ujunk, &junk, &junk, &junk, &ujunk, &ujunk);
178 wwin->flags.shaped = b_shaped;
180 #endif
181 if (xcre->value_mask & CWStackMode) {
182 WObjDescriptor *desc;
183 WWindow *sibling;
185 if ((xcre->value_mask & CWSibling) &&
186 (XFindContext(dpy, xcre->above, w_global.context.client_win, (XPointer *) & desc) == XCSUCCESS)
187 && (desc->parent_type == WCLASS_WINDOW)) {
188 sibling = desc->parent;
189 xwc.sibling = sibling->frame->core->window;
190 } else {
191 xwc.sibling = xcre->above;
193 xwc.stack_mode = xcre->detail;
194 XConfigureWindow(dpy, wwin->frame->core->window,
195 xcre->value_mask & (CWSibling | CWStackMode), &xwc);
196 /* fix stacking order */
197 RemakeStackList(wwin->screen_ptr);
200 wClientGetGravityOffsets(wwin, &ofs_x, &ofs_y);
202 if (xcre->value_mask & CWBorderWidth) {
203 wwin->old_border_width = xcre->border_width;
206 if (!wwin->flags.shaded) {
207 /* If the window is shaded, wrong height will be set for the window */
208 if (xcre->value_mask & CWX) {
209 nx = xcre->x;
210 /* Subtracting the border makes the window shift by 1 pixel -Dan */
211 /*if (HAS_BORDER(wwin)) {
212 nx -= wwin->screen_ptr->frame_border_width;
213 } */
214 } else {
215 nx = wwin->frame_x;
218 if (xcre->value_mask & CWY) {
219 ny = xcre->y - ((ofs_y < 0) ? 0 : wwin->frame->top_width);
220 /* Subtracting the border makes the window shift by 1 pixel -Dan */
221 /*if (HAS_BORDER(wwin)) {
222 ny -= wwin->screen_ptr->frame_border_width;
223 } */
224 } else {
225 ny = wwin->frame_y;
228 if (xcre->value_mask & CWWidth)
229 nwidth = xcre->width;
230 else
231 nwidth = wwin->frame->core->width;
233 if (xcre->value_mask & CWHeight)
234 nheight = xcre->height;
235 else
236 nheight = wwin->frame->core->height - wwin->frame->top_width - wwin->frame->bottom_width;
238 /* Don't overwrite the saved geometry unnecessarily. */
239 if (!(xcre->value_mask & (CWX | CWY | CWWidth | CWHeight)))
240 return;
242 if (nwidth != wwin->old_geometry.width)
243 wwin->flags.maximized &= ~(MAX_HORIZONTAL | MAX_TOPHALF | MAX_BOTTOMHALF | MAX_MAXIMUS);
244 if (nheight != wwin->old_geometry.height)
245 wwin->flags.maximized &= ~(MAX_VERTICAL | MAX_LEFTHALF | MAX_RIGHTHALF | MAX_MAXIMUS);
247 wWindowConfigure(wwin, nx, ny, nwidth, nheight);
248 wwin->old_geometry.x = nx;
249 wwin->old_geometry.y = ny;
250 wwin->old_geometry.width = nwidth;
251 wwin->old_geometry.height = nheight;
255 void wClientSendProtocol(WWindow * wwin, Atom protocol, Time time)
257 XEvent event;
259 event.xclient.type = ClientMessage;
260 event.xclient.message_type = w_global.atom.wm.protocols;
261 event.xclient.format = 32;
262 event.xclient.display = dpy;
263 event.xclient.window = wwin->client_win;
264 event.xclient.data.l[0] = protocol;
265 event.xclient.data.l[1] = time;
266 event.xclient.data.l[2] = 0;
267 event.xclient.data.l[3] = 0;
268 XSendEvent(dpy, wwin->client_win, False, NoEventMask, &event);
269 XSync(dpy, False);
272 void wClientKill(WWindow * wwin)
274 XKillClient(dpy, wwin->client_win);
276 XFlush(dpy);
280 *----------------------------------------------------------------------
281 * wClientCheckProperty--
282 * Handles PropertyNotify'es, verifying which property was
283 * changed and updating internal state according to that, like redrawing
284 * the icon title when it is changed.
286 * Side effects:
287 * Depends on the changed property.
289 * TODO: _GNUSTEP_WM_ATTR
290 *----------------------------------------------------------------------
292 void wClientCheckProperty(WWindow * wwin, XPropertyEvent * event)
294 XWindowAttributes attribs;
295 XWMHints *new_hints;
296 int i, g1, g2;
297 char *tmp = NULL;
299 switch (event->atom) {
300 case XA_WM_NAME:
301 if (!wwin->flags.net_has_title) {
302 /* window title was changed */
303 if (!wFetchName(dpy, wwin->client_win, &tmp)) {
304 wWindowUpdateName(wwin, NULL);
305 } else {
306 wWindowUpdateName(wwin, tmp);
308 if (tmp)
309 XFree(tmp);
311 break;
313 case XA_WM_ICON_NAME:
314 /* Title has changed, update the icon title */
315 if (wwin->icon) {
316 wIconChangeTitle(wwin->icon, wwin);
317 wIconPaint(wwin->icon);
319 break;
321 case XA_WM_COMMAND:
322 if (wwin->main_window != None) {
323 WApplication *wapp = wApplicationOf(wwin->main_window);
324 char *command;
326 if (!wapp || !wapp->app_icon || wapp->app_icon->docked)
327 break;
329 command = GetCommandForWindow(wwin->main_window);
330 if (command) {
331 if (wapp->app_icon->command)
332 wfree(wapp->app_icon->command);
333 wapp->app_icon->command = command;
336 break;
338 case XA_WM_HINTS:
339 /* WM_HINTS */
341 new_hints = XGetWMHints(dpy, wwin->client_win);
343 /* group leader update
345 * This means that the window is setting the leader after
346 * it was mapped, changing leaders or removing the leader.
348 * Valid state transitions are:
350 * _1 __2
351 * / \ / \
352 * v | v |
353 * (GC) (GC')
354 * / ^ / ^
355 * 3| |4 5| |6
356 * | | | |
357 * v / v /
358 * (G'C) (G'C')
360 * Where G is the window_group hint, C is CLIENT_LEADER property
361 * and ' indicates the hint is unset.
363 * 1,2 - change group leader to new value of window_group
364 * 3 - change leader to value of CLIENT_LEADER
365 * 4 - change leader to value of window_group
366 * 5 - destroy application
367 * 6 - create application
369 if (new_hints && (new_hints->flags & WindowGroupHint)
370 && new_hints->window_group != None) {
371 g2 = 1;
372 } else {
373 g2 = 0;
375 if (wwin->wm_hints && (wwin->wm_hints->flags & WindowGroupHint)
376 && wwin->wm_hints->window_group != None) {
377 g1 = 1;
378 } else {
379 g1 = 0;
382 if (wwin->client_leader) {
383 if (g1 && g2 && wwin->wm_hints->window_group != new_hints->window_group) {
384 i = 1;
385 } else if (g1 && !g2) {
386 i = 3;
387 } else if (!g1 && g2) {
388 i = 4;
389 } else {
390 i = 0;
392 } else {
393 if (g1 && g2 && wwin->wm_hints->window_group != new_hints->window_group) {
394 i = 2;
395 } else if (g1 && !g2) {
396 i = 5;
397 } else if (!g1 && g2) {
398 i = 6;
399 } else {
400 i = 0;
404 /* Handling this may require more work. -Dan */
405 if (wwin->fake_group != NULL) {
406 i = 7;
409 if (wwin->wm_hints)
410 XFree(wwin->wm_hints);
412 wwin->wm_hints = new_hints;
414 /* do action according to state transition */
415 switch (i) {
416 /* 3 - change leader to value of CLIENT_LEADER */
417 case 3:
418 wApplicationDestroy(wApplicationOf(wwin->main_window));
419 wwin->main_window = wwin->client_leader;
420 wwin->group_id = None;
421 wApplicationCreate(wwin);
422 break;
424 /* 1,2,4 - change leader to new value of window_group */
425 case 1:
426 case 2:
427 case 4:
428 wApplicationDestroy(wApplicationOf(wwin->main_window));
429 wwin->main_window = new_hints->window_group;
430 wwin->group_id = wwin->main_window;
431 wApplicationCreate(wwin);
432 break;
434 /* 5 - destroy application */
435 case 5:
436 wApplicationDestroy(wApplicationOf(wwin->main_window));
437 wwin->main_window = None;
438 wwin->group_id = None;
439 break;
441 /* 6 - create application */
442 case 6:
443 wwin->main_window = new_hints->window_group;
444 wwin->group_id = wwin->main_window;
445 wApplicationCreate(wwin);
446 break;
447 /* 7 - we have a fake window group id, so just ignore anything else */
448 case 7:
449 break;
452 if (wwin->wm_hints) {
453 /* update icon */
454 if ((wwin->wm_hints->flags & IconPixmapHint)
455 || (wwin->wm_hints->flags & IconWindowHint)) {
456 WApplication *wapp;
458 if (wwin->flags.miniaturized && wwin->icon)
459 wIconUpdate(wwin->icon);
461 wapp = wApplicationOf(wwin->main_window);
462 if (wapp && wapp->app_icon) {
463 wIconUpdate(wapp->app_icon->icon);
464 wAppIconPaint(wapp->app_icon);
468 if (wwin->wm_hints->flags & UrgencyHint)
469 wwin->flags.urgent = 1;
470 else
471 wwin->flags.urgent = 0;
472 wAppBounceWhileUrgent(wApplicationOf(wwin->main_window));
473 /*} else if (wwin->fake_group!=NULL) {
474 wwin->group_id = wwin->fake_group->leader; */
475 } else {
476 wwin->group_id = None;
478 break;
480 case XA_WM_NORMAL_HINTS:
481 /* normal (geometry) hints */
483 int foo;
484 unsigned bar;
486 XGetWindowAttributes(dpy, wwin->client_win, &attribs);
487 wClientGetNormalHints(wwin, &attribs, False, &foo, &foo, &bar, &bar);
488 /* TODO: should we check for consistency of the current
489 * size against the new geometry hints? */
491 break;
493 case XA_WM_TRANSIENT_FOR:
495 Window new_owner;
496 WWindow *owner;
498 if (!XGetTransientForHint(dpy, wwin->client_win, &new_owner)) {
499 new_owner = None;
500 } else {
501 if (new_owner == 0 || new_owner == wwin->client_win) {
502 new_owner = wwin->screen_ptr->root_win;
505 if (new_owner != wwin->transient_for) {
506 owner = wWindowFor(wwin->transient_for);
507 if (owner) {
508 if (owner->flags.semi_focused) {
509 owner->flags.semi_focused = 0;
510 if ((owner->flags.mapped || owner->flags.shaded)
511 && owner->frame)
512 wFrameWindowPaint(owner->frame);
515 owner = wWindowFor(new_owner);
516 if (owner) {
517 if (!owner->flags.semi_focused) {
518 owner->flags.semi_focused = 1;
519 if ((owner->flags.mapped || owner->flags.shaded)
520 && owner->frame)
521 wFrameWindowPaint(owner->frame);
524 wwin->transient_for = new_owner;
525 if (new_owner == None) {
526 if (WFLAGP(wwin, no_miniaturizable)) {
527 WSETUFLAG(wwin, no_miniaturizable, 0);
528 WSETUFLAG(wwin, no_miniaturize_button, 0);
529 if (wwin->frame)
530 wWindowConfigureBorders(wwin);
532 } else if (!WFLAGP(wwin, no_miniaturizable)) {
533 WSETUFLAG(wwin, no_miniaturizable, 1);
534 WSETUFLAG(wwin, no_miniaturize_button, 1);
535 if (wwin->frame)
536 wWindowConfigureBorders(wwin);
540 break;
542 default:
543 if (event->atom == w_global.atom.wm.protocols) {
545 PropGetProtocols(wwin->client_win, &wwin->protocols);
547 WSETUFLAG(wwin, kill_close, !wwin->protocols.DELETE_WINDOW);
549 if (wwin->frame)
550 wWindowUpdateButtonImages(wwin);
552 } else if (event->atom == w_global.atom.wm.colormap_windows) {
554 GetColormapWindows(wwin);
555 wColormapInstallForWindow(wwin->screen_ptr, wwin);
557 } else if (event->atom == w_global.atom.wmaker.menu) {
558 WApplication *wapp;
560 wapp = wApplicationOf(wwin->main_window);
561 if (wapp) {
562 if (wapp->menu) {
563 /* update menu */
564 /* TODO: remake appmenu update */
565 wAppMenuDestroy(wapp->menu);
567 if (wwin->fake_group) {
568 WScreen *scr = wwin->screen_ptr;
569 WWindow *foo = scr->focused_window;
570 WFakeGroupLeader *fPtr = wwin->fake_group;
572 wApplicationDestroy(wapp);
573 while (foo) {
574 if (foo->fake_group && foo->fake_group == fPtr) {
575 WSETUFLAG(foo, shared_appicon, 0);
576 foo->fake_group = NULL;
577 if (foo->group_id != None)
578 foo->main_window = foo->group_id;
579 else if (foo->client_leader != None)
580 foo->main_window = foo->client_leader;
581 else if (WFLAGP(foo, emulate_appicon))
582 foo->main_window = foo->client_win;
583 else
584 foo->main_window = None;
585 if (foo->main_window) {
586 wapp = wApplicationCreate(foo);
589 foo = foo->prev;
592 if (fPtr->leader != None)
593 XDestroyWindow(dpy, fPtr->leader);
594 fPtr->retainCount = 0;
595 fPtr->leader = None;
596 fPtr->origLeader = None;
598 wapp = wApplicationOf(wwin->main_window);
599 if (wapp) {
600 wapp->menu = wAppMenuGet(scr, wwin->main_window);
602 if (wPreferences.auto_arrange_icons) {
603 wArrangeIcons(wwin->screen_ptr, True);
605 } else {
606 wapp->menu = wAppMenuGet(wwin->screen_ptr, wwin->main_window);
608 /* make the appmenu be mapped */
609 wSetFocusTo(wwin->screen_ptr, NULL);
610 wSetFocusTo(wwin->screen_ptr, wwin->screen_ptr->focused_window);
612 } else if (event->atom == w_global.atom.gnustep.wm_attr) {
613 GNUstepWMAttributes *attr;
615 PropGetGNUstepWMAttr(wwin->client_win, &attr);
617 wWindowUpdateGNUstepAttr(wwin, attr);
619 XFree(attr);
620 } else {
621 wNETWMCheckClientHintChange(wwin, event);
627 *----------------------------------------------------------------------
628 * wClientGetNormalHints--
629 * Get size (normal) hints and a default geometry for the client
630 * window. The hints are also checked for inconsistency. If geometry is
631 * True, the returned data will account for client specified initial
632 * geometry.
634 * Side effects:
635 * normal_hints is filled with valid data.
636 *----------------------------------------------------------------------
638 void
639 wClientGetNormalHints(WWindow * wwin, XWindowAttributes * wattribs, Bool geometry,
640 int *x, int *y, unsigned *width, unsigned *height)
642 int pre_icccm = 0; /* not used */
644 /* find a position for the window */
645 if (!wwin->normal_hints)
646 wwin->normal_hints = XAllocSizeHints();
648 if (!PropGetNormalHints(wwin->client_win, wwin->normal_hints, &pre_icccm)) {
649 wwin->normal_hints->flags = 0;
651 *x = wattribs->x;
652 *y = wattribs->y;
654 *width = wattribs->width;
655 *height = wattribs->height;
657 if (!(wwin->normal_hints->flags & PWinGravity)) {
658 wwin->normal_hints->win_gravity = NorthWestGravity;
660 if (!(wwin->normal_hints->flags & PMinSize)) {
661 wwin->normal_hints->min_width = MIN_WINDOW_SIZE;
662 wwin->normal_hints->min_height = MIN_WINDOW_SIZE;
664 if (!(wwin->normal_hints->flags & PBaseSize)) {
665 wwin->normal_hints->base_width = 0;
666 wwin->normal_hints->base_height = 0;
668 if (!(wwin->normal_hints->flags & PMaxSize)) {
669 wwin->normal_hints->max_width = wwin->screen_ptr->scr_width * 2;
670 wwin->normal_hints->max_height = wwin->screen_ptr->scr_height * 2;
673 /* some buggy apps set weird hints.. */
674 if (wwin->normal_hints->min_width <= 0)
675 wwin->normal_hints->min_width = MIN_WINDOW_SIZE;
677 if (wwin->normal_hints->min_height <= 0)
678 wwin->normal_hints->min_height = MIN_WINDOW_SIZE;
680 if (wwin->normal_hints->max_width < wwin->normal_hints->min_width)
681 wwin->normal_hints->max_width = wwin->normal_hints->min_width;
683 if (wwin->normal_hints->max_height < wwin->normal_hints->min_height)
684 wwin->normal_hints->max_height = wwin->normal_hints->min_height;
686 if (!(wwin->normal_hints->flags & PResizeInc)) {
687 wwin->normal_hints->width_inc = 1;
688 wwin->normal_hints->height_inc = 1;
689 } else {
690 if (wwin->normal_hints->width_inc <= 0)
691 wwin->normal_hints->width_inc = 1;
692 if (wwin->normal_hints->height_inc <= 0)
693 wwin->normal_hints->height_inc = 1;
696 if (wwin->normal_hints->flags & PAspect) {
697 if (wwin->normal_hints->min_aspect.x < 1)
698 wwin->normal_hints->min_aspect.x = 1;
699 if (wwin->normal_hints->min_aspect.y < 1)
700 wwin->normal_hints->min_aspect.y = 1;
702 if (wwin->normal_hints->max_aspect.x < 1)
703 wwin->normal_hints->max_aspect.x = 1;
704 if (wwin->normal_hints->max_aspect.y < 1)
705 wwin->normal_hints->max_aspect.y = 1;
708 if (wwin->normal_hints->min_height > wwin->normal_hints->max_height) {
709 wwin->normal_hints->min_height = wwin->normal_hints->max_height;
711 if (wwin->normal_hints->min_width > wwin->normal_hints->max_width) {
712 wwin->normal_hints->min_width = wwin->normal_hints->max_width;
714 #ifdef IGNORE_PPOSITION
715 wwin->normal_hints->flags &= ~PPosition;
716 #endif
718 if (pre_icccm && !wwin->screen_ptr->flags.startup && geometry) {
719 if (wwin->normal_hints->flags & (USPosition | PPosition)) {
720 *x = wwin->normal_hints->x;
721 *y = wwin->normal_hints->y;
723 if (wwin->normal_hints->flags & (USSize | PSize)) {
724 *width = wwin->normal_hints->width;
725 *height = wwin->normal_hints->height;
730 void GetColormapWindows(WWindow * wwin)
732 #ifndef NO_CRASHES
733 if (wwin->cmap_windows) {
734 XFree(wwin->cmap_windows);
737 wwin->cmap_windows = NULL;
738 wwin->cmap_window_no = 0;
740 if (!XGetWMColormapWindows(dpy, wwin->client_win, &(wwin->cmap_windows), &(wwin->cmap_window_no))
741 || !wwin->cmap_windows) {
742 wwin->cmap_window_no = 0;
743 wwin->cmap_windows = NULL;
745 #endif