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
);
180 /* Parameter not used, but tell the compiler that it is ok */
185 typedef struct AppBouncerData
{
193 static void doAppBounce(void *arg
)
195 AppBouncerData
*data
= (AppBouncerData
*)arg
;
196 WAppIcon
*aicon
= data
->wapp
->app_icon
;
202 if (data
->wapp
->refcount
> 1) {
203 if (wPreferences
.raise_appicons_when_bouncing
)
204 XRaiseWindow(dpy
, aicon
->icon
->core
->window
);
206 const double ticks
= BOUNCE_HZ
* BOUNCE_LENGTH
;
207 const double s
= sqrt(BOUNCE_HEIGHT
)/(ticks
/2);
208 double h
= BOUNCE_HEIGHT
*pow(BOUNCE_DAMP
, data
->pow
);
209 double sqrt_h
= sqrt(h
);
211 double offset
, x
= s
* data
->count
- sqrt_h
;
216 } else ++data
->count
;
220 case 0: /* left, bounce to right */
221 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
222 aicon
->x_pos
+ (int)offset
, aicon
->y_pos
);
224 case 1: /* right, bounce to left */
225 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
226 aicon
->x_pos
- (int)offset
, aicon
->y_pos
);
228 case 2: /* top, bounce down */
229 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
230 aicon
->x_pos
, aicon
->y_pos
+ (int)offset
);
232 case 3: /* bottom, bounce up */
233 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
234 aicon
->x_pos
, aicon
->y_pos
- (int)offset
);
241 XMoveWindow(dpy
, aicon
->icon
->core
->window
,
242 aicon
->x_pos
, aicon
->y_pos
);
243 CommitStackingForWindow(aicon
->icon
->core
);
244 data
->wapp
->flags
.bouncing
= 0;
245 WMDeleteTimerHandler(data
->timer
);
246 wApplicationDestroy(data
->wapp
);
250 static int bounceDirection(WAppIcon
*aicon
)
252 enum { left_e
= 1, right_e
= 2, top_e
= 4, bottom_e
= 8 };
254 WScreen
*scr
= aicon
->icon
->core
->screen_ptr
;
256 int l
, r
, t
, b
, h
, v
;
259 rr
.pos
.x
= aicon
->x_pos
;
260 rr
.pos
.y
= aicon
->y_pos
;
261 rr
.size
.width
= rr
.size
.height
= 64;
263 sr
= wGetRectForHead(scr
, wGetHeadForRect(scr
, rr
));
265 l
= rr
.pos
.x
- sr
.pos
.x
;
266 r
= sr
.pos
.x
+ sr
.size
.width
- rr
.pos
.x
- rr
.size
.width
;
267 t
= rr
.pos
.y
- sr
.pos
.y
;
268 b
= sr
.pos
.y
+ sr
.size
.height
- rr
.pos
.y
- rr
.size
.height
;
286 if (aicon
->dock
&& abs(aicon
->xindex
) != abs(aicon
->yindex
)) {
287 if (abs(aicon
->xindex
) < abs(aicon
->yindex
)) dir
&= ~(top_e
| bottom_e
);
288 else dir
&= ~(left_e
| right_e
);
290 if (h
< v
) dir
&= ~(top_e
| bottom_e
);
291 else dir
&= ~(left_e
| right_e
);
312 wwarning(_("Impossible direction: %d"), dir
);
320 void wAppBounce(WApplication
*wapp
)
322 if (!wPreferences
.no_animations
&& wapp
->app_icon
&& !wapp
->flags
.bouncing
323 && !wPreferences
.do_not_make_appicons_bounce
) {
325 wapp
->flags
.bouncing
= 1;
327 AppBouncerData
*data
= (AppBouncerData
*)malloc(sizeof(AppBouncerData
));
329 data
->count
= data
->pow
= 0;
330 data
->dir
= bounceDirection(wapp
->app_icon
);
331 data
->timer
= WMAddPersistentTimerHandler(BOUNCE_DELAY
, doAppBounce
, data
);
335 static int appIsUrgent(WApplication
*wapp
)
340 if (!wapp
->main_window_desc
) {
341 wwarning("group leader not found for window group");
344 scr
= wapp
->main_window_desc
->screen_ptr
;
345 wlist
= scr
->focused_window
;
350 if (wlist
->main_window
== wapp
->main_window
) {
351 if (wlist
->flags
.urgent
)
360 static void doAppUrgentBounce(void *arg
)
362 WApplication
*wapp
= (WApplication
*)arg
;
364 if (appIsUrgent(wapp
)) {
365 if(wPreferences
.bounce_appicons_when_urgent
) wAppBounce(wapp
);
367 WMDeleteTimerHandler(wapp
->urgent_bounce_timer
);
368 wapp
->urgent_bounce_timer
= NULL
;
372 void wAppBounceWhileUrgent(WApplication
*wapp
)
375 if (appIsUrgent(wapp
)) {
376 if (!wapp
->urgent_bounce_timer
) {
377 wapp
->urgent_bounce_timer
= WMAddPersistentTimerHandler(URGENT_BOUNCE_DELAY
, doAppUrgentBounce
, wapp
);
378 doAppUrgentBounce(wapp
);
381 if (wapp
->urgent_bounce_timer
) {
382 WMDeleteTimerHandler(wapp
->urgent_bounce_timer
);
383 wapp
->urgent_bounce_timer
= NULL
;