Small fix for wmaker nightly build script 2
[wmaker-crm.git] / src / icon.c
blob79d82920318d34450783e31844c09a93416f8456
1 /* icon.c - window icon and dock and appicon parent
3 * Window Maker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
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"
25 #include <X11/Xlib.h>
26 #include <X11/Xutil.h>
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <stdint.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include <ctype.h>
33 #include <wraster.h>
34 #include <sys/stat.h>
36 #include "WindowMaker.h"
37 #include "wcore.h"
38 #include "texture.h"
39 #include "window.h"
40 #include "icon.h"
41 #include "actions.h"
42 #include "funcs.h"
43 #include "stacking.h"
44 #include "application.h"
45 #include "defaults.h"
46 #include "appicon.h"
47 #include "wmspec.h"
49 /**** Global varianebles ****/
50 extern WPreferences wPreferences;
52 #define MOD_MASK wPreferences.modifier_mask
54 extern Cursor wCursor[WCUR_LAST];
56 static void miniwindowExpose(WObjDescriptor * desc, XEvent * event);
57 static void miniwindowMouseDown(WObjDescriptor * desc, XEvent * event);
58 static void miniwindowDblClick(WObjDescriptor * desc, XEvent * event);
60 /****** Notification Observers ******/
62 static void appearanceObserver(void *self, WMNotification * notif)
64 WIcon *icon = (WIcon *) self;
65 uintptr_t flags = (uintptr_t)WMGetNotificationClientData(notif);
67 if (flags & WTextureSettings) {
68 icon->force_paint = 1;
70 if (flags & WFontSettings) {
71 icon->force_paint = 1;
74 if (flags & WColorSettings) {
78 wIconPaint(icon);
80 /* so that the appicon expose handlers will paint the appicon specific
81 * stuff */
82 XClearArea(dpy, icon->core->window, 0, 0, icon->core->width, icon->core->height, True);
85 static void tileObserver(void *self, WMNotification * notif)
87 WIcon *icon = (WIcon *) self;
89 icon->force_paint = 1;
90 wIconPaint(icon);
92 XClearArea(dpy, icon->core->window, 0, 0, 1, 1, True);
95 /************************************/
97 INLINE static void getSize(Drawable d, unsigned int *w, unsigned int *h, unsigned int *dep)
99 Window rjunk;
100 int xjunk, yjunk;
101 unsigned int bjunk;
103 XGetGeometry(dpy, d, &rjunk, &xjunk, &yjunk, w, h, &bjunk, dep);
106 WIcon *wIconCreate(WWindow * wwin)
108 WScreen *scr = wwin->screen_ptr;
109 WIcon *icon;
110 char *file;
111 unsigned long vmask = 0;
112 XSetWindowAttributes attribs;
114 icon = wmalloc(sizeof(WIcon));
115 memset(icon, 0, sizeof(WIcon));
116 icon->core = wCoreCreateTopLevel(scr, wwin->icon_x, wwin->icon_y,
117 wPreferences.icon_size, wPreferences.icon_size, 0);
119 if (wPreferences.use_saveunders) {
120 vmask |= CWSaveUnder;
121 attribs.save_under = True;
123 /* a white border for selecting it */
124 vmask |= CWBorderPixel;
125 attribs.border_pixel = scr->white_pixel;
127 XChangeWindowAttributes(dpy, icon->core->window, vmask, &attribs);
129 /* will be overriden if this is an application icon */
130 icon->core->descriptor.handle_mousedown = miniwindowMouseDown;
131 icon->core->descriptor.handle_expose = miniwindowExpose;
132 icon->core->descriptor.parent_type = WCLASS_MINIWINDOW;
133 icon->core->descriptor.parent = icon;
135 icon->core->stacking = wmalloc(sizeof(WStacking));
136 icon->core->stacking->above = NULL;
137 icon->core->stacking->under = NULL;
138 icon->core->stacking->window_level = NORMAL_ICON_LEVEL;
139 icon->core->stacking->child_of = NULL;
141 icon->owner = wwin;
142 if (wwin->wm_hints && (wwin->wm_hints->flags & IconWindowHint)) {
143 if (wwin->client_win == wwin->main_window) {
144 WApplication *wapp;
145 /* do not let miniwindow steal app-icon's icon window */
146 wapp = wApplicationOf(wwin->client_win);
147 if (!wapp || wapp->app_icon == NULL)
148 icon->icon_win = wwin->wm_hints->icon_window;
149 } else {
150 icon->icon_win = wwin->wm_hints->icon_window;
153 #ifdef NO_MINIWINDOW_TITLES
154 icon->show_title = 0;
155 #else
156 icon->show_title = 1;
157 #endif
158 if (!icon->image && !WFLAGP(wwin, always_user_icon))
159 icon->image = RRetainImage(wwin->net_icon_image);
160 if (!icon->image)
161 icon->image = wDefaultGetImage(scr, wwin->wm_instance, wwin->wm_class);
163 file = wDefaultGetIconFile(scr, wwin->wm_instance, wwin->wm_class, False);
164 if (file) {
165 icon->file = wstrdup(file);
168 icon->icon_name = wNETWMGetIconName(wwin->client_win);
169 if (icon->icon_name)
170 wwin->flags.net_has_icon_title = 1;
171 else
172 wGetIconName(dpy, wwin->client_win, &icon->icon_name);
174 icon->tile_type = TILE_NORMAL;
176 wIconUpdate(icon);
178 XFlush(dpy);
180 WMAddNotificationObserver(appearanceObserver, icon, WNIconAppearanceSettingsChanged, icon);
181 WMAddNotificationObserver(tileObserver, icon, WNIconTileSettingsChanged, icon);
182 return icon;
185 WIcon *wIconCreateWithIconFile(WScreen * scr, char *iconfile, int tile)
187 WIcon *icon;
188 unsigned long vmask = 0;
189 XSetWindowAttributes attribs;
191 icon = wmalloc(sizeof(WIcon));
192 memset(icon, 0, sizeof(WIcon));
193 icon->core = wCoreCreateTopLevel(scr, 0, 0, wPreferences.icon_size, wPreferences.icon_size, 0);
194 if (wPreferences.use_saveunders) {
195 vmask = CWSaveUnder;
196 attribs.save_under = True;
198 /* a white border for selecting it */
199 vmask |= CWBorderPixel;
200 attribs.border_pixel = scr->white_pixel;
202 XChangeWindowAttributes(dpy, icon->core->window, vmask, &attribs);
204 /* will be overriden if this is a application icon */
205 icon->core->descriptor.handle_mousedown = miniwindowMouseDown;
206 icon->core->descriptor.handle_expose = miniwindowExpose;
207 icon->core->descriptor.parent_type = WCLASS_MINIWINDOW;
208 icon->core->descriptor.parent = icon;
210 icon->core->stacking = wmalloc(sizeof(WStacking));
211 icon->core->stacking->above = NULL;
212 icon->core->stacking->under = NULL;
213 icon->core->stacking->window_level = NORMAL_ICON_LEVEL;
214 icon->core->stacking->child_of = NULL;
216 if (iconfile) {
217 icon->image = RLoadImage(scr->rcontext, iconfile, 0);
218 if (!icon->image) {
219 wwarning(_("error loading image file \"%s\""), iconfile, RMessageForError(RErrorCode));
222 icon->image = wIconValidateIconSize(scr, icon->image);
224 icon->file = wstrdup(iconfile);
227 icon->tile_type = tile;
229 wIconUpdate(icon);
231 WMAddNotificationObserver(appearanceObserver, icon, WNIconAppearanceSettingsChanged, icon);
232 WMAddNotificationObserver(tileObserver, icon, WNIconTileSettingsChanged, icon);
234 return icon;
237 void wIconDestroy(WIcon * icon)
239 WCoreWindow *core = icon->core;
240 WScreen *scr = core->screen_ptr;
242 WMRemoveNotificationObserver(icon);
244 if (icon->handlerID)
245 WMDeleteTimerHandler(icon->handlerID);
247 if (icon->icon_win) {
248 int x = 0, y = 0;
250 if (icon->owner) {
251 x = icon->owner->icon_x;
252 y = icon->owner->icon_y;
254 XUnmapWindow(dpy, icon->icon_win);
255 XReparentWindow(dpy, icon->icon_win, scr->root_win, x, y);
257 if (icon->icon_name)
258 XFree(icon->icon_name);
260 if (icon->pixmap)
261 XFreePixmap(dpy, icon->pixmap);
263 if (icon->file)
264 wfree(icon->file);
266 if (icon->image != NULL)
267 RReleaseImage(icon->image);
269 wCoreDestroy(icon->core);
270 wfree(icon);
273 static void drawIconTitle(WScreen * scr, Pixmap pixmap, int height)
275 XFillRectangle(dpy, pixmap, scr->icon_title_texture->normal_gc, 0, 0, wPreferences.icon_size, height + 1);
276 XDrawLine(dpy, pixmap, scr->icon_title_texture->light_gc, 0, 0, wPreferences.icon_size, 0);
277 XDrawLine(dpy, pixmap, scr->icon_title_texture->light_gc, 0, 0, 0, height + 1);
278 XDrawLine(dpy, pixmap, scr->icon_title_texture->dim_gc,
279 wPreferences.icon_size - 1, 0, wPreferences.icon_size - 1, height + 1);
282 static Pixmap makeIcon(WScreen * scr, RImage * icon, int titled, int shadowed, int tileType)
284 RImage *tile;
285 Pixmap pixmap;
286 int x, y, sx, sy;
287 unsigned w, h;
288 int theight = WMFontHeight(scr->icon_title_font);
290 if (tileType == TILE_NORMAL)
291 tile = RCloneImage(scr->icon_tile);
292 else {
293 assert(scr->clip_tile);
294 tile = RCloneImage(scr->clip_tile);
296 if (icon) {
297 w = (icon->width > wPreferences.icon_size)
298 ? wPreferences.icon_size : icon->width;
299 x = (wPreferences.icon_size - w) / 2;
300 sx = (icon->width - w) / 2;
302 if (!titled) {
303 h = (icon->height > wPreferences.icon_size)
304 ? wPreferences.icon_size : icon->height;
305 y = (wPreferences.icon_size - h) / 2;
306 sy = (icon->height - h) / 2;
307 } else {
308 h = (icon->height + theight > wPreferences.icon_size
309 ? wPreferences.icon_size - theight : icon->height);
310 y = theight + ((int)wPreferences.icon_size - theight - h) / 2;
311 sy = (icon->height - h) / 2;
313 RCombineArea(tile, icon, sx, sy, w, h, x, y);
316 if (shadowed) {
317 RColor color;
319 color.red = scr->icon_back_texture->light.red >> 8;
320 color.green = scr->icon_back_texture->light.green >> 8;
321 color.blue = scr->icon_back_texture->light.blue >> 8;
322 color.alpha = 150; /* about 60% */
323 RClearImage(tile, &color);
326 if (!RConvertImage(scr->rcontext, tile, &pixmap)) {
327 wwarning(_("error rendering image:%s"), RMessageForError(RErrorCode));
329 RReleaseImage(tile);
331 if (titled)
332 drawIconTitle(scr, pixmap, theight);
334 return pixmap;
337 void wIconChangeTitle(WIcon * icon, char *new_title)
339 int changed;
341 changed = (new_title == NULL && icon->icon_name != NULL)
342 || (new_title != NULL && icon->icon_name == NULL);
344 if (icon->icon_name != NULL)
345 XFree(icon->icon_name);
347 icon->icon_name = new_title;
349 if (changed)
350 icon->force_paint = 1;
351 wIconPaint(icon);
354 void wIconChangeImage(WIcon * icon, RImage * new_image)
356 assert(icon != NULL);
358 if (icon->image)
359 RReleaseImage(icon->image);
361 icon->image = new_image;
363 wIconUpdate(icon);
366 RImage *wIconValidateIconSize(WScreen * scr, RImage * icon)
368 RImage *tmp;
369 int w, h;
371 if (!icon)
372 return NULL;
373 #ifndef DONT_SCALE_ICONS
374 if (wPreferences.icon_size != 64) {
375 w = wPreferences.icon_size * icon->width / 64;
376 h = wPreferences.icon_size * icon->height / 64;
378 tmp = RScaleImage(icon, w, h);
379 RReleaseImage(icon);
380 icon = tmp;
382 #endif
383 #if 0
384 if (icon->width > wPreferences.icon_size || icon->height > wPreferences.icon_size) {
385 if (icon->width > icon->height) {
386 w = wPreferences.icon_size - 4;
387 h = w * icon->height / icon->width;
388 } else {
389 h = wPreferences.icon_size - 4;
390 w = h * icon->width / icon->height;
392 tmp = RScaleImage(icon, w, h);
393 RReleaseImage(icon);
394 icon = tmp;
396 #endif
398 return icon;
401 Bool wIconChangeImageFile(WIcon * icon, char *file)
403 WScreen *scr = icon->core->screen_ptr;
404 RImage *image;
405 char *path;
406 int error = 0;
408 if (!file) {
409 wIconChangeImage(icon, NULL);
410 return True;
413 path = FindImage(wPreferences.icon_path, file);
415 if (path && (image = RLoadImage(scr->rcontext, path, 0))) {
416 image = wIconValidateIconSize(icon->core->screen_ptr, image);
418 wIconChangeImage(icon, image);
419 } else {
420 error = 1;
423 if (path)
424 wfree(path);
426 return !error;
429 static char *getnameforicon(WWindow * wwin)
431 char *prefix, *suffix;
432 char *path;
433 int len;
435 if (wwin->wm_class && wwin->wm_instance) {
436 int len = strlen(wwin->wm_class) + strlen(wwin->wm_instance) + 2;
437 suffix = wmalloc(len);
438 snprintf(suffix, len, "%s.%s", wwin->wm_instance, wwin->wm_class);
439 } else if (wwin->wm_class) {
440 int len = strlen(wwin->wm_class) + 1;
441 suffix = wmalloc(len);
442 snprintf(suffix, len, "%s", wwin->wm_class);
443 } else if (wwin->wm_instance) {
444 int len = strlen(wwin->wm_instance) + 1;
445 suffix = wmalloc(len);
446 snprintf(suffix, len, "%s", wwin->wm_instance);
447 } else {
448 return NULL;
451 prefix = wusergnusteppath();
452 len = strlen(prefix) + 64 + strlen(suffix);
453 path = wmalloc(len + 1);
454 snprintf(path, len, "%s/Library/WindowMaker", prefix);
456 if (access(path, F_OK) != 0) {
457 if (mkdir(path, S_IRUSR | S_IWUSR | S_IXUSR)) {
458 wsyserror(_("could not create directory %s"), path);
459 wfree(path);
460 wfree(suffix);
461 return NULL;
464 strcat(path, "/CachedPixmaps");
465 if (access(path, F_OK) != 0) {
466 if (mkdir(path, S_IRUSR | S_IWUSR | S_IXUSR) != 0) {
467 wsyserror(_("could not create directory %s"), path);
468 wfree(path);
469 wfree(suffix);
470 return NULL;
474 strcat(path, "/");
475 strcat(path, suffix);
476 strcat(path, ".xpm");
477 wfree(suffix);
479 return path;
483 * wIconStore--
484 * Stores the client supplied icon at ~/GNUstep/Library/WindowMaker/CachedPixmaps
485 * and returns the path for that icon. Returns NULL if there is no
486 * client supplied icon or on failure.
488 * Side effects:
489 * New directories might be created.
491 char *wIconStore(WIcon * icon)
493 char *path;
494 RImage *image;
495 WWindow *wwin = icon->owner;
497 if (!wwin || !wwin->wm_hints || !(wwin->wm_hints->flags & IconPixmapHint)
498 || wwin->wm_hints->icon_pixmap == None)
499 return NULL;
501 path = getnameforicon(wwin);
502 if (!path)
503 return NULL;
505 image = RCreateImageFromDrawable(icon->core->screen_ptr->rcontext,
506 wwin->wm_hints->icon_pixmap, (wwin->wm_hints->flags & IconMaskHint)
507 ? wwin->wm_hints->icon_mask : None);
508 if (!image) {
509 wfree(path);
510 return NULL;
513 if (!RSaveImage(image, path, "XPM")) {
514 wfree(path);
515 path = NULL;
517 RReleaseImage(image);
519 return path;
522 static void cycleColor(void *data)
524 WIcon *icon = (WIcon *) data;
525 WScreen *scr = icon->core->screen_ptr;
526 XGCValues gcv;
528 icon->step--;
529 gcv.dash_offset = icon->step;
530 XChangeGC(dpy, scr->icon_select_gc, GCDashOffset, &gcv);
532 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
533 icon->core->width - 1, icon->core->height - 1);
534 icon->handlerID = WMAddTimerHandler(COLOR_CYCLE_DELAY, cycleColor, icon);
537 void wIconSelect(WIcon * icon)
539 WScreen *scr = icon->core->screen_ptr;
540 icon->selected = !icon->selected;
542 if (icon->selected) {
543 icon->step = 0;
544 if (!wPreferences.dont_blink)
545 icon->handlerID = WMAddTimerHandler(10, cycleColor, icon);
546 else
547 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
548 icon->core->width - 1, icon->core->height - 1);
549 } else {
550 if (icon->handlerID) {
551 WMDeleteTimerHandler(icon->handlerID);
552 icon->handlerID = NULL;
554 XClearArea(dpy, icon->core->window, 0, 0, icon->core->width, icon->core->height, True);
558 void wIconUpdate(WIcon * icon)
560 WScreen *scr = icon->core->screen_ptr;
561 int title_height = WMFontHeight(scr->icon_title_font);
562 WWindow *wwin = icon->owner;
564 assert(scr->icon_tile != NULL);
566 if (icon->pixmap != None)
567 XFreePixmap(dpy, icon->pixmap);
568 icon->pixmap = None;
570 if (wwin && (WFLAGP(wwin, always_user_icon) || wwin->net_icon_image))
571 goto user_icon;
573 /* use client specified icon window */
574 if (icon->icon_win != None) {
575 XWindowAttributes attr;
576 int resize = 0;
577 unsigned int width, height, depth;
578 int theight;
579 Pixmap pixmap;
581 getSize(icon->icon_win, &width, &height, &depth);
583 if (width > wPreferences.icon_size) {
584 resize = 1;
585 width = wPreferences.icon_size;
587 if (height > wPreferences.icon_size) {
588 resize = 1;
589 height = wPreferences.icon_size;
591 if (icon->show_title && (height + title_height < wPreferences.icon_size)) {
592 pixmap = XCreatePixmap(dpy, scr->w_win, wPreferences.icon_size,
593 wPreferences.icon_size, scr->w_depth);
594 XSetClipMask(dpy, scr->copy_gc, None);
595 XCopyArea(dpy, scr->icon_tile_pixmap, pixmap, scr->copy_gc, 0, 0,
596 wPreferences.icon_size, wPreferences.icon_size, 0, 0);
597 drawIconTitle(scr, pixmap, title_height);
598 theight = title_height;
599 } else {
600 pixmap = None;
601 theight = 0;
602 XSetWindowBackgroundPixmap(dpy, icon->core->window, scr->icon_tile_pixmap);
605 XSetWindowBorderWidth(dpy, icon->icon_win, 0);
606 XReparentWindow(dpy, icon->icon_win, icon->core->window,
607 (wPreferences.icon_size - width) / 2,
608 theight + (wPreferences.icon_size - height - theight) / 2);
609 if (resize)
610 XResizeWindow(dpy, icon->icon_win, width, height);
612 XMapWindow(dpy, icon->icon_win);
614 XAddToSaveSet(dpy, icon->icon_win);
616 icon->pixmap = pixmap;
618 if (XGetWindowAttributes(dpy, icon->icon_win, &attr)) {
619 if (attr.all_event_masks & ButtonPressMask) {
620 wHackedGrabButton(Button1, MOD_MASK, icon->core->window, True,
621 ButtonPressMask, GrabModeSync, GrabModeAsync,
622 None, wCursor[WCUR_ARROW]);
625 } else if (wwin && wwin->wm_hints && (wwin->wm_hints->flags & IconPixmapHint)) {
626 int x, y;
627 unsigned int w, h;
628 Window jw;
629 int ji, dotitle;
630 unsigned int ju, d;
631 Pixmap pixmap;
633 if (!XGetGeometry(dpy, wwin->wm_hints->icon_pixmap, &jw, &ji, &ji, &w, &h, &ju, &d)) {
634 icon->owner->wm_hints->flags &= ~IconPixmapHint;
635 goto user_icon;
638 pixmap = XCreatePixmap(dpy, icon->core->window, wPreferences.icon_size,
639 wPreferences.icon_size, scr->w_depth);
640 XSetClipMask(dpy, scr->copy_gc, None);
641 XCopyArea(dpy, scr->icon_tile_pixmap, pixmap, scr->copy_gc, 0, 0,
642 wPreferences.icon_size, wPreferences.icon_size, 0, 0);
644 if (w > wPreferences.icon_size)
645 w = wPreferences.icon_size;
646 x = (wPreferences.icon_size - w) / 2;
648 if (icon->show_title && (title_height < wPreferences.icon_size)) {
649 drawIconTitle(scr, pixmap, title_height);
650 dotitle = 1;
652 if (h > wPreferences.icon_size - title_height - 2) {
653 h = wPreferences.icon_size - title_height - 2;
654 y = title_height + 1;
655 } else {
656 y = (wPreferences.icon_size - h - title_height) / 2 + title_height + 1;
658 } else {
659 dotitle = 0;
660 if (w > wPreferences.icon_size)
661 w = wPreferences.icon_size;
662 y = (wPreferences.icon_size - h) / 2;
665 if (wwin->wm_hints->flags & IconMaskHint)
666 XSetClipMask(dpy, scr->copy_gc, wwin->wm_hints->icon_mask);
668 XSetClipOrigin(dpy, scr->copy_gc, x, y);
670 if (d != scr->w_depth) {
671 XSetForeground(dpy, scr->copy_gc, scr->black_pixel);
672 XSetBackground(dpy, scr->copy_gc, scr->white_pixel);
673 XCopyPlane(dpy, wwin->wm_hints->icon_pixmap, pixmap, scr->copy_gc, 0, 0, w, h, x, y, 1);
674 } else {
675 XCopyArea(dpy, wwin->wm_hints->icon_pixmap, pixmap, scr->copy_gc, 0, 0, w, h, x, y);
678 XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
680 icon->pixmap = pixmap;
681 } else {
682 user_icon:
684 if (icon->image) {
685 icon->pixmap = makeIcon(scr, icon->image, icon->show_title,
686 icon->shadowed, icon->tile_type);
687 } else {
688 /* make default icons */
690 if (!scr->def_icon_pixmap) {
691 RImage *image = NULL;
692 char *path;
693 char *file;
695 file = wDefaultGetIconFile(scr, NULL, NULL, False);
696 if (file) {
697 path = FindImage(wPreferences.icon_path, file);
698 if (!path) {
699 wwarning(_("could not find default icon \"%s\""), file);
700 goto make_icons;
703 image = RLoadImage(scr->rcontext, path, 0);
704 if (!image) {
705 wwarning(_("could not load default icon \"%s\":%s"),
706 file, RMessageForError(RErrorCode));
708 wfree(path);
710 make_icons:
712 image = wIconValidateIconSize(scr, image);
713 scr->def_icon_pixmap = makeIcon(scr, image, False, False, icon->tile_type);
714 scr->def_ticon_pixmap = makeIcon(scr, image, True, False, icon->tile_type);
715 if (image)
716 RReleaseImage(image);
719 if (icon->show_title) {
720 XSetWindowBackgroundPixmap(dpy, icon->core->window, scr->def_ticon_pixmap);
721 } else {
722 XSetWindowBackgroundPixmap(dpy, icon->core->window, scr->def_icon_pixmap);
724 icon->pixmap = None;
727 if (icon->pixmap != None) {
728 XSetWindowBackgroundPixmap(dpy, icon->core->window, icon->pixmap);
730 XClearWindow(dpy, icon->core->window);
732 wIconPaint(icon);
735 void wIconPaint(WIcon * icon)
737 WScreen *scr = icon->core->screen_ptr;
738 int x;
739 char *tmp;
741 if (icon->force_paint) {
742 icon->force_paint = 0;
743 wIconUpdate(icon);
744 return;
747 XClearWindow(dpy, icon->core->window);
749 /* draw the icon title */
750 if (icon->show_title && icon->icon_name != NULL) {
751 int l;
752 int w;
754 tmp = ShrinkString(scr->icon_title_font, icon->icon_name, wPreferences.icon_size - 4);
755 w = WMWidthOfString(scr->icon_title_font, tmp, l = strlen(tmp));
757 if (w > icon->core->width - 4)
758 x = (icon->core->width - 4) - w;
759 else
760 x = (icon->core->width - w) / 2;
762 WMDrawString(scr->wmscreen, icon->core->window, scr->icon_title_color,
763 scr->icon_title_font, x, 1, tmp, l);
764 wfree(tmp);
767 if (icon->selected)
768 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
769 icon->core->width - 1, icon->core->height - 1);
772 /******************************************************************/
774 static void miniwindowExpose(WObjDescriptor * desc, XEvent * event)
776 wIconPaint(desc->parent);
779 static void miniwindowDblClick(WObjDescriptor * desc, XEvent * event)
781 WIcon *icon = desc->parent;
783 assert(icon->owner != NULL);
785 wDeiconifyWindow(icon->owner);
788 static void miniwindowMouseDown(WObjDescriptor * desc, XEvent * event)
790 WIcon *icon = desc->parent;
791 WWindow *wwin = icon->owner;
792 XEvent ev;
793 int x = wwin->icon_x, y = wwin->icon_y;
794 int dx = event->xbutton.x, dy = event->xbutton.y;
795 int grabbed = 0;
796 int clickButton = event->xbutton.button;
797 Bool hasMoved = False;
799 if (WCHECK_STATE(WSTATE_MODAL))
800 return;
802 if (IsDoubleClick(icon->core->screen_ptr, event)) {
803 miniwindowDblClick(desc, event);
804 return;
806 #ifdef DEBUG
807 puts("Moving miniwindow");
808 #endif
809 if (event->xbutton.button == Button1) {
810 if (event->xbutton.state & MOD_MASK)
811 wLowerFrame(icon->core);
812 else
813 wRaiseFrame(icon->core);
814 if (event->xbutton.state & ShiftMask) {
815 wIconSelect(icon);
816 wSelectWindow(icon->owner, !wwin->flags.selected);
818 } else if (event->xbutton.button == Button3) {
819 WObjDescriptor *desc;
821 OpenMiniwindowMenu(wwin, event->xbutton.x_root, event->xbutton.y_root);
823 /* allow drag select of menu */
824 desc = &wwin->screen_ptr->window_menu->menu->descriptor;
825 event->xbutton.send_event = True;
826 (*desc->handle_mousedown) (desc, event);
828 return;
831 if (XGrabPointer(dpy, icon->core->window, False, ButtonMotionMask
832 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
833 GrabModeAsync, None, None, CurrentTime) != GrabSuccess) {
834 #ifdef DEBUG0
835 wwarning("pointer grab failed for icon move");
836 #endif
838 while (1) {
839 WMMaskEvent(dpy, PointerMotionMask | ButtonReleaseMask | ButtonPressMask
840 | ButtonMotionMask | ExposureMask, &ev);
841 switch (ev.type) {
842 case Expose:
843 WMHandleEvent(&ev);
844 break;
846 case MotionNotify:
847 hasMoved = True;
848 if (!grabbed) {
849 if (abs(dx - ev.xmotion.x) >= MOVE_THRESHOLD
850 || abs(dy - ev.xmotion.y) >= MOVE_THRESHOLD) {
851 XChangeActivePointerGrab(dpy, ButtonMotionMask
852 | ButtonReleaseMask | ButtonPressMask,
853 wCursor[WCUR_MOVE], CurrentTime);
854 grabbed = 1;
855 } else {
856 break;
859 x = ev.xmotion.x_root - dx;
860 y = ev.xmotion.y_root - dy;
861 XMoveWindow(dpy, icon->core->window, x, y);
862 break;
864 case ButtonPress:
865 break;
867 case ButtonRelease:
868 if (ev.xbutton.button != clickButton)
869 break;
871 if (wwin->icon_x != x || wwin->icon_y != y)
872 wwin->flags.icon_moved = 1;
874 XMoveWindow(dpy, icon->core->window, x, y);
876 wwin->icon_x = x;
877 wwin->icon_y = y;
878 #ifdef DEBUG
879 puts("End miniwindow move");
880 #endif
881 XUngrabPointer(dpy, CurrentTime);
883 if (wPreferences.auto_arrange_icons)
884 wArrangeIcons(wwin->screen_ptr, True);
885 if (wPreferences.single_click && !hasMoved)
886 miniwindowDblClick(desc, event);
887 return;