Bug fixes for 0.20.3 pre-release 2
[wmaker-crm.git] / src / balloon.c
blob0d839d6be9f285874847e7df656368a9ec90b5c9
1 /*
2 * Window Maker window manager
3 *
4 * Copyright (c) 1998 Alfredo K. Kojima
5 *
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,
19 * USA.
22 #include "wconfig.h"
24 #ifdef BALLOON_TEXT
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
28 #ifdef SHAPED_BALLOON
29 #include <X11/extensions/shape.h>
30 #endif
32 #include <stdlib.h>
33 #include <string.h>
35 #include <wraster.h>
37 #include "WindowMaker.h"
38 #include "screen.h"
39 #include "texture.h"
40 #include "wcore.h"
41 #include "framewin.h"
42 #include "icon.h"
43 #include "appicon.h"
44 #include "funcs.h"
45 #include "workspace.h"
46 #include "balloon.h"
50 extern WPreferences wPreferences;
52 typedef struct _WBalloon {
53 Window window;
55 #ifdef SHAPED_BALLOON
56 GC monoGC;
57 #endif
58 int prevType;
60 Window objectWindow;
61 char *text;
62 int h;
64 WMHandlerID timer;
66 Pixmap contents;
68 char mapped;
69 char ignoreTimer;
70 } WBalloon;
73 #define TOP 0
74 #define BOTTOM 1
75 #define LEFT 0
76 #define RIGHT 2
78 #define TLEFT (TOP|LEFT)
79 #define TRIGHT (TOP|RIGHT)
80 #define BLEFT (BOTTOM|LEFT)
81 #define BRIGHT (BOTTOM|RIGHT)
84 #ifdef SHAPED_BALLOON
86 #define SPACE 12
87 #define MIN(a,b) ((a)<(b)?(a):(b))
88 #define MAX(a,b) ((a)>(b)?(a):(b))
90 static void
91 drawBalloon(Pixmap pix, GC gc, int x, int y, int w, int h, int side)
93 int rad = h*3/10;
94 XPoint pt[3];
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);
105 if (side & BOTTOM) {
106 pt[0].y = y+h-1;
107 pt[1].y = y+h-1+SPACE;
108 pt[2].y = y+h-1;
109 } else {
110 pt[0].y = y;
111 pt[1].y = y-SPACE;
112 pt[2].y = y;
114 if (side & RIGHT) {
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;
118 } else {
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);
127 static Pixmap
128 makePixmap(WScreen *scr, int width, int height, int side, Pixmap *mask)
130 WBalloon *bal = scr->balloon;
131 Pixmap bitmap;
132 Pixmap pixmap;
133 int x, y;
135 bitmap = XCreatePixmap(dpy, scr->root_win, width+SPACE, height+SPACE, 1);
137 if (!bal->monoGC) {
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,
144 scr->w_depth);
145 XSetForeground(dpy, scr->draw_gc, scr->black_pixel);
146 XFillRectangle(dpy, pixmap, scr->draw_gc, 0, 0, width+SPACE, height+SPACE);
148 if (side & BOTTOM) {
149 y = 0;
150 } else {
151 y = SPACE;
153 x = 0;
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);
160 *mask = bitmap;
162 return pixmap;
166 static void
167 showText(WScreen *scr, int x, int y, int h, int w, char *text)
169 int width;
170 int height;
171 Pixmap pixmap;
172 Pixmap mask;
173 WFont *font = scr->info_text_font;
174 int side = 0;
175 int ty;
176 int bx, by;
178 if (scr->balloon->contents)
179 XFreePixmap(dpy, scr->balloon->contents);
181 width = wTextWidth(font->font, text, strlen(text))+16;
182 height = font->height + 4;
184 if (height < 16)
185 height = 16;
186 if (width < height)
187 width = height;
190 if (x + width > scr->scr_width) {
191 side = RIGHT;
192 bx = x - width + w/2;
193 if (bx < 0)
194 bx = 0;
195 } else {
196 side = LEFT;
197 bx = x + w/2;
199 if (bx + width > scr->scr_width)
200 bx = scr->scr_width - width;
202 if (y - (height + SPACE) < 0) {
203 side |= TOP;
204 by = y+h-1;
205 ty = SPACE;
206 } else {
207 side |= BOTTOM;
208 by = y - (height + SPACE);
209 ty = 0;
211 pixmap = makePixmap(scr, width, height, side, &mask);
213 XSetForeground(dpy, scr->info_text_gc, scr->black_pixel);
215 wDrawString(pixmap, font, scr->info_text_gc, 8,
216 ty + font->y + (height - font->height)/2,
217 text, strlen(text));
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,
224 ShapeSet);
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 */
232 static void
233 showText(WScreen *scr, int x, int y, int h, int w, char *text)
235 int width;
236 int height;
237 Pixmap pixmap;
238 WFont *font = scr->info_text_font;
240 if (scr->balloon->contents)
241 XFreePixmap(dpy, scr->balloon->contents);
243 width = wTextWidth(font->font, text, strlen(text))+8;
244 height = font->height + 4;
246 if (x < 0)
247 x = 0;
248 else if (x + width > scr->scr_width-1)
249 x = scr->scr_width - width;
251 if (y - height - 2 < 0) {
252 y += h;
253 if (y < 0)
254 y = 0;
255 } else {
256 y -= height + 2;
259 if (scr->window_title_texture[0])
260 XSetForeground(dpy, scr->draw_gc,
261 scr->window_title_texture[0]->any.color.pixel);
262 else
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 wDrawString(pixmap, font->font, scr->info_text_gc, 4, font->y+2, text,
271 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 */
287 static void
288 showBalloon(WScreen *scr)
290 int x, y;
291 Window foow;
292 unsigned foo, w;
294 if (scr->balloon) {
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;
302 return;
304 showText(scr, x, y, scr->balloon->h, w, scr->balloon->text);
309 static void
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) {
317 wBalloonHide(scr);
318 return;
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);
330 static void
331 miniwindowBalloon(WObjDescriptor *object)
333 WIcon *icon = (WIcon*)object->parent;
334 WScreen *scr = icon->core->screen_ptr;
336 if (!icon->icon_name) {
337 wBalloonHide(scr);
338 return;
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->ignoreTimer) {
345 XUnmapWindow(dpy, scr->balloon->window);
346 showBalloon(scr);
347 } else {
348 scr->balloon->timer = WMAddTimerHandler(BALLOON_DELAY,
349 (WMCallback*)showBalloon, scr);
355 static void
356 appiconBalloon(WObjDescriptor *object)
358 WAppIcon *aicon = (WAppIcon*)object->parent;
359 WScreen *scr = aicon->icon->core->screen_ptr;
360 char *tmp;
362 if (aicon->command && aicon->wm_class) {
363 tmp = wmalloc(strlen(aicon->command)+strlen(aicon->wm_class)+8);
364 sprintf(tmp, "%s (%s)", aicon->wm_class, aicon->command);
365 scr->balloon->text = tmp;
366 } else if (aicon->command) {
367 scr->balloon->text = wstrdup(aicon->command);
368 } else if (aicon->wm_class) {
369 scr->balloon->text = wstrdup(aicon->wm_class);
370 } else {
371 wBalloonHide(scr);
372 return;
374 scr->balloon->h = aicon->icon->core->height-2;
376 scr->balloon->objectWindow = aicon->icon->core->window;
377 if (scr->balloon->prevType == object->parent_type
378 && scr->balloon->ignoreTimer) {
379 XUnmapWindow(dpy, scr->balloon->window);
380 showBalloon(scr);
381 } else {
382 scr->balloon->timer = WMAddTimerHandler(BALLOON_DELAY,
383 (WMCallback*)showBalloon, scr);
389 void
390 wBalloonInitialize(WScreen *scr)
392 WBalloon *bal;
393 XSetWindowAttributes attribs;
394 unsigned long vmask;
396 bal = wmalloc(sizeof(WBalloon));
397 memset(bal, 0, sizeof(WBalloon));
399 scr->balloon = bal;
401 vmask = CWSaveUnder|CWOverrideRedirect|CWColormap;
402 attribs.save_under = True;
403 attribs.override_redirect = True;
404 attribs.colormap = scr->w_colormap;
406 bal->window = XCreateWindow(dpy, scr->root_win, 1, 1, 10, 10, 1,
407 scr->w_depth, CopyFromParent,
408 scr->w_visual, vmask, &attribs);
409 #if 0
410 /* select EnterNotify to so that the balloon will be unmapped
411 * when the pointer is moved over it */
412 XSelectInput(dpy, bal->window, EnterWindowMask);
413 #endif
418 void
419 wBalloonEnteredObject(WScreen *scr, WObjDescriptor *object)
421 WBalloon *balloon = scr->balloon;
423 if (balloon->timer) {
424 WMDeleteTimerHandler(balloon->timer);
425 balloon->timer = NULL;
426 balloon->ignoreTimer = 0;
429 if (scr->balloon->text)
430 free(scr->balloon->text);
431 scr->balloon->text = NULL;
433 if (!object) {
434 wBalloonHide(scr);
435 balloon->ignoreTimer = 0;
436 return;
438 switch (object->parent_type) {
439 case WCLASS_FRAME:
440 if (wPreferences.window_balloon) {
441 frameBalloon(object);
443 break;
445 case WCLASS_DOCK_ICON:
446 if (object->parent != scr->clip_icon && wPreferences.appicon_balloon)
447 appiconBalloon(object);
448 break;
450 case WCLASS_MINIWINDOW:
451 if (wPreferences.miniwin_balloon) {
452 miniwindowBalloon(object);
454 break;
455 case WCLASS_APPICON:
456 if (wPreferences.appicon_balloon)
457 appiconBalloon(object);
458 break;
459 default:
460 wBalloonHide(scr);
461 break;
463 scr->balloon->prevType = object->parent_type;
468 void
469 wBalloonHide(WScreen *scr)
471 if (scr) {
472 if (scr->balloon->mapped) {
473 XUnmapWindow(dpy, scr->balloon->window);
474 scr->balloon->mapped = 0;
475 } else if (scr->balloon->timer) {
476 WMDeleteTimerHandler(scr->balloon->timer);
477 scr->balloon->timer = NULL;
479 scr->balloon->prevType = 0;
482 #endif