2 * Window Maker window manager
4 * Copyright (c) 1998 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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
27 #include <X11/Xutil.h>
29 #include <X11/extensions/shape.h>
37 #include "WindowMaker.h"
45 #include "workspace.h"
50 extern WPreferences wPreferences
;
52 typedef struct _WBalloon
{
78 #define TLEFT (TOP|LEFT)
79 #define TRIGHT (TOP|RIGHT)
80 #define BLEFT (BOTTOM|LEFT)
81 #define BRIGHT (BOTTOM|RIGHT)
87 #define MIN(a,b) ((a)<(b)?(a):(b))
88 #define MAX(a,b) ((a)>(b)?(a):(b))
91 drawBalloon(Pixmap pix
, GC gc
, int x
, int y
, int w
, int h
, int side
)
96 XFillArc(dpy
, pix
, gc
, x
, y
, rad
, rad
, 90*64, 90*64);
97 XFillArc(dpy
, pix
, gc
, x
, y
+h
-1-rad
, rad
, rad
, 180*64, 90*64);
99 XFillArc(dpy
, pix
, gc
, x
+w
-1-rad
, y
, rad
, rad
, 0*64, 90*64);
100 XFillArc(dpy
, pix
, gc
, x
+w
-1-rad
, y
+h
-1-rad
, rad
, rad
, 270*64, 90*64);
102 XFillRectangle(dpy
, pix
, gc
, x
, y
+rad
/2, w
, h
-rad
);
103 XFillRectangle(dpy
, pix
, gc
, x
+rad
/2, y
, w
-rad
, h
);
107 pt
[1].y
= y
+h
-1+SPACE
;
115 pt
[0].x
= x
+w
-h
+2*h
/16;
116 pt
[1].x
= x
+w
-h
+11*h
/16;
117 pt
[2].x
= x
+w
-h
+7*h
/16;
119 pt
[0].x
= x
+h
-2*h
/16;
120 pt
[1].x
= x
+h
-11*h
/16;
121 pt
[2].x
= x
+h
-7*h
/16;
123 XFillPolygon(dpy
, pix
, gc
, pt
, 3, Convex
, CoordModeOrigin
);
128 makePixmap(WScreen
*scr
, int width
, int height
, int side
, Pixmap
*mask
)
130 WBalloon
*bal
= scr
->balloon
;
135 bitmap
= XCreatePixmap(dpy
, scr
->root_win
, width
+SPACE
, height
+SPACE
, 1);
138 bal
->monoGC
= XCreateGC(dpy
, bitmap
, 0, NULL
);
140 XSetForeground(dpy
, bal
->monoGC
, 0);
141 XFillRectangle(dpy
, bitmap
, bal
->monoGC
, 0, 0, width
+SPACE
, height
+SPACE
);
143 pixmap
= XCreatePixmap(dpy
, scr
->root_win
, width
+SPACE
, height
+SPACE
,
145 XSetForeground(dpy
, scr
->draw_gc
, scr
->black_pixel
);
146 XFillRectangle(dpy
, pixmap
, scr
->draw_gc
, 0, 0, width
+SPACE
, height
+SPACE
);
155 XSetForeground(dpy
, bal
->monoGC
, 1);
156 drawBalloon(bitmap
, bal
->monoGC
, x
, y
, width
, height
, side
);
157 XSetForeground(dpy
, scr
->draw_gc
, scr
->white_pixel
);
158 drawBalloon(pixmap
, scr
->draw_gc
, x
+1, y
+1, width
-2, height
-2, side
);
167 showText(WScreen
*scr
, int x
, int y
, int h
, int w
, char *text
)
173 WMFont
*font
= scr
->info_text_font
;
178 if (scr
->balloon
->contents
)
179 XFreePixmap(dpy
, scr
->balloon
->contents
);
181 width
= WMWidthOfString(font
, text
, strlen(text
))+16;
182 height
= WMFontHeight(font
) + 4;
190 if (x
+ width
> scr
->scr_width
) {
192 bx
= x
- width
+ w
/2;
199 if (bx
+ width
> scr
->scr_width
)
200 bx
= scr
->scr_width
- width
;
202 if (y
- (height
+ SPACE
) < 0) {
208 by
= y
- (height
+ SPACE
);
211 pixmap
= makePixmap(scr
, width
, height
, side
, &mask
);
213 XSetForeground(dpy
, scr
->info_text_gc
, scr
->black_pixel
);
215 WMDrawString(scr
->wmscreen
, pixmap
, scr
->info_text_gc
, font
, 8,
216 ty
+ (height
- WMFontHeight(font
))/2,
219 XSetWindowBackgroundPixmap(dpy
, scr
->balloon
->window
, pixmap
);
220 scr
->balloon
->contents
= pixmap
;
222 XResizeWindow(dpy
, scr
->balloon
->window
, width
, height
+SPACE
);
223 XShapeCombineMask(dpy
, scr
->balloon
->window
, ShapeBounding
, 0, 0, mask
,
225 XFreePixmap(dpy
, mask
);
226 XMoveWindow(dpy
, scr
->balloon
->window
, bx
, by
);
227 XMapRaised(dpy
, scr
->balloon
->window
);
229 scr
->balloon
->mapped
= 1;
231 #else /* !SHAPED_BALLOON */
233 showText(WScreen
*scr
, int x
, int y
, int h
, int w
, char *text
)
238 WMFont
*font
= scr
->info_text_font
;
240 if (scr
->balloon
->contents
)
241 XFreePixmap(dpy
, scr
->balloon
->contents
);
243 width
= WMWidthOfString(font
, text
, strlen(text
))+8;
244 height
= WMFontHeight(font
) + 4;
248 else if (x
+ width
> scr
->scr_width
-1)
249 x
= scr
->scr_width
- width
;
251 if (y
- height
- 2 < 0) {
259 if (scr
->window_title_texture
[0])
260 XSetForeground(dpy
, scr
->draw_gc
,
261 scr
->window_title_texture
[0]->any
.color
.pixel
);
263 XSetForeground(dpy
, scr
->draw_gc
, scr
->light_pixel
);
265 pixmap
= XCreatePixmap(dpy
, scr
->root_win
, width
, height
, scr
->w_depth
);
266 XFillRectangle(dpy
, pixmap
, scr
->draw_gc
, 0, 0, width
, height
);
268 XSetForeground(dpy
, scr
->info_text_gc
, scr
->window_title_pixel
[0]);
270 WMDrawString(scr
->wmscreen
, pixmap
, scr
->info_text_gc
, font
,
271 4, 2, text
, strlen(text
));
273 XResizeWindow(dpy
, scr
->balloon
->window
, width
, height
);
274 XMoveWindow(dpy
, scr
->balloon
->window
, x
, y
);
276 XSetWindowBackgroundPixmap(dpy
, scr
->balloon
->window
, pixmap
);
277 XClearWindow(dpy
, scr
->balloon
->window
);
278 XMapRaised(dpy
, scr
->balloon
->window
);
280 scr
->balloon
->contents
= pixmap
;
282 scr
->balloon
->mapped
= 1;
284 #endif /* !SHAPED_BALLOON */
288 showBalloon(WScreen
*scr
)
295 scr
->balloon
->timer
= NULL
;
296 scr
->balloon
->ignoreTimer
= 1;
299 if (!XGetGeometry(dpy
, scr
->balloon
->objectWindow
, &foow
, &x
, &y
,
300 &w
, &foo
, &foo
, &foo
)) {
301 scr
->balloon
->prevType
= 0;
304 showText(scr
, x
, y
, scr
->balloon
->h
, w
, scr
->balloon
->text
);
310 frameBalloon(WObjDescriptor
*object
)
312 WFrameWindow
*fwin
= (WFrameWindow
*)object
->parent
;
313 WScreen
*scr
= fwin
->core
->screen_ptr
;
315 if (fwin
->titlebar
!= object
->self
316 || !fwin
->flags
.is_client_window_frame
) {
320 if (fwin
->title
&& fwin
->flags
.incomplete_title
) {
321 scr
->balloon
->h
= (fwin
->titlebar
? fwin
->titlebar
->height
: 0);
322 scr
->balloon
->text
= wstrdup(fwin
->title
);
323 scr
->balloon
->objectWindow
= fwin
->core
->window
;
324 scr
->balloon
->timer
= WMAddTimerHandler(BALLOON_DELAY
,
325 (WMCallback
*)showBalloon
, scr
);
331 miniwindowBalloon(WObjDescriptor
*object
)
333 WIcon
*icon
= (WIcon
*)object
->parent
;
334 WScreen
*scr
= icon
->core
->screen_ptr
;
336 if (!icon
->icon_name
) {
340 scr
->balloon
->h
= icon
->core
->height
;
341 scr
->balloon
->text
= wstrdup(icon
->icon_name
);
342 scr
->balloon
->objectWindow
= icon
->core
->window
;
343 if ((scr
->balloon
->prevType
== object
->parent_type
344 || scr
->balloon
->prevType
== WCLASS_APPICON
)
345 && scr
->balloon
->ignoreTimer
) {
346 XUnmapWindow(dpy
, scr
->balloon
->window
);
349 scr
->balloon
->timer
= WMAddTimerHandler(BALLOON_DELAY
,
350 (WMCallback
*)showBalloon
, scr
);
357 appiconBalloon(WObjDescriptor
*object
)
359 WAppIcon
*aicon
= (WAppIcon
*)object
->parent
;
360 WScreen
*scr
= aicon
->icon
->core
->screen_ptr
;
363 if (aicon
->command
&& aicon
->wm_class
) {
364 tmp
= wmalloc(strlen(aicon
->command
)+strlen(aicon
->wm_class
)+8);
365 sprintf(tmp
, "%s (%s)", aicon
->wm_class
, aicon
->command
);
366 scr
->balloon
->text
= tmp
;
367 } else if (aicon
->command
) {
368 scr
->balloon
->text
= wstrdup(aicon
->command
);
369 } else if (aicon
->wm_class
) {
370 scr
->balloon
->text
= wstrdup(aicon
->wm_class
);
375 scr
->balloon
->h
= aicon
->icon
->core
->height
-2;
377 scr
->balloon
->objectWindow
= aicon
->icon
->core
->window
;
378 if ((scr
->balloon
->prevType
== object
->parent_type
379 || scr
->balloon
->prevType
== WCLASS_MINIWINDOW
)
380 && scr
->balloon
->ignoreTimer
) {
381 XUnmapWindow(dpy
, scr
->balloon
->window
);
384 scr
->balloon
->timer
= WMAddTimerHandler(BALLOON_DELAY
,
385 (WMCallback
*)showBalloon
, scr
);
392 wBalloonInitialize(WScreen
*scr
)
395 XSetWindowAttributes attribs
;
398 bal
= wmalloc(sizeof(WBalloon
));
399 memset(bal
, 0, sizeof(WBalloon
));
403 vmask
= CWSaveUnder
|CWOverrideRedirect
|CWColormap
|CWBackPixel
405 attribs
.save_under
= True
;
406 attribs
.override_redirect
= True
;
407 attribs
.colormap
= scr
->w_colormap
;
408 attribs
.background_pixel
= scr
->icon_back_texture
->normal
.pixel
;
409 attribs
.border_pixel
= 0; /* do not care */
411 bal
->window
= XCreateWindow(dpy
, scr
->root_win
, 1, 1, 10, 10, 1,
412 scr
->w_depth
, CopyFromParent
,
413 scr
->w_visual
, vmask
, &attribs
);
415 /* select EnterNotify to so that the balloon will be unmapped
416 * when the pointer is moved over it */
417 XSelectInput(dpy
, bal
->window
, EnterWindowMask
);
424 wBalloonEnteredObject(WScreen
*scr
, WObjDescriptor
*object
)
426 WBalloon
*balloon
= scr
->balloon
;
428 if (balloon
->timer
) {
429 WMDeleteTimerHandler(balloon
->timer
);
430 balloon
->timer
= NULL
;
431 balloon
->ignoreTimer
= 0;
434 if (scr
->balloon
->text
)
435 free(scr
->balloon
->text
);
436 scr
->balloon
->text
= NULL
;
440 balloon
->ignoreTimer
= 0;
443 switch (object
->parent_type
) {
445 if (wPreferences
.window_balloon
) {
446 frameBalloon(object
);
450 case WCLASS_DOCK_ICON
:
451 if (object
->parent
!= scr
->clip_icon
&& wPreferences
.appicon_balloon
)
452 appiconBalloon(object
);
457 case WCLASS_MINIWINDOW
:
458 if (wPreferences
.miniwin_balloon
) {
459 miniwindowBalloon(object
);
463 if (wPreferences
.appicon_balloon
)
464 appiconBalloon(object
);
470 scr
->balloon
->prevType
= object
->parent_type
;
476 wBalloonHide(WScreen
*scr
)
479 if (scr
->balloon
->mapped
) {
480 XUnmapWindow(dpy
, scr
->balloon
->window
);
481 scr
->balloon
->mapped
= 0;
482 } else if (scr
->balloon
->timer
) {
483 WMDeleteTimerHandler(scr
->balloon
->timer
);
484 scr
->balloon
->timer
= NULL
;
486 scr
->balloon
->prevType
= 0;