2 * Window Maker window manager
4 * Copyright (c) 1997-2003 Alfredo K. Kojima
5 * Copyright (c) 1998-2003 Dan Pascu
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 along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <X11/Xutil.h>
34 #include "WindowMaker.h"
36 #include "superfluous.h"
43 #define PIECES ((64/ICON_KABOOM_PIECE_SIZE)*(64/ICON_KABOOM_PIECE_SIZE))
44 #define KAB_PRECISION 4
46 #define BOUNCE_DELAY (1000/BOUNCE_HZ)
47 #define BOUNCE_HEIGHT 24
48 #define BOUNCE_LENGTH 0.3
49 #define BOUNCE_DAMP 0.6
50 #define URGENT_BOUNCE_DELAY 3000
53 void DoKaboom(WScreen
* scr
, Window win
, int x
, int y
)
55 #ifdef NORMAL_ICON_KABOOM
57 int sw
= scr
->scr_width
, sh
= scr
->scr_height
;
60 char pvx
[PIECES
], pvy
[PIECES
];
61 /* in MkLinux/PPC gcc seems to think that char is unsigned? */
62 signed char ax
[PIECES
], ay
[PIECES
];
65 XSetClipMask(dpy
, scr
->copy_gc
, None
);
66 tmp
= XCreatePixmap(dpy
, scr
->root_win
, wPreferences
.icon_size
, wPreferences
.icon_size
, scr
->depth
);
67 if (scr
->w_visual
== DefaultVisual(dpy
, scr
->screen
))
68 XCopyArea(dpy
, win
, tmp
, scr
->copy_gc
, 0, 0, wPreferences
.icon_size
, wPreferences
.icon_size
, 0, 0);
72 image
= XGetImage(dpy
, win
, 0, 0, wPreferences
.icon_size
,
73 wPreferences
.icon_size
, AllPlanes
, ZPixmap
);
75 XUnmapWindow(dpy
, win
);
78 XPutImage(dpy
, tmp
, scr
->copy_gc
, image
, 0, 0, 0, 0,
79 wPreferences
.icon_size
, wPreferences
.icon_size
);
83 for (i
= 0, k
= 0; i
< wPreferences
.icon_size
/ ICON_KABOOM_PIECE_SIZE
&& k
< PIECES
; i
++) {
84 for (j
= 0; j
< wPreferences
.icon_size
/ ICON_KABOOM_PIECE_SIZE
&& k
< PIECES
; j
++) {
88 px
[k
] = (x
+ i
* ICON_KABOOM_PIECE_SIZE
) << KAB_PRECISION
;
89 py
[k
] = y
+ j
* ICON_KABOOM_PIECE_SIZE
;
90 pvx
[k
] = rand() % (1 << (KAB_PRECISION
+ 3)) - (1 << (KAB_PRECISION
+ 3)) / 2;
91 pvy
[k
] = -15 - rand() % 7;
99 XUnmapWindow(dpy
, win
);
105 if (XCheckTypedEvent(dpy
, ButtonPress
, &foo
)) {
106 XPutBackEvent(dpy
, &foo
);
107 XClearWindow(dpy
, scr
->root_win
);
111 for (i
= 0; i
< j
; i
++) {
113 int _px
= px
[i
] >> KAB_PRECISION
;
114 XClearArea(dpy
, scr
->root_win
, _px
, py
[i
],
115 ICON_KABOOM_PIECE_SIZE
, ICON_KABOOM_PIECE_SIZE
, False
);
118 _px
= px
[i
] >> KAB_PRECISION
;
120 if (_px
< -wPreferences
.icon_size
|| _px
> sw
|| py
[i
] >= sh
) {
124 XCopyArea(dpy
, tmp
, scr
->root_win
, scr
->copy_gc
,
125 ax
[i
] * ICON_KABOOM_PIECE_SIZE
, ay
[i
] * ICON_KABOOM_PIECE_SIZE
,
126 ICON_KABOOM_PIECE_SIZE
, ICON_KABOOM_PIECE_SIZE
, _px
, py
[i
]);
132 wusleep(MINIATURIZE_ANIMATION_DELAY_Z
* 2);
135 XFreePixmap(dpy
, tmp
);
136 #endif /* NORMAL_ICON_KABOOM */
139 Pixmap
MakeGhostIcon(WScreen
* scr
, Drawable drawable
)
148 back
= RCreateImageFromDrawable(scr
->rcontext
, drawable
, None
);
157 RClearImage(back
, &color
);
158 RConvertImage(scr
->rcontext
, back
, &pixmap
);
165 void DoWindowBirth(WWindow
*wwin
)
167 #ifdef WINDOW_BIRTH_ZOOM
168 int center_x
, center_y
;
169 int width
= wwin
->frame
->core
->width
;
170 int height
= wwin
->frame
->core
->height
;
171 int w
= WMIN(width
, 20);
172 int h
= WMIN(height
, 20);
173 WScreen
*scr
= wwin
->screen_ptr
;
175 center_x
= wwin
->frame_x
+ (width
- w
) / 2;
176 center_y
= wwin
->frame_y
+ (height
- h
) / 2;
178 animateResize(scr
, center_x
, center_y
, 1, 1, wwin
->frame_x
, wwin
->frame_y
, width
, height
);
182 typedef struct AppBouncerData
{
190 static void doAppBounce(void *arg
)
192 AppBouncerData
*data
= (AppBouncerData
*)arg
;
193 WAppIcon
*aicon
= data
->wapp
->app_icon
;
196 if (aicon
&& data
->wapp
->refcount
> 1) {
197 if (wPreferences
.raise_appicons_when_bouncing
)
198 XRaiseWindow(dpy
, aicon
->icon
->core
->window
);
200 const double ticks
= BOUNCE_HZ
* BOUNCE_LENGTH
;
201 const double s
= sqrt(BOUNCE_HEIGHT
)/(ticks
/2);
202 double h
= BOUNCE_HEIGHT
*pow(BOUNCE_DAMP
, data
->pow
);
203 double sqrt_h
= sqrt(h
);
205 double offset
, x
= s
* data
->count
- sqrt_h
;
210 } else ++data
->count
;
214 case 0: /* left, bounce to right */
215 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
216 aicon
->x_pos
+ (int)offset
, aicon
->y_pos
);
218 case 1: /* right, bounce to left */
219 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
220 aicon
->x_pos
- (int)offset
, aicon
->y_pos
);
222 case 2: /* top, bounce down */
223 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
224 aicon
->x_pos
, aicon
->y_pos
+ (int)offset
);
226 case 3: /* bottom, bounce up */
227 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
228 aicon
->x_pos
, aicon
->y_pos
- (int)offset
);
235 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
236 aicon
->x_pos
, aicon
->y_pos
);
237 CommitStackingForWindow(aicon
->icon
->core
);
238 data
->wapp
->flags
.bouncing
= 0;
239 WMDeleteTimerHandler(data
->timer
);
240 wApplicationDestroy(data
->wapp
);
244 static int bounceDirection(WAppIcon
*aicon
)
246 enum { left_e
= 1, right_e
= 2, top_e
= 4, bottom_e
= 8 };
248 WScreen
*scr
= aicon
->icon
->core
->screen_ptr
;
250 int l
, r
, t
, b
, h
, v
;
253 rr
.pos
.x
= aicon
->x_pos
;
254 rr
.pos
.y
= aicon
->y_pos
;
255 rr
.size
.width
= rr
.size
.height
= 64;
257 sr
= wGetRectForHead(scr
, wGetHeadForRect(scr
, rr
));
259 l
= rr
.pos
.x
- sr
.pos
.x
;
260 r
= sr
.pos
.x
+ sr
.size
.width
- rr
.pos
.x
- rr
.size
.width
;
261 t
= rr
.pos
.y
- sr
.pos
.y
;
262 b
= sr
.pos
.y
+ sr
.size
.height
- rr
.pos
.y
- rr
.size
.height
;
280 if (aicon
->dock
&& abs(aicon
->xindex
) != abs(aicon
->yindex
)) {
281 if (abs(aicon
->xindex
) < abs(aicon
->yindex
)) dir
&= ~(top_e
| bottom_e
);
282 else dir
&= ~(left_e
| right_e
);
284 if (h
< v
) dir
&= ~(top_e
| bottom_e
);
285 else dir
&= ~(left_e
| right_e
);
306 wwarning(_("Impossible direction: %d"), dir
);
314 void wAppBounce(WApplication
*wapp
)
316 if (!wPreferences
.no_animations
&& wapp
->app_icon
&& !wapp
->flags
.bouncing
317 && !wPreferences
.do_not_make_appicons_bounce
) {
319 wapp
->flags
.bouncing
= 1;
321 AppBouncerData
*data
= (AppBouncerData
*)malloc(sizeof(AppBouncerData
));
323 data
->count
= data
->pow
= 0;
324 data
->dir
= bounceDirection(wapp
->app_icon
);
325 data
->timer
= WMAddPersistentTimerHandler(BOUNCE_DELAY
, doAppBounce
, data
);
329 static int appIsUrgent(WApplication
*wapp
)
334 if (!wapp
->main_window_desc
) {
335 wwarning("group leader not found for window group");
338 scr
= wapp
->main_window_desc
->screen_ptr
;
339 wlist
= scr
->focused_window
;
344 if (wlist
->main_window
== wapp
->main_window
) {
345 if (wlist
->flags
.urgent
)
354 static void doAppUrgentBounce(void *arg
)
356 WApplication
*wapp
= (WApplication
*)arg
;
358 if (appIsUrgent(wapp
)) {
359 if(wPreferences
.bounce_appicons_when_urgent
) wAppBounce(wapp
);
361 WMDeleteTimerHandler(wapp
->urgent_bounce_timer
);
362 wapp
->urgent_bounce_timer
= NULL
;
366 void wAppBounceWhileUrgent(WApplication
*wapp
)
369 if (appIsUrgent(wapp
)) {
370 if (!wapp
->urgent_bounce_timer
) {
371 wapp
->urgent_bounce_timer
= WMAddPersistentTimerHandler(URGENT_BOUNCE_DELAY
, doAppUrgentBounce
, wapp
);
372 doAppUrgentBounce(wapp
);
375 if (wapp
->urgent_bounce_timer
) {
376 WMDeleteTimerHandler(wapp
->urgent_bounce_timer
);
377 wapp
->urgent_bounce_timer
= NULL
;