Update for 0.51.2-pre2
[wmaker-crm.git] / src / actions.c
blob5c584919e7c1165740e09d3b9d5735ec6778c68d
1 /* action.c- misc. window commands (miniaturize, hide etc.)
2 *
3 * Window Maker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
23 #include "wconfig.h"
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <unistd.h>
31 #include <math.h>
32 #include <time.h>
34 #include "WindowMaker.h"
35 #include "wcore.h"
36 #include "framewin.h"
37 #include "window.h"
38 #include "client.h"
39 #include "icon.h"
40 #include "funcs.h"
41 #include "application.h"
42 #include "actions.h"
43 #include "stacking.h"
44 #include "appicon.h"
45 #include "dock.h"
46 #include "appmenu.h"
47 #include "winspector.h"
48 #include "list.h"
49 #include "workspace.h"
51 #ifdef GNOME_STUFF
52 # include "gnome.h"
53 #endif
54 #ifdef KWM_HINTS
55 # include "kwm.h"
56 #endif
58 #ifdef WMSOUND
59 #include "wmsound.h"
60 #endif
63 /****** Global Variables ******/
64 extern Time LastTimestamp;
65 extern Time LastFocusChange;
67 extern Cursor wCursor[WCUR_LAST];
69 extern WPreferences wPreferences;
71 extern Atom _XA_WM_TAKE_FOCUS;
74 /******* Local Variables *******/
75 static struct {
76 int steps;
77 int delay;
78 } shadePars[5] = {
79 {SHADE_STEPS_UF, SHADE_DELAY_UF},
80 {SHADE_STEPS_F, SHADE_DELAY_F},
81 {SHADE_STEPS_M, SHADE_DELAY_M},
82 {SHADE_STEPS_S, SHADE_DELAY_S},
83 {SHADE_STEPS_U, SHADE_DELAY_U}};
85 #define SHADE_STEPS shadePars[(int)wPreferences.shade_speed].steps
86 #define SHADE_DELAY shadePars[(int)wPreferences.shade_speed].delay
89 static int ignoreTimestamp=0;
92 #ifdef ANIMATIONS
93 static void
94 processEvents(int event_count)
96 XEvent event;
99 * This is a hack. When animations are enabled, processing of
100 * events ocurred during a animation are delayed until it's end.
101 * Calls that consider the TimeStamp, like XSetInputFocus(), will
102 * fail because the TimeStamp is too old. Then, for example, if
103 * the user changes window focus while a miniaturize animation is
104 * in course, the window will not get focus properly after the end
105 * of the animation. This tries to workaround it by passing CurrentTime
106 * as the TimeStamp for XSetInputFocus() for all events ocurred during
107 * the animation.
109 ignoreTimestamp=1;
110 while (XPending(dpy) && event_count--) {
111 WMNextEvent(dpy, &event);
112 WMHandleEvent(&event);
114 ignoreTimestamp=0;
116 #endif /* ANIMATIONS */
121 *----------------------------------------------------------------------
122 * wSetFocusTo--
123 * Changes the window focus to the one passed as argument.
124 * If the window to focus is not already focused, it will be brought
125 * to the head of the list of windows. Previously focused window is
126 * unfocused.
128 * Side effects:
129 * Window list may be reordered and the window focus is changed.
131 *----------------------------------------------------------------------
133 void
134 wSetFocusTo(WScreen *scr, WWindow *wwin)
136 WWindow *focused=scr->focused_window;
137 int timestamp=LastTimestamp;
138 WApplication *oapp=NULL, *napp=NULL;
139 int wasfocused;
141 LastFocusChange = timestamp;
144 * This is a hack, because XSetInputFocus() should have a proper
145 * timestamp instead of CurrentTime but it seems that some times
146 * clients will not receive focus properly that way.
147 if (ignoreTimestamp)
149 timestamp = CurrentTime;
151 if (focused)
152 oapp = wApplicationOf(focused->main_window);
154 if (wwin == NULL) {
155 XSetInputFocus(dpy, scr->no_focus_win, RevertToParent, timestamp);
156 if (focused) {
157 wWindowUnfocus(focused);
159 if (oapp) {
160 wAppMenuUnmap(oapp->menu);
161 #ifdef NEWAPPICON
162 wApplicationDeactivate(oapp);
163 #endif
165 #ifdef KWM_HINTS
166 wKWMUpdateActiveWindowHint(scr);
167 wKWMSendEventMessage(NULL, WKWMFocusWindow);
168 #endif
169 return;
171 wasfocused = wwin->flags.focused;
172 napp = wApplicationOf(wwin->main_window);
174 /* remember last workspace where the app has been */
175 if (napp)
176 napp->last_workspace = wwin->screen_ptr->current_workspace;
178 if (wwin->flags.mapped && !WFLAGP(wwin, no_focusable)) {
179 /* install colormap if colormap mode is lock mode */
180 if (wPreferences.colormap_mode==WKF_CLICK)
181 wColormapInstallForWindow(scr, wwin);
183 /* set input focus */
184 switch (wwin->focus_mode) {
185 case WFM_NO_INPUT:
186 XSetInputFocus(dpy, scr->no_focus_win, RevertToParent, timestamp);
187 break;
189 case WFM_PASSIVE:
190 case WFM_LOCALLY_ACTIVE:
191 XSetInputFocus(dpy, wwin->client_win, RevertToParent, timestamp);
192 break;
194 case WFM_GLOBALLY_ACTIVE:
195 break;
197 XFlush(dpy);
198 if (wwin->protocols.TAKE_FOCUS) {
199 wClientSendProtocol(wwin, _XA_WM_TAKE_FOCUS, timestamp);
201 XSync(dpy, False);
202 } else {
203 XSetInputFocus(dpy, scr->no_focus_win, RevertToParent, timestamp);
206 if (WFLAGP(wwin, no_focusable))
207 return;
209 /* if this is not the focused window focus it */
210 if (focused!=wwin) {
211 /* change the focus window list order */
212 if (wwin->prev)
213 wwin->prev->next = wwin->next;
215 if (wwin->next)
216 wwin->next->prev = wwin->prev;
218 wwin->prev = focused;
219 focused->next = wwin;
220 wwin->next = NULL;
221 scr->focused_window = wwin;
223 if (oapp && oapp != napp) {
224 wAppMenuUnmap(oapp->menu);
225 #ifdef NEWAPPICON
226 wApplicationDeactivate(oapp);
227 #endif
231 wWindowFocus(wwin, focused);
233 if (napp && !wasfocused) {
234 wAppMenuMap(napp->menu, wwin);
235 #ifdef NEWAPPICON
236 wApplicationActivate(napp);
237 #endif
239 #ifdef KWM_HINTS
240 wKWMUpdateActiveWindowHint(scr);
241 wKWMSendEventMessage(wwin, WKWMFocusWindow);
242 #endif
243 XFlush(dpy);
247 void
248 wShadeWindow(WWindow *wwin)
250 time_t time0 = time(NULL);
251 #ifdef ANIMATIONS
252 int y, s, w, h;
253 #endif
255 if (wwin->flags.shaded)
256 return;
258 XLowerWindow(dpy, wwin->client_win);
260 #ifdef WMSOUND
261 wSoundPlay(WMSOUND_SHADE);
262 #endif
264 #ifdef ANIMATIONS
265 if (!wwin->screen_ptr->flags.startup && !wwin->flags.skip_next_animation
266 && !wPreferences.no_animations) {
267 /* do the shading animation */
268 h = wwin->frame->core->height;
269 s = h/SHADE_STEPS;
270 if (s < 1) s=1;
271 w = wwin->frame->core->width;
272 y = wwin->frame->top_width;
273 while (h>wwin->frame->top_width+1) {
274 XMoveWindow(dpy, wwin->client_win, 0, y);
275 XResizeWindow(dpy, wwin->frame->core->window, w, h);
276 XFlush(dpy);
278 if (time(NULL)-time0 > MAX_ANIMATION_TIME)
279 break;
281 if (SHADE_DELAY > 0)
282 wusleep(SHADE_DELAY*1000L);
283 h-=s;
284 y-=s;
286 XMoveWindow(dpy, wwin->client_win, 0, wwin->frame->top_width);
288 #endif /* ANIMATIONS */
290 wwin->flags.skip_next_animation = 0;
291 wwin->flags.shaded = 1;
292 wwin->flags.mapped = 0;
293 /* prevent window withdrawal when getting UnmapNotify */
294 XSelectInput(dpy, wwin->client_win,
295 wwin->event_mask & ~StructureNotifyMask);
296 XUnmapWindow(dpy, wwin->client_win);
297 XSelectInput(dpy, wwin->client_win, wwin->event_mask);
299 /* for the client it's just like iconification */
300 wFrameWindowResize(wwin->frame, wwin->frame->core->width,
301 wwin->frame->top_width - 1);
303 wwin->client.y = wwin->frame_y - wwin->client.height
304 + wwin->frame->top_width;
305 wWindowSynthConfigureNotify(wwin);
308 wClientSetState(wwin, IconicState, None);
311 #ifdef GNOME_STUFF
312 wGNOMEUpdateClientStateHint(wwin, False);
313 #endif
314 #ifdef KWM_HINTS
315 wKWMUpdateClientStateHint(wwin, KWMIconifiedFlag);
316 wKWMSendEventMessage(wwin, WKWMChangedClient);
317 #endif
318 /* update window list to reflect shaded state */
319 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
321 #ifdef ANIMATIONS
322 if (!wwin->screen_ptr->flags.startup) {
323 /* Look at processEvents() for reason of this code. */
324 XSync(dpy, 0);
325 processEvents(XPending(dpy));
327 #endif
331 void
332 wUnshadeWindow(WWindow *wwin)
334 time_t time0 = time(NULL);
335 #ifdef ANIMATIONS
336 int y, s, w, h;
337 #endif /* ANIMATIONS */
340 if (!wwin->flags.shaded)
341 return;
343 wwin->flags.shaded = 0;
344 wwin->flags.mapped = 1;
345 XMapWindow(dpy, wwin->client_win);
347 #ifdef WMSOUND
348 wSoundPlay(WMSOUND_UNSHADE);
349 #endif
351 #ifdef ANIMATIONS
352 if (!wPreferences.no_animations && !wwin->flags.skip_next_animation) {
353 /* do the shading animation */
354 h = wwin->frame->top_width + wwin->frame->bottom_width;
355 y = wwin->frame->top_width - wwin->client.height;
356 s = abs(y)/SHADE_STEPS;
357 if (s<1) s=1;
358 w = wwin->frame->core->width;
359 XMoveWindow(dpy, wwin->client_win, 0, y);
360 if (s>0) {
361 while (h < wwin->client.height + wwin->frame->top_width
362 + wwin->frame->bottom_width) {
363 XResizeWindow(dpy, wwin->frame->core->window, w, h);
364 XMoveWindow(dpy, wwin->client_win, 0, y);
365 XSync(dpy, 0);
366 if (SHADE_DELAY > 0)
367 wusleep(SHADE_DELAY*2000L/3);
368 h+=s;
369 y+=s;
371 if (time(NULL)-time0 > MAX_ANIMATION_TIME)
372 break;
375 XMoveWindow(dpy, wwin->client_win, 0, wwin->frame->top_width);
377 #endif /* ANIMATIONS */
379 wwin->flags.skip_next_animation = 0;
380 wFrameWindowResize(wwin->frame, wwin->frame->core->width,
381 wwin->frame->top_width + wwin->client.height
382 + wwin->frame->bottom_width);
384 wwin->client.y = wwin->frame_y + wwin->frame->top_width;
385 wWindowSynthConfigureNotify(wwin);
388 wClientSetState(wwin, NormalState, None);
390 /* if the window is focused, set the focus again as it was disabled during
391 * shading */
392 if (wwin->flags.focused)
393 wSetFocusTo(wwin->screen_ptr, wwin);
395 #ifdef GNOME_STUFF
396 wGNOMEUpdateClientStateHint(wwin, False);
397 #endif
398 #ifdef KWM_HINTS
399 wKWMUpdateClientStateHint(wwin, KWMIconifiedFlag);
400 wKWMSendEventMessage(wwin, WKWMChangedClient);
401 #endif
403 /* update window list to reflect unshaded state */
404 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
409 void
410 wMaximizeWindow(WWindow *wwin, int directions)
412 int new_width, new_height, new_x, new_y;
413 WArea usableArea = wwin->screen_ptr->totalUsableArea;
416 if (WFLAGP(wwin, no_resizable))
417 return;
420 if (WFLAGP(wwin, full_maximize)) {
421 usableArea.x1 = 0;
422 usableArea.y1 = 0;
423 usableArea.x2 = wwin->screen_ptr->scr_width;
424 usableArea.y2 = wwin->screen_ptr->scr_height;
427 if (wwin->flags.shaded) {
428 wwin->flags.skip_next_animation = 1;
429 wUnshadeWindow(wwin);
431 wwin->flags.maximized = directions;
432 wwin->old_geometry.width = wwin->client.width;
433 wwin->old_geometry.height = wwin->client.height;
434 wwin->old_geometry.x = wwin->frame_x;
435 wwin->old_geometry.y = wwin->frame_y;
437 #ifdef KWM_HINTS
438 wKWMUpdateClientGeometryRestore(wwin);
439 #endif
441 if (directions & MAX_HORIZONTAL) {
443 new_width = (usableArea.x2-usableArea.x1)-FRAME_BORDER_WIDTH*2;
444 new_x = usableArea.x1;
446 } else {
448 new_x = wwin->frame_x;
449 new_width = wwin->frame->core->width;
453 if (directions & MAX_VERTICAL) {
455 new_height = (usableArea.y2-usableArea.y1)-FRAME_BORDER_WIDTH*2;
456 new_y = usableArea.y1;
457 if (WFLAGP(wwin, full_maximize))
458 new_y -= wwin->frame->top_width;
460 } else {
462 new_y = wwin->frame_y;
463 new_height = wwin->frame->core->height;
467 if (!WFLAGP(wwin, full_maximize)) {
468 new_height -= wwin->frame->top_width+wwin->frame->bottom_width;
471 wWindowConstrainSize(wwin, &new_width, &new_height);
472 wWindowConfigure(wwin, new_x, new_y, new_width, new_height);
474 #ifdef GNOME_STUFF
475 wGNOMEUpdateClientStateHint(wwin, False);
476 #endif
477 #ifdef KWM_HINTS
478 wKWMUpdateClientStateHint(wwin, KWMMaximizedFlag);
479 wKWMSendEventMessage(wwin, WKWMChangedClient);
480 #endif
482 #ifdef WMSOUND
483 wSoundPlay(WMSOUND_MAXIMIZE);
484 #endif
488 void
489 wUnmaximizeWindow(WWindow *wwin)
491 int restore_x, restore_y;
493 if (!wwin->flags.maximized)
494 return;
496 if (wwin->flags.shaded) {
497 wwin->flags.skip_next_animation = 1;
498 wUnshadeWindow(wwin);
500 restore_x = (wwin->flags.maximized & MAX_HORIZONTAL) ?
501 wwin->old_geometry.x : wwin->frame_x;
502 restore_y = (wwin->flags.maximized & MAX_VERTICAL) ?
503 wwin->old_geometry.y : wwin->frame_y;
504 wwin->flags.maximized = 0;
505 wWindowConfigure(wwin, restore_x, restore_y,
506 wwin->old_geometry.width, wwin->old_geometry.height);
508 #ifdef GNOME_STUFF
509 wGNOMEUpdateClientStateHint(wwin, False);
510 #endif
511 #ifdef KWM_HINTS
512 wKWMUpdateClientStateHint(wwin, KWMMaximizedFlag);
513 wKWMSendEventMessage(wwin, WKWMChangedClient);
514 #endif
516 #ifdef WMSOUND
517 wSoundPlay(WMSOUND_UNMAXIMIZE);
518 #endif
521 #ifdef ANIMATIONS
522 static void
523 animateResizeFlip(WScreen *scr, int x, int y, int w, int h,
524 int fx, int fy, int fw, int fh, int steps)
526 #define FRAMES (MINIATURIZE_ANIMATION_FRAMES_F)
527 float cx, cy, cw, ch;
528 float xstep, ystep, wstep, hstep;
529 XPoint points[5];
530 float dx, dch, midy;
531 float angle, final_angle, delta;
533 xstep = (float)(fx-x)/steps;
534 ystep = (float)(fy-y)/steps;
535 wstep = (float)(fw-w)/steps;
536 hstep = (float)(fh-h)/steps;
538 cx = (float)x;
539 cy = (float)y;
540 cw = (float)w;
541 ch = (float)h;
543 final_angle = 2*WM_PI*MINIATURIZE_ANIMATION_TWIST_F;
544 delta = (float)(final_angle/FRAMES);
545 for (angle=0;; angle+=delta) {
546 if (angle > final_angle)
547 angle = final_angle;
549 dx = (cw/10) - ((cw/5) * sin(angle));
550 dch = (ch/2) * cos(angle);
551 midy = cy + (ch/2);
553 points[0].x = cx + dx; points[0].y = midy - dch;
554 points[1].x = cx + cw - dx; points[1].y = points[0].y;
555 points[2].x = cx + cw + dx; points[2].y = midy + dch;
556 points[3].x = cx - dx; points[3].y = points[2].y;
557 points[4].x = points[0].x; points[4].y = points[0].y;
559 XGrabServer(dpy);
560 XDrawLines(dpy,scr->root_win,scr->frame_gc,points, 5, CoordModeOrigin);
561 XFlush(dpy);
562 #if (MINIATURIZE_ANIMATION_DELAY_F > 0)
563 wusleep(MINIATURIZE_ANIMATION_DELAY_F);
564 #endif
566 XDrawLines(dpy,scr->root_win,scr->frame_gc,points, 5, CoordModeOrigin);
567 XUngrabServer(dpy);
568 cx+=xstep;
569 cy+=ystep;
570 cw+=wstep;
571 ch+=hstep;
572 if (angle >= final_angle)
573 break;
576 XFlush(dpy);
578 #undef FRAMES
581 static void
582 animateResizeTwist(WScreen *scr, int x, int y, int w, int h,
583 int fx, int fy, int fw, int fh, int steps)
585 #define FRAMES (MINIATURIZE_ANIMATION_FRAMES_T)
586 float cx, cy, cw, ch;
587 float xstep, ystep, wstep, hstep;
588 XPoint points[5];
589 float angle, final_angle, a, d, delta;
591 x += w/2;
592 y += h/2;
593 fx += fw/2;
594 fy += fh/2;
596 xstep = (float)(fx-x)/steps;
597 ystep = (float)(fy-y)/steps;
598 wstep = (float)(fw-w)/steps;
599 hstep = (float)(fh-h)/steps;
601 cx = (float)x;
602 cy = (float)y;
603 cw = (float)w;
604 ch = (float)h;
606 final_angle = 2*WM_PI*MINIATURIZE_ANIMATION_TWIST_T;
607 delta = (float)(final_angle/FRAMES);
608 for (angle=0;; angle+=delta) {
609 if (angle > final_angle)
610 angle = final_angle;
612 a = atan(ch/cw);
613 d = sqrt((cw/2)*(cw/2)+(ch/2)*(ch/2));
615 points[0].x = cx+cos(angle-a)*d;
616 points[0].y = cy+sin(angle-a)*d;
617 points[1].x = cx+cos(angle+a)*d;
618 points[1].y = cy+sin(angle+a)*d;
619 points[2].x = cx+cos(angle-a+WM_PI)*d;
620 points[2].y = cy+sin(angle-a+WM_PI)*d;
621 points[3].x = cx+cos(angle+a+WM_PI)*d;
622 points[3].y = cy+sin(angle+a+WM_PI)*d;
623 points[4].x = cx+cos(angle-a)*d;
624 points[4].y = cy+sin(angle-a)*d;
625 XGrabServer(dpy);
626 XDrawLines(dpy, scr->root_win, scr->frame_gc, points, 5, CoordModeOrigin);
627 XFlush(dpy);
628 #if (MINIATURIZE_ANIMATION_DELAY_T > 0)
629 wusleep(MINIATURIZE_ANIMATION_DELAY_T);
630 #endif
632 XDrawLines(dpy, scr->root_win, scr->frame_gc, points, 5, CoordModeOrigin);
633 XUngrabServer(dpy);
634 cx+=xstep;
635 cy+=ystep;
636 cw+=wstep;
637 ch+=hstep;
638 if (angle >= final_angle)
639 break;
642 XFlush(dpy);
644 #undef FRAMES
647 static void
648 animateResizeZoom(WScreen *scr, int x, int y, int w, int h,
649 int fx, int fy, int fw, int fh, int steps)
651 #define FRAMES (MINIATURIZE_ANIMATION_FRAMES_Z)
652 float cx[FRAMES], cy[FRAMES], cw[FRAMES], ch[FRAMES];
653 float xstep, ystep, wstep, hstep;
654 int i, j;
656 xstep = (float)(fx-x)/steps;
657 ystep = (float)(fy-y)/steps;
658 wstep = (float)(fw-w)/steps;
659 hstep = (float)(fh-h)/steps;
661 for (j=0; j<FRAMES; j++) {
662 cx[j] = (float)x;
663 cy[j] = (float)y;
664 cw[j] = (float)w;
665 ch[j] = (float)h;
667 XGrabServer(dpy);
668 for (i=0; i<steps; i++) {
669 for (j=0; j<FRAMES; j++) {
670 XDrawRectangle(dpy, scr->root_win, scr->frame_gc,
671 (int)cx[j], (int)cy[j], (int)cw[j], (int)ch[j]);
673 XFlush(dpy);
674 #if (MINIATURIZE_ANIMATION_DELAY_Z > 0)
675 wusleep(MINIATURIZE_ANIMATION_DELAY_Z);
676 #endif
677 for (j=0; j<FRAMES; j++) {
678 XDrawRectangle(dpy, scr->root_win, scr->frame_gc,
679 (int)cx[j], (int)cy[j], (int)cw[j], (int)ch[j]);
680 if (j<FRAMES-1) {
681 cx[j]=cx[j+1];
682 cy[j]=cy[j+1];
683 cw[j]=cw[j+1];
684 ch[j]=ch[j+1];
685 } else {
686 cx[j]+=xstep;
687 cy[j]+=ystep;
688 cw[j]+=wstep;
689 ch[j]+=hstep;
694 for (j=0; j<FRAMES; j++) {
695 XDrawRectangle(dpy, scr->root_win, scr->frame_gc,
696 (int)cx[j], (int)cy[j], (int)cw[j], (int)ch[j]);
698 XFlush(dpy);
699 #if (MINIATURIZE_ANIMATION_DELAY_Z > 0)
700 wusleep(MINIATURIZE_ANIMATION_DELAY_Z);
701 #endif
702 for (j=0; j<FRAMES; j++) {
703 XDrawRectangle(dpy, scr->root_win, scr->frame_gc,
704 (int)cx[j], (int)cy[j], (int)cw[j], (int)ch[j]);
707 XUngrabServer(dpy);
709 #undef FRAMES
712 static void
713 animateResize(WScreen *scr, int x, int y, int w, int h,
714 int fx, int fy, int fw, int fh, int hiding)
716 int style = wPreferences.iconification_style; /* Catch the value */
717 int steps, k;
719 if (style == WIS_NONE)
720 return;
722 if (style == WIS_RANDOM) {
723 style = rand()%3;
726 k = (hiding ? 2 : 3);
727 switch(style) {
728 case WIS_TWIST:
729 steps = (MINIATURIZE_ANIMATION_STEPS_T * k)/3;
730 if (steps>0)
731 animateResizeTwist(scr, x, y, w, h, fx, fy, fw, fh, steps);
732 break;
733 case WIS_FLIP:
734 steps = (MINIATURIZE_ANIMATION_STEPS_F * k)/3;
735 if (steps>0)
736 animateResizeFlip(scr, x, y, w, h, fx, fy, fw, fh, steps);
737 break;
738 case WIS_ZOOM:
739 default:
740 steps = (MINIATURIZE_ANIMATION_STEPS_Z * k)/3;
741 if (steps>0)
742 animateResizeZoom(scr, x, y, w, h, fx, fy, fw, fh, steps);
743 break;
746 #endif /* ANIMATIONS */
749 static void
750 flushExpose()
752 XEvent tmpev;
754 while (XCheckTypedEvent(dpy, Expose, &tmpev))
755 WMHandleEvent(&tmpev);
756 XSync(dpy, 0);
759 static void
760 unmapTransientsFor(WWindow *wwin)
762 WWindow *tmp;
765 tmp = wwin->screen_ptr->focused_window;
766 while (tmp) {
767 /* unmap the transients for this transient */
768 if (tmp!=wwin && tmp->transient_for == wwin->client_win
769 && (tmp->flags.mapped || wwin->screen_ptr->flags.startup
770 || tmp->flags.shaded)) {
771 unmapTransientsFor(tmp);
772 tmp->flags.miniaturized = 1;
773 if (!tmp->flags.shaded) {
774 wWindowUnmap(tmp);
775 } else {
776 XUnmapWindow(dpy, tmp->frame->core->window);
779 if (!tmp->flags.shaded)
781 wClientSetState(tmp, IconicState, None);
782 #ifdef KWM_HINTS
783 wKWMUpdateClientStateHint(tmp, KWMIconifiedFlag);
784 wKWMSendEventMessage(tmp, WKWMRemoveWindow);
785 tmp->flags.kwm_hidden_for_modules = 1;
786 #endif
788 UpdateSwitchMenu(wwin->screen_ptr, tmp, ACTION_CHANGE_STATE);
791 tmp = tmp->prev;
796 static void
797 mapTransientsFor(WWindow *wwin)
799 WWindow *tmp;
801 tmp = wwin->screen_ptr->focused_window;
802 while (tmp) {
803 /* recursively map the transients for this transient */
804 if (tmp!=wwin && tmp->transient_for == wwin->client_win
805 && /*!tmp->flags.mapped*/ tmp->flags.miniaturized
806 && tmp->icon==NULL) {
807 mapTransientsFor(tmp);
808 tmp->flags.miniaturized = 0;
809 if (!tmp->flags.shaded) {
810 wWindowMap(tmp);
811 } else {
812 XMapWindow(dpy, tmp->frame->core->window);
814 tmp->flags.semi_focused = 0;
816 if (!tmp->flags.shaded)
818 wClientSetState(tmp, NormalState, None);
819 #ifdef KWM_HINTS
820 wKWMUpdateClientStateHint(tmp, KWMIconifiedFlag);
821 if (tmp->flags.kwm_hidden_for_modules) {
822 wKWMSendEventMessage(tmp, WKWMAddWindow);
823 tmp->flags.kwm_hidden_for_modules = 0;
825 #endif
827 UpdateSwitchMenu(wwin->screen_ptr, tmp, ACTION_CHANGE_STATE);
830 tmp = tmp->prev;
834 #if 0
835 static void
836 setupIconGrabs(WIcon *icon)
838 /* setup passive grabs on the icon */
839 XGrabButton(dpy, Button1, AnyModifier, icon->core->window, True,
840 ButtonPressMask, GrabModeSync, GrabModeAsync, None, None);
841 XGrabButton(dpy, Button2, AnyModifier, icon->core->window, True,
842 ButtonPressMask, GrabModeSync, GrabModeAsync, None, None);
843 XGrabButton(dpy, Button3, AnyModifier, icon->core->window, True,
844 ButtonPressMask, GrabModeSync, GrabModeAsync, None, None);
845 XSync(dpy, 0);
847 #endif
849 static WWindow*
850 recursiveTransientFor(WWindow *wwin)
852 int i;
854 if (!wwin)
855 return None;
857 /* hackish way to detect transient_for cycle */
858 i = wwin->screen_ptr->window_count+1;
860 while (wwin && wwin->transient_for != None && i>0) {
861 wwin = wWindowFor(wwin->transient_for);
862 i--;
864 if (i==0 && wwin) {
865 wwarning("%s has a severely broken WM_TRANSIENT_FOR hint.",
866 wwin->frame->title);
867 return NULL;
870 return wwin;
873 #if 0
874 static void
875 removeIconGrabs(WIcon *icon)
877 /* remove passive grabs on the icon */
878 XUngrabButton(dpy, Button1, AnyModifier, icon->core->window);
879 XUngrabButton(dpy, Button2, AnyModifier, icon->core->window);
880 XUngrabButton(dpy, Button3, AnyModifier, icon->core->window);
881 XSync(dpy, 0);
883 #endif
885 void
886 wIconifyWindow(WWindow *wwin)
888 XWindowAttributes attribs;
889 int present;
892 if (!XGetWindowAttributes(dpy, wwin->client_win, &attribs)) {
893 /* the window doesn't exist anymore */
894 return;
897 if (wwin->flags.miniaturized) {
898 return;
902 if (wwin->transient_for!=None) {
903 WWindow *owner = wWindowFor(wwin->transient_for);
905 if (owner && owner->flags.miniaturized)
906 return;
909 present = wwin->frame->workspace==wwin->screen_ptr->current_workspace;
911 /* if the window is in another workspace, simplify process */
912 if (present) {
913 /* icon creation may take a while */
914 XGrabPointer(dpy, wwin->screen_ptr->root_win, False,
915 ButtonMotionMask|ButtonReleaseMask, GrabModeAsync,
916 GrabModeAsync, None, None, CurrentTime);
919 if (!wwin->flags.icon_moved) {
920 PlaceIcon(wwin->screen_ptr, &wwin->icon_x, &wwin->icon_y);
922 wwin->icon = wIconCreate(wwin);
924 wwin->flags.miniaturized = 1;
925 wwin->flags.mapped = 0;
927 /* unmap transients */
929 unmapTransientsFor(wwin);
931 if (present) {
932 #ifdef WMSOUND
933 wSoundPlay(WMSOUND_ICONIFY);
934 #endif
936 XUngrabPointer(dpy, CurrentTime);
937 wWindowUnmap(wwin);
938 /* let all Expose events arrive so that we can repaint
939 * something before the animation starts (and the server is grabbed) */
940 XSync(dpy, 0);
941 wClientSetState(wwin, IconicState, wwin->icon->icon_win);
942 flushExpose();
943 #ifdef ANIMATIONS
944 if (!wwin->screen_ptr->flags.startup && !wwin->flags.skip_next_animation
945 && !wPreferences.no_animations) {
946 animateResize(wwin->screen_ptr, wwin->frame_x, wwin->frame_y,
947 wwin->frame->core->width, wwin->frame->core->height,
948 wwin->icon_x, wwin->icon_y,
949 wwin->icon->core->width, wwin->icon->core->height,
950 False);
952 #endif
955 wwin->flags.skip_next_animation = 0;
956 if (wwin->screen_ptr->current_workspace==wwin->frame->workspace ||
957 IS_OMNIPRESENT(wwin) || wPreferences.sticky_icons)
959 XMapWindow(dpy, wwin->icon->core->window);
960 AddToStackList(wwin->icon->core);
962 wLowerFrame(wwin->icon->core);
964 if (present) {
965 WWindow *owner = recursiveTransientFor(wwin->screen_ptr->focused_window);
968 * It doesn't seem to be working and causes button event hangup
969 * when deiconifying a transient window.
970 setupIconGrabs(wwin->icon);
972 if ((wwin->flags.focused
973 || (owner && wwin->client_win == owner->client_win))
974 && wPreferences.focus_mode==WKF_CLICK) {
975 WWindow *tmp;
977 tmp = wwin->prev;
978 while (tmp) {
979 if (!WFLAGP(tmp, no_focusable)
980 && !(tmp->flags.hidden||tmp->flags.miniaturized))
981 break;
982 tmp = tmp->prev;
984 wSetFocusTo(wwin->screen_ptr, tmp);
985 } else if (wPreferences.focus_mode!=WKF_CLICK) {
986 wSetFocusTo(wwin->screen_ptr, NULL);
989 #ifdef ANIMATIONS
990 if (!wwin->screen_ptr->flags.startup) {
991 Window clientwin = wwin->client_win;
993 XSync(dpy, 0);
994 processEvents(XPending(dpy));
996 /* the window can disappear while doing the processEvents() */
997 if (!wWindowFor(clientwin))
998 return;
1000 #endif
1004 if (wwin->flags.selected)
1005 wIconSelect(wwin->icon);
1007 #ifdef GNOME_STUFF
1008 wGNOMEUpdateClientStateHint(wwin, False);
1009 #endif
1010 #ifdef KWM_HINTS
1011 wKWMUpdateClientStateHint(wwin, KWMIconifiedFlag);
1012 wKWMSendEventMessage(wwin, WKWMChangedClient);
1013 #endif
1015 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1020 void
1021 wDeiconifyWindow(WWindow *wwin)
1023 wWindowChangeWorkspace(wwin, wwin->screen_ptr->current_workspace);
1025 if (!wwin->flags.miniaturized)
1026 return;
1028 if (wwin->transient_for != None
1029 && wwin->transient_for != wwin->screen_ptr->root_win) {
1030 WWindow *owner = recursiveTransientFor(wwin);
1032 if (owner && owner->flags.miniaturized) {
1033 wDeiconifyWindow(owner);
1034 wSetFocusTo(wwin->screen_ptr, wwin);
1035 wRaiseFrame(wwin->frame->core);
1036 return;
1040 wwin->flags.miniaturized = 0;
1041 if (!wwin->flags.shaded)
1042 wwin->flags.mapped = 1;
1044 if (wwin->icon->selected)
1045 wIconSelect(wwin->icon);
1047 XUnmapWindow(dpy, wwin->icon->core->window);
1049 #ifdef WMSOUND
1050 wSoundPlay(WMSOUND_DEICONIFY);
1051 #endif
1053 /* if the window is in another workspace, do it silently */
1054 #ifdef ANIMATIONS
1055 if (!wwin->screen_ptr->flags.startup && !wPreferences.no_animations
1056 && !wwin->flags.skip_next_animation) {
1057 animateResize(wwin->screen_ptr, wwin->icon_x, wwin->icon_y,
1058 wwin->icon->core->width, wwin->icon->core->height,
1059 wwin->frame_x, wwin->frame_y,
1060 wwin->frame->core->width, wwin->frame->core->height,
1061 False);
1063 #endif /* ANIMATIONS */
1064 wwin->flags.skip_next_animation = 0;
1065 XGrabServer(dpy);
1066 if (!wwin->flags.shaded) {
1067 XMapWindow(dpy, wwin->client_win);
1069 XMapWindow(dpy, wwin->frame->core->window);
1070 wRaiseFrame(wwin->frame->core);
1071 if (!wwin->flags.shaded) {
1072 wClientSetState(wwin, NormalState, None);
1074 mapTransientsFor(wwin);
1075 RemoveFromStackList(wwin->icon->core);
1076 /* removeIconGrabs(wwin->icon);*/
1077 wIconDestroy(wwin->icon);
1078 wwin->icon = NULL;
1080 XUngrabServer(dpy);
1081 if (wPreferences.focus_mode==WKF_CLICK
1082 || wPreferences.focus_mode==WKF_SLOPPY)
1083 wSetFocusTo(wwin->screen_ptr, wwin);
1085 #ifdef ANIMATIONS
1086 if (!wwin->screen_ptr->flags.startup) {
1087 Window clientwin = wwin->client_win;
1089 XSync(dpy, 0);
1090 processEvents(XPending(dpy));
1092 if (!wWindowFor(clientwin))
1093 return;
1095 #endif
1097 if (wPreferences.auto_arrange_icons) {
1098 wArrangeIcons(wwin->screen_ptr, True);
1101 #ifdef GNOME_STUFF
1102 wGNOMEUpdateClientStateHint(wwin, False);
1103 #endif
1104 #ifdef KWM_HINTS
1105 wKWMUpdateClientStateHint(wwin, KWMIconifiedFlag);
1106 wKWMSendEventMessage(wwin, WKWMChangedClient);
1107 #endif
1109 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1114 static void
1115 hideWindow(WIcon *icon, int icon_x, int icon_y, WWindow *wwin, int animate)
1117 if (wwin->flags.miniaturized) {
1118 XUnmapWindow(dpy, wwin->icon->core->window);
1119 wwin->flags.hidden = 1;
1120 wwin->icon->mapped = 0;
1121 #ifdef GNOME_STUFF
1122 wGNOMEUpdateClientStateHint(wwin, False);
1123 #endif
1125 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1127 return;
1130 if (wwin->flags.inspector_open) {
1131 WWindow *pwin = wwin->inspector->frame;
1133 wWindowUnmap(pwin);
1134 pwin->flags.hidden = 1;
1136 wClientSetState(pwin, IconicState, icon->icon_win);
1139 wwin->flags.hidden = 1;
1140 wWindowUnmap(wwin);
1142 wClientSetState(wwin, IconicState, icon->icon_win);
1143 flushExpose();
1144 #ifdef WMSOUND
1145 wSoundPlay(WMSOUND_HIDE);
1146 #endif
1147 #ifdef ANIMATIONS
1148 if (!wwin->screen_ptr->flags.startup && !wPreferences.no_animations &&
1149 !wwin->flags.skip_next_animation && animate) {
1150 animateResize(wwin->screen_ptr, wwin->frame_x, wwin->frame_y,
1151 wwin->frame->core->width, wwin->frame->core->height,
1152 icon_x, icon_y, icon->core->width, icon->core->height,
1153 True);
1155 #endif
1156 wwin->flags.skip_next_animation = 0;
1158 #ifdef GNOME_STUFF
1159 wGNOMEUpdateClientStateHint(wwin, False);
1160 #endif
1162 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1167 void
1168 wHideOtherApplications(WWindow *awin)
1170 WWindow *wwin;
1171 WApplication *tapp;
1172 #ifdef REDUCE_APPICONS
1173 char *tinstance, *tclass;
1174 unsigned int brokenwin = 0, match = 0;
1175 #endif
1177 if (!awin)
1178 return;
1179 wwin = awin->screen_ptr->focused_window;
1181 #ifdef REDUCE_APPICONS
1182 if (awin->wm_instance == NULL || awin->wm_class == NULL)
1183 brokenwin++;
1184 #endif
1186 while (wwin) {
1187 if (wwin!=awin
1188 && wwin->frame->workspace == awin->screen_ptr->current_workspace
1189 && !(wwin->flags.miniaturized||wwin->flags.hidden)
1190 && !wwin->flags.internal_window
1191 && (!wwin->flags.inspector_open || wwin->inspector->frame!=awin)
1192 && !WFLAGP(wwin, no_hide_others)) {
1194 #ifdef REDUCE_APPICONS
1195 match = 0;
1196 if (!brokenwin) {
1197 if ((tinstance = wwin->wm_instance) == NULL)
1198 tinstance = "";
1199 if ((tclass = wwin->wm_class) == NULL)
1200 tclass = "";
1201 if ((strcmp(awin->wm_instance, tinstance) == 0) &&
1202 (strcmp(awin->wm_class, tclass) == 0) )
1203 match++;
1205 #endif
1207 if (wwin->main_window==None || WFLAGP(wwin, no_appicon)) {
1208 if (!WFLAGP(wwin, no_miniaturizable)) {
1209 wwin->flags.skip_next_animation = 1;
1210 wIconifyWindow(wwin);
1212 } else if (wwin->main_window!=None
1213 #ifndef REDUCE_APPICONS
1214 && awin->main_window != wwin->main_window) {
1215 #else
1216 && (awin->main_window != wwin->main_window && !match)) {
1217 #endif
1218 tapp = wApplicationOf(wwin->main_window);
1219 if (tapp) {
1220 tapp->flags.skip_next_animation = 1;
1221 wHideApplication(tapp);
1222 } else {
1223 if (!WFLAGP(wwin, no_miniaturizable)) {
1224 wwin->flags.skip_next_animation = 1;
1225 wIconifyWindow(wwin);
1230 wwin = wwin->prev;
1233 wSetFocusTo(awin->screen_ptr, awin);
1239 void
1240 wHideApplication(WApplication *wapp)
1242 #ifdef REDUCE_APPICONS
1243 WApplication *tapp;
1244 char *tinstance, *tclass;
1245 unsigned int nowmhints = 0, matchwmhints = 0, matchworkspace = 0;
1246 #endif
1247 WScreen *scr;
1248 WWindow *wlist;
1249 int hadfocus;
1251 if (!wapp) {
1252 wwarning("trying to hide a non grouped window");
1253 return;
1255 if (!wapp->main_window_desc) {
1256 wwarning("group leader not found for window group");
1257 return;
1259 #ifdef REDUCE_APPICONS
1260 if ((wapp->main_window_desc->wm_instance == NULL) ||
1261 (wapp->main_window_desc->wm_class == NULL))
1262 nowmhints++;
1263 #endif
1264 scr = wapp->main_window_desc->screen_ptr;
1265 hadfocus = 0;
1266 wlist = scr->focused_window;
1267 if (!wlist)
1268 return;
1270 if (wlist->main_window == wapp->main_window)
1271 wapp->last_focused = wlist;
1272 else
1273 wapp->last_focused = NULL;
1274 while (wlist) {
1275 #ifdef REDUCE_APPICONS
1276 matchwmhints = matchworkspace = 0;
1277 if (!nowmhints) {
1278 tapp = wApplicationOf(wlist->main_window);
1279 tinstance = tclass = NULL;
1280 if (tapp) {
1281 if (tapp->main_window_desc) {
1282 tinstance = tapp->main_window_desc->wm_instance;
1283 tclass = tapp->main_window_desc->wm_class;
1286 if (tapp == NULL || tinstance == NULL || tclass == NULL) {
1287 /* Should never reach here */
1288 tinstance = "";
1289 tclass = "";
1291 if ((strcmp(tinstance, wapp->main_window_desc->wm_instance) == 0) &&
1292 (strcmp(tclass, wapp->main_window_desc->wm_class) == 0) )
1293 matchwmhints++;
1295 if (wlist->frame) {
1296 if (wlist->frame->workspace == wapp->main_window_desc->screen_ptr->current_workspace)
1297 matchworkspace++;
1299 if ((wlist->main_window == wapp->main_window || matchwmhints) &&
1300 matchworkspace) {
1301 #ifdef I_HATE_THIS
1303 #endif
1304 #else
1305 if (wlist->main_window == wapp->main_window) {
1306 #endif
1307 if (wlist->flags.focused) {
1308 hadfocus = 1;
1310 if (wapp->app_icon)
1311 hideWindow(wapp->app_icon->icon, wapp->app_icon->x_pos,
1312 wapp->app_icon->y_pos, wlist,
1313 !wapp->flags.skip_next_animation);
1315 wlist = wlist->prev;
1318 wapp->flags.skip_next_animation = 0;
1320 if (hadfocus) {
1321 if (wPreferences.focus_mode==WKF_CLICK) {
1322 wlist = scr->focused_window;
1323 while (wlist) {
1324 if (!WFLAGP(wlist, no_focusable) && !wlist->flags.hidden
1325 && (wlist->flags.mapped || wlist->flags.shaded))
1326 break;
1327 wlist = wlist->prev;
1329 wSetFocusTo(scr, wlist);
1330 } else {
1331 wSetFocusTo(scr, NULL);
1335 wapp->flags.hidden = 1;
1337 if(wPreferences.auto_arrange_icons) {
1338 wArrangeIcons(scr, True);
1345 static void
1346 unhideWindow(WIcon *icon, int icon_x, int icon_y, WWindow *wwin, int animate,
1347 int bringToCurrentWS)
1349 if (bringToCurrentWS)
1350 wWindowChangeWorkspace(wwin, wwin->screen_ptr->current_workspace);
1352 wwin->flags.hidden=0;
1353 wwin->flags.mapped=1;
1355 #ifdef WMSOUND
1356 wSoundPlay(WMSOUND_UNHIDE);
1357 #endif
1358 #ifdef ANIMATIONS
1359 if (!wwin->screen_ptr->flags.startup && !wPreferences.no_animations
1360 && animate) {
1361 animateResize(wwin->screen_ptr, icon_x, icon_y,
1362 icon->core->width, icon->core->height,
1363 wwin->frame_x, wwin->frame_y,
1364 wwin->frame->core->width, wwin->frame->core->height,
1365 True);
1367 #endif
1368 wwin->flags.skip_next_animation = 0;
1369 XMapWindow(dpy, wwin->client_win);
1370 XMapWindow(dpy, wwin->frame->core->window);
1371 wClientSetState(wwin, NormalState, None);
1372 wRaiseFrame(wwin->frame->core);
1373 if (wwin->flags.inspector_open) {
1374 WWindow *pwin = wwin->inspector->frame;
1376 pwin->flags.hidden = 0;
1377 pwin->flags.mapped = 1;
1378 XMapWindow(dpy, pwin->client_win);
1379 XMapWindow(dpy, pwin->frame->core->window);
1380 wClientSetState(pwin, NormalState, None);
1383 #ifdef GNOME_STUFF
1384 wGNOMEUpdateClientStateHint(wwin, False);
1385 #endif
1387 UpdateSwitchMenu(wwin->screen_ptr, wwin, ACTION_CHANGE_STATE);
1392 void
1393 wUnhideApplication(WApplication *wapp, Bool miniwindows, Bool bringToCurrentWS)
1395 WScreen *scr;
1396 WWindow *wlist, *next;
1397 WWindow *focused=NULL;
1398 #ifdef REDUCE_APPICONS
1399 char *tinstance, *tclass;
1400 unsigned int nowmhints = 0, matchwmhints = 0, matchworkspace = 0;
1401 #endif
1403 if (!wapp) {
1404 return;
1407 #ifdef REDUCE_APPICONS
1408 if ((wapp->main_window_desc->wm_class == NULL) ||
1409 (wapp->main_window_desc->wm_instance == NULL))
1410 nowmhints++;
1411 #endif
1413 scr = wapp->main_window_desc->screen_ptr;
1414 wlist = scr->focused_window;
1415 if (!wlist) return;
1416 /* goto beginning of list */
1417 while (wlist->prev)
1418 wlist = wlist->prev;
1420 while (wlist) {
1421 next = wlist->next;
1423 #ifndef REDUCE_APPICONS
1424 if (wlist->main_window == wapp->main_window) {
1425 #else
1426 matchwmhints = matchworkspace = 0;
1427 if (!nowmhints) {
1428 if ((tinstance = wlist->wm_instance) == NULL)
1429 tinstance = "";
1430 if ((tclass = wlist->wm_class) == NULL)
1431 tclass = "";
1432 if ((strcmp(tinstance, wapp->main_window_desc->wm_instance) == 0)
1433 && (strcmp(tclass, wapp->main_window_desc->wm_class) == 0) )
1434 matchwmhints++;
1436 if (wlist->frame) {
1437 if (wlist->frame->workspace == wapp->main_window_desc->screen_ptr->current_workspace)
1438 matchworkspace++;
1441 if ((wlist->main_window == wapp->main_window || matchwmhints) &&
1442 matchworkspace) {
1443 #endif
1444 if (wlist->flags.focused)
1445 focused = wlist;
1446 else if (!focused || !focused->flags.focused)
1447 focused = wlist;
1449 if (wlist->flags.miniaturized && wlist->icon) {
1450 if (bringToCurrentWS || wPreferences.sticky_icons
1451 || wlist->frame->workspace == scr->current_workspace) {
1452 if (!wlist->icon->mapped) {
1453 XMapWindow(dpy, wlist->icon->core->window);
1454 wlist->icon->mapped = 1;
1456 wlist->flags.hidden = 0;
1458 UpdateSwitchMenu(scr, wlist, ACTION_CHANGE_STATE);
1460 if (wlist->frame->workspace != scr->current_workspace)
1461 wWindowChangeWorkspace(wlist, scr->current_workspace);
1463 if (miniwindows) {
1464 wDeiconifyWindow(wlist);
1466 } else if (wlist->flags.hidden) {
1467 unhideWindow(wapp->app_icon->icon, wapp->app_icon->x_pos,
1468 wapp->app_icon->y_pos, wlist,
1469 !wapp->flags.skip_next_animation,
1470 bringToCurrentWS);
1471 } else {
1472 if (bringToCurrentWS
1473 && wlist->frame->workspace != scr->current_workspace) {
1474 wWindowChangeWorkspace(wlist, scr->current_workspace);
1476 wRaiseFrame(wlist->frame->core);
1479 wlist = next;
1482 wapp->flags.skip_next_animation = 0;
1483 wapp->flags.hidden = 0;
1485 if (focused)
1486 wSetFocusTo(scr, focused);
1487 else if (wapp->last_focused && wapp->last_focused->flags.mapped)
1488 wSetFocusTo(scr, wapp->last_focused);
1489 wapp->last_focused = NULL;
1490 if (wPreferences.auto_arrange_icons) {
1491 wArrangeIcons(scr, True);
1497 void
1498 wShowAllWindows(WScreen *scr)
1500 WWindow *wwin, *old_foc;
1501 WApplication *wapp;
1503 old_foc = wwin = scr->focused_window;
1504 while (wwin) {
1505 if (!wwin->flags.internal_window &&
1506 (scr->current_workspace == wwin->frame->workspace
1507 || IS_OMNIPRESENT(wwin))) {
1508 if (wwin->flags.miniaturized) {
1509 wwin->flags.skip_next_animation = 1;
1510 wDeiconifyWindow(wwin);
1511 } else if (wwin->flags.hidden) {
1512 wapp = wApplicationOf(wwin->main_window);
1513 if (wapp) {
1514 wUnhideApplication(wapp, False, False);
1515 } else {
1516 wwin->flags.skip_next_animation = 1;
1517 wDeiconifyWindow(wwin);
1521 wwin = wwin->prev;
1523 wSetFocusTo(scr, old_foc);
1524 /*wRaiseFrame(old_foc->frame->core);*/
1528 void
1529 wRefreshDesktop(WScreen *scr)
1531 Window win;
1532 XSetWindowAttributes attr;
1534 attr.backing_store = NotUseful;
1535 attr.save_under = False;
1536 win = XCreateWindow(dpy, scr->root_win, 0, 0, scr->scr_width,
1537 scr->scr_height, 0, CopyFromParent, CopyFromParent,
1538 (Visual *)CopyFromParent, CWBackingStore|CWSaveUnder,
1539 &attr);
1540 XMapRaised(dpy, win);
1541 XDestroyWindow(dpy, win);
1542 XFlush(dpy);
1546 void
1547 wArrangeIcons(WScreen *scr, Bool arrangeAll)
1549 WWindow *wwin;
1550 WAppIcon *aicon;
1551 int pf; /* primary axis */
1552 int sf; /* secondary axis */
1553 int fullW;
1554 int fullH;
1555 int pi, si;
1556 int sx1, sx2, sy1, sy2; /* screen boundary */
1557 int sw, sh;
1558 int xo, yo;
1559 int xs, ys;
1560 int isize = wPreferences.icon_size;
1563 * Find out screen boundaries.
1565 sx1 = 0;
1566 sy1 = 0;
1567 sx2 = scr->scr_width;
1568 sy2 = scr->scr_height;
1569 if (scr->dock) {
1570 if (scr->dock->on_right_side)
1571 sx2 -= isize + DOCK_EXTRA_SPACE;
1572 else
1573 sx1 += isize + DOCK_EXTRA_SPACE;
1576 sw = isize * (scr->scr_width/isize);
1577 sh = isize * (scr->scr_height/isize);
1578 fullW = (sx2-sx1)/isize;
1579 fullH = (sy2-sy1)/isize;
1581 /* icon yard boundaries */
1582 if (wPreferences.icon_yard & IY_VERT) {
1583 pf = fullH;
1584 sf = fullW;
1585 } else {
1586 pf = fullW;
1587 sf = fullH;
1589 if (wPreferences.icon_yard & IY_RIGHT) {
1590 xo = sx2 - isize;
1591 xs = -1;
1592 } else {
1593 xo = sx1;
1594 xs = 1;
1596 if (wPreferences.icon_yard & IY_TOP) {
1597 yo = sy1;
1598 ys = 1;
1599 } else {
1600 yo = sy2 - isize;
1601 ys = -1;
1604 /* arrange icons putting the most recently focused window
1605 * as the last icon */
1606 #define X ((wPreferences.icon_yard & IY_VERT) ? xo + xs*(si*isize)\
1607 : xo + xs*(pi*isize))
1608 #define Y ((wPreferences.icon_yard & IY_VERT) ? yo + ys*(pi*isize)\
1609 : yo + ys*(si*isize))
1611 /* arrange application icons */
1612 aicon = scr->app_icon_list;
1613 /* reverse them to avoid unnecessarily sliding of icons */
1614 while (aicon && aicon->next)
1615 aicon = aicon->next;
1617 pi = 0;
1618 si = 0;
1619 while (aicon) {
1620 if (!aicon->docked) {
1621 if (aicon->x_pos != X || aicon->y_pos != Y) {
1622 #ifdef ANIMATIONS
1623 if (!wPreferences.no_animations) {
1624 SlideWindow(aicon->icon->core->window, aicon->x_pos, aicon->y_pos,
1625 X, Y);
1627 #endif /* ANIMATIONS */
1629 wAppIconMove(aicon, X, Y);
1630 pi++;
1632 /* we reversed the order so we use prev */
1633 aicon = aicon->prev;
1634 if (pi >= pf) {
1635 pi=0;
1636 si++;
1640 /* arrange miniwindows */
1642 wwin = scr->focused_window;
1643 /* reverse them to avoid unnecessarily shuffling */
1644 while (wwin && wwin->prev)
1645 wwin = wwin->prev;
1647 while (wwin) {
1648 if (wwin->icon && wwin->flags.miniaturized &&/*!wwin->flags.hidden &&*/
1649 (wwin->frame->workspace==scr->current_workspace ||
1650 IS_OMNIPRESENT(wwin) || wPreferences.sticky_icons)) {
1652 if (arrangeAll || !wwin->flags.icon_moved) {
1653 if (wwin->icon_x != X || wwin->icon_y != Y) {
1654 #ifdef ANIMATIONS
1655 if (wPreferences.no_animations) {
1656 XMoveWindow(dpy, wwin->icon->core->window, X, Y);
1657 } else {
1658 SlideWindow(wwin->icon->core->window, wwin->icon_x,
1659 wwin->icon_y, X, Y);
1661 #else
1662 XMoveWindow(dpy, wwin->icon->core->window, X, Y);
1663 #endif /* ANIMATIONS */
1665 wwin->icon_x = X;
1666 wwin->icon_y = Y;
1667 pi++;
1670 if (arrangeAll) {
1671 wwin->flags.icon_moved = 0;
1673 /* we reversed the order, so we use next */
1674 wwin = wwin->next;
1675 if (pi >= pf) {
1676 pi=0;
1677 si++;
1683 void
1684 wSelectWindow(WWindow *wwin, Bool flag)
1686 WScreen *scr = wwin->screen_ptr;
1687 if (flag) {
1688 wwin->flags.selected = 1;
1689 XSetWindowBorder(dpy, wwin->frame->core->window, scr->white_pixel);
1690 scr->selected_windows = list_cons(wwin, scr->selected_windows);
1691 } else {
1692 wwin->flags.selected = 0;
1693 XSetWindowBorder(dpy, wwin->frame->core->window,
1694 scr->frame_border_pixel);
1695 scr->selected_windows = list_remove_elem(scr->selected_windows, wwin);
1700 void
1701 wMakeWindowVisible(WWindow *wwin)
1703 wWorkspaceChange(wwin->screen_ptr, wwin->frame->workspace);
1705 if (wwin->flags.shaded) {
1706 wUnshadeWindow(wwin);
1708 if (wwin->flags.hidden) {
1709 WApplication *app;
1711 app = wApplicationOf(wwin->main_window);
1712 if (app)
1713 wUnhideApplication(app, False, False);
1714 } else if (wwin->flags.miniaturized) {
1715 wDeiconifyWindow(wwin);
1716 } else {
1717 wSetFocusTo(wwin->screen_ptr, wwin);
1718 wRaiseFrame(wwin->frame->core);