wIconChangeImageFile change image only if found
[wmaker-crm.git] / src / icon.c
blobf693e77fd9c58f7d155b06d7a800a8ac0d0f26db
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 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.
22 #include "wconfig.h"
24 #include <X11/Xlib.h>
25 #include <X11/Xutil.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <stdint.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <ctype.h>
32 #include <wraster.h>
33 #include <sys/stat.h>
35 #include "WindowMaker.h"
36 #include "wcore.h"
37 #include "texture.h"
38 #include "window.h"
39 #include "icon.h"
40 #include "actions.h"
41 #include "funcs.h"
42 #include "stacking.h"
43 #include "application.h"
44 #include "defaults.h"
45 #include "appicon.h"
46 #include "wmspec.h"
48 /**** Global varianebles ****/
49 extern WPreferences wPreferences;
51 #define MOD_MASK wPreferences.modifier_mask
52 #define CACHE_ICON_PATH "/Library/WindowMaker/CachedPixmaps"
53 #define ICON_BORDER 3
55 extern Cursor wCursor[WCUR_LAST];
57 static void miniwindowExpose(WObjDescriptor * desc, XEvent * event);
58 static void miniwindowMouseDown(WObjDescriptor * desc, XEvent * event);
59 static void miniwindowDblClick(WObjDescriptor * desc, XEvent * event);
61 static WIcon *icon_create_core(WScreen *scr, int coord_x, int coord_y);
63 static void get_pixmap_icon_from_icon_win(WIcon *icon);
64 static int get_pixmap_icon_from_wm_hints(WIcon *icon);
65 static void get_pixmap_icon_from_user_icon(WIcon *icon);
66 static void get_pixmap_icon_from_default_icon(WIcon *icon);
68 static void icon_update_pixmap(WIcon *icon, RImage *image);
70 static RImage *get_default_image(WScreen *scr);
71 /****** Notification Observers ******/
73 static void appearanceObserver(void *self, WMNotification * notif)
75 WIcon *icon = (WIcon *) self;
76 uintptr_t flags = (uintptr_t)WMGetNotificationClientData(notif);
78 if ((flags & WTextureSettings) || (flags & WFontSettings))
79 icon->force_paint = 1;
81 wIconPaint(icon);
83 /* so that the appicon expose handlers will paint the appicon specific
84 * stuff */
85 XClearArea(dpy, icon->core->window, 0, 0, icon->core->width, icon->core->height, True);
88 static void tileObserver(void *self, WMNotification * notif)
90 WIcon *icon = (WIcon *) self;
92 icon->force_paint = 1;
93 wIconPaint(icon);
95 XClearArea(dpy, icon->core->window, 0, 0, 1, 1, True);
98 /************************************/
100 INLINE static void getSize(Drawable d, unsigned int *w, unsigned int *h, unsigned int *dep)
102 Window rjunk;
103 int xjunk, yjunk;
104 unsigned int bjunk;
106 XGetGeometry(dpy, d, &rjunk, &xjunk, &yjunk, w, h, &bjunk, dep);
109 WIcon *icon_create_for_wwindow(WWindow *wwin)
111 WScreen *scr = wwin->screen_ptr;
112 WIcon *icon;
113 char *file;
115 icon = icon_create_core(scr, wwin->icon_x, wwin->icon_y);
117 icon->owner = wwin;
118 if (wwin->wm_hints && (wwin->wm_hints->flags & IconWindowHint)) {
119 if (wwin->client_win == wwin->main_window) {
120 WApplication *wapp;
121 /* do not let miniwindow steal app-icon's icon window */
122 wapp = wApplicationOf(wwin->client_win);
123 if (!wapp || wapp->app_icon == NULL)
124 icon->icon_win = wwin->wm_hints->icon_window;
125 } else {
126 icon->icon_win = wwin->wm_hints->icon_window;
129 #ifdef NO_MINIWINDOW_TITLES
130 icon->show_title = 0;
131 #else
132 icon->show_title = 1;
133 #endif
135 icon->icon_name = wNETWMGetIconName(wwin->client_win);
136 if (icon->icon_name)
137 wwin->flags.net_has_icon_title = 1;
138 else
139 wGetIconName(dpy, wwin->client_win, &icon->icon_name);
141 /* Get the application icon, default included */
142 file = get_default_icon_filename(scr, wwin->wm_instance, wwin->wm_class, NULL, True);
143 if (file) {
144 icon->file = wstrdup(file);
145 icon->file_image = get_rimage_from_file(scr, icon->file, wPreferences.icon_size);
146 wfree(file);
149 icon->tile_type = TILE_NORMAL;
151 wIconUpdate(icon);
153 WMAddNotificationObserver(appearanceObserver, icon, WNIconAppearanceSettingsChanged, icon);
154 WMAddNotificationObserver(tileObserver, icon, WNIconTileSettingsChanged, icon);
156 return icon;
159 WIcon *icon_create_for_dock(WScreen *scr, char *command, char *wm_instance, char *wm_class, int tile)
161 WIcon *icon;
162 char *file = NULL;
164 icon = icon_create_core(scr, 0, 0);
166 /* Search the icon using instance and class, without default icon */
167 file = get_default_icon_filename(scr, wm_instance, wm_class, command, False);
168 if (file) {
169 icon->file = wstrdup(file);
170 icon->file_image = get_rimage_from_file(scr, icon->file, wPreferences.icon_size);
171 wfree(file);
174 icon->tile_type = tile;
176 wIconUpdate(icon);
178 WMAddNotificationObserver(appearanceObserver, icon, WNIconAppearanceSettingsChanged, icon);
179 WMAddNotificationObserver(tileObserver, icon, WNIconTileSettingsChanged, icon);
181 return icon;
184 static WIcon *icon_create_core(WScreen *scr, int coord_x, int coord_y)
186 WIcon *icon;
187 unsigned long vmask = 0;
188 XSetWindowAttributes attribs;
190 icon = wmalloc(sizeof(WIcon));
191 icon->core = wCoreCreateTopLevel(scr,
192 coord_x,
193 coord_y,
194 wPreferences.icon_size,
195 wPreferences.icon_size,
196 0, scr->w_depth, scr->w_visual, scr->w_colormap);
198 if (wPreferences.use_saveunders) {
199 vmask = CWSaveUnder;
200 attribs.save_under = True;
203 /* a white border for selecting it */
204 vmask |= CWBorderPixel;
205 attribs.border_pixel = scr->white_pixel;
207 XChangeWindowAttributes(dpy, icon->core->window, vmask, &attribs);
209 /* will be overriden if this is a application icon */
210 icon->core->descriptor.handle_mousedown = miniwindowMouseDown;
211 icon->core->descriptor.handle_expose = miniwindowExpose;
212 icon->core->descriptor.parent_type = WCLASS_MINIWINDOW;
213 icon->core->descriptor.parent = icon;
215 icon->core->stacking = wmalloc(sizeof(WStacking));
216 icon->core->stacking->above = NULL;
217 icon->core->stacking->under = NULL;
218 icon->core->stacking->window_level = NORMAL_ICON_LEVEL;
219 icon->core->stacking->child_of = NULL;
221 /* Icon image */
222 icon->file = NULL;
223 icon->file_image = NULL;
225 return icon;
228 void wIconDestroy(WIcon * icon)
230 WCoreWindow *core = icon->core;
231 WScreen *scr = core->screen_ptr;
233 WMRemoveNotificationObserver(icon);
235 if (icon->handlerID)
236 WMDeleteTimerHandler(icon->handlerID);
238 if (icon->icon_win) {
239 int x = 0, y = 0;
241 if (icon->owner) {
242 x = icon->owner->icon_x;
243 y = icon->owner->icon_y;
245 XUnmapWindow(dpy, icon->icon_win);
246 XReparentWindow(dpy, icon->icon_win, scr->root_win, x, y);
248 if (icon->icon_name)
249 XFree(icon->icon_name);
251 if (icon->pixmap)
252 XFreePixmap(dpy, icon->pixmap);
254 if (icon->file)
255 wfree(icon->file);
257 if (icon->file_image != NULL)
258 RReleaseImage(icon->file_image);
260 wCoreDestroy(icon->core);
261 wfree(icon);
264 static void drawIconTitle(WScreen * scr, Pixmap pixmap, int height)
266 XFillRectangle(dpy, pixmap, scr->icon_title_texture->normal_gc, 0, 0, wPreferences.icon_size, height + 1);
267 XDrawLine(dpy, pixmap, scr->icon_title_texture->light_gc, 0, 0, wPreferences.icon_size, 0);
268 XDrawLine(dpy, pixmap, scr->icon_title_texture->light_gc, 0, 0, 0, height + 1);
269 XDrawLine(dpy, pixmap, scr->icon_title_texture->dim_gc,
270 wPreferences.icon_size - 1, 0, wPreferences.icon_size - 1, height + 1);
273 static void icon_update_pixmap(WIcon *icon, RImage *image)
275 RImage *tile;
276 Pixmap pixmap;
277 int x, y, sx, sy;
278 unsigned w, h;
279 int theight = 0;
280 WScreen *scr = icon->core->screen_ptr;
281 int titled = icon->show_title;
283 if (icon->tile_type == TILE_NORMAL) {
284 tile = RCloneImage(scr->icon_tile);
285 } else {
286 assert(scr->clip_tile);
287 tile = RCloneImage(scr->clip_tile);
290 if (image) {
291 w = (image->width > wPreferences.icon_size)
292 ? wPreferences.icon_size : image->width;
293 x = (wPreferences.icon_size - w) / 2;
294 sx = (image->width - w) / 2;
296 if (titled)
297 theight = WMFontHeight(scr->icon_title_font);
299 h = (image->height + theight > wPreferences.icon_size
300 ? wPreferences.icon_size - theight : image->height);
301 y = theight + (wPreferences.icon_size - theight - h) / 2;
302 sy = (image->height - h) / 2;
304 RCombineArea(tile, image, sx, sy, w, h, x, y);
307 if (icon->shadowed) {
308 RColor color;
310 color.red = scr->icon_back_texture->light.red >> 8;
311 color.green = scr->icon_back_texture->light.green >> 8;
312 color.blue = scr->icon_back_texture->light.blue >> 8;
313 color.alpha = 150; /* about 60% */
314 RClearImage(tile, &color);
317 if (icon->highlighted) {
318 RColor color;
320 color.red = color.green = color.blue = 0;
321 color.alpha = 160;
322 RLightImage(tile, &color);
325 if (!RConvertImage(scr->rcontext, tile, &pixmap))
326 wwarning(_("error rendering image:%s"), RMessageForError(RErrorCode));
328 RReleaseImage(tile);
330 if (titled)
331 drawIconTitle(scr, pixmap, theight);
333 icon->pixmap = pixmap;
336 void wIconChangeTitle(WIcon * icon, char *new_title)
338 int changed;
340 changed = (new_title == NULL && icon->icon_name != NULL)
341 || (new_title != NULL && icon->icon_name == NULL);
343 if (icon->icon_name != NULL)
344 XFree(icon->icon_name);
346 icon->icon_name = new_title;
348 if (changed)
349 icon->force_paint = 1;
350 wIconPaint(icon);
353 RImage *wIconValidateIconSize(RImage *icon, int max_size)
355 RImage *nimage;
357 if (!icon)
358 return NULL;
360 /* We should hold "ICON_BORDER" (~2) pixels to include the icon border */
361 if ((icon->width - max_size) > -ICON_BORDER ||
362 (icon->height - max_size) > -ICON_BORDER) {
363 nimage = RScaleImage(icon, max_size - ICON_BORDER,
364 (icon->height * (max_size - ICON_BORDER) / icon->width));
365 RReleaseImage(icon);
366 icon = nimage;
369 return icon;
372 Bool wIconChangeImageFile(WIcon *icon, char *file)
374 WScreen *scr = icon->core->screen_ptr;
375 char *path;
376 RImage *image = NULL;
377 int error = 0;
379 /* If no new image, don't do nothing */
380 if (!file)
381 return True;
383 /* Find the new image */
384 path = FindImage(wPreferences.icon_path, file);
385 if (path)
386 image = get_rimage_from_file(scr, path, wPreferences.icon_size);
387 else
388 error = 1;
390 /* New image! */
391 if (!error && image) {
392 /* Remove the old one */
393 if (icon->file_image) {
394 RReleaseImage(icon->file_image);
395 icon->file_image = NULL;
398 /* Set the new image */
399 icon->file_image = image;
400 icon->file = wstrdup(path);
401 wIconUpdate(icon);
402 } else {
403 error = 1;
406 if (path)
407 wfree(path);
409 return !error;
412 static char *get_name_for_wwin(WWindow *wwin)
414 return get_name_for_instance_class(wwin->wm_instance, wwin->wm_class);
417 char *get_name_for_instance_class(char *wm_instance, char *wm_class)
419 char *suffix;
420 int len;
422 if (wm_class && wm_instance) {
423 len = strlen(wm_class) + strlen(wm_instance) + 2;
424 suffix = wmalloc(len);
425 snprintf(suffix, len, "%s.%s", wm_instance, wm_class);
426 } else if (wm_class) {
427 len = strlen(wm_class) + 1;
428 suffix = wmalloc(len);
429 snprintf(suffix, len, "%s", wm_class);
430 } else if (wm_instance) {
431 len = strlen(wm_instance) + 1;
432 suffix = wmalloc(len);
433 snprintf(suffix, len, "%s", wm_instance);
434 } else {
435 return NULL;
438 return suffix;
441 static char *get_icon_cache_path(void)
443 char *prefix, *path;
444 int len, ret;
446 prefix = wusergnusteppath();
447 len = strlen(prefix) + strlen(CACHE_ICON_PATH) + 2;
448 path = wmalloc(len);
449 snprintf(path, len, "%s%s/", prefix, CACHE_ICON_PATH);
451 /* If the folder exists, exit */
452 if (access(path, F_OK) == 0)
453 return path;
455 /* Create the folder */
456 ret = wmkdirhier((const char *) path);
458 /* Exit 1 on success, 0 on failure */
459 if (ret == 1)
460 return path;
462 /* Fail */
463 wfree(path);
464 return NULL;
467 static RImage *get_wwindow_image_from_wmhints(WWindow *wwin, WIcon *icon)
469 RImage *image = NULL;
470 XWMHints *hints = wwin->wm_hints;
472 if (hints && (hints->flags & IconPixmapHint) && hints->icon_pixmap != None)
473 image = RCreateImageFromDrawable(icon->core->screen_ptr->rcontext,
474 hints->icon_pixmap,
475 (hints->flags & IconMaskHint)
476 ? hints->icon_mask : None);
478 return image;
482 * wIconStore--
483 * Stores the client supplied icon at CACHE_ICON_PATH
484 * and returns the path for that icon. Returns NULL if there is no
485 * client supplied icon or on failure.
487 * Side effects:
488 * New directories might be created.
490 char *wIconStore(WIcon * icon)
492 char *path, *dir_path, *file;
493 int len = 0;
494 RImage *image = NULL;
495 WWindow *wwin = icon->owner;
497 if (!wwin)
498 return NULL;
500 dir_path = get_icon_cache_path();
501 if (!dir_path)
502 return NULL;
504 file = get_name_for_wwin(wwin);
505 if (!file) {
506 wfree(dir_path);
507 return NULL;
510 len = strlen(dir_path) + strlen(file) + 5;
511 path = wmalloc(len);
512 snprintf(path, len, "%s%s.xpm", dir_path, file);
513 wfree(dir_path);
514 wfree(file);
516 /* If icon exists, exit */
517 if (access(path, F_OK) == 0)
518 return path;
520 if (wwin->net_icon_image)
521 image = RRetainImage(wwin->net_icon_image);
522 else
523 image = get_wwindow_image_from_wmhints(wwin, icon);
525 if (!image) {
526 wfree(path);
527 return NULL;
530 if (!RSaveImage(image, path, "XPM")) {
531 wfree(path);
532 path = NULL;
535 RReleaseImage(image);
537 return path;
540 static void cycleColor(void *data)
542 WIcon *icon = (WIcon *) data;
543 WScreen *scr = icon->core->screen_ptr;
544 XGCValues gcv;
546 icon->step--;
547 gcv.dash_offset = icon->step;
548 XChangeGC(dpy, scr->icon_select_gc, GCDashOffset, &gcv);
550 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
551 icon->core->width - 1, icon->core->height - 1);
552 icon->handlerID = WMAddTimerHandler(COLOR_CYCLE_DELAY, cycleColor, icon);
555 #ifdef NEWAPPICON
556 void wIconSetHighlited(WIcon *icon, Bool flag)
558 if (icon->highlighted == flag)
559 return;
561 icon->highlighted = flag;
562 icon->force_paint = True;
563 wIconPaint(icon);
565 #endif
567 void wIconSelect(WIcon * icon)
569 WScreen *scr = icon->core->screen_ptr;
570 icon->selected = !icon->selected;
572 if (icon->selected) {
573 icon->step = 0;
574 if (!wPreferences.dont_blink)
575 icon->handlerID = WMAddTimerHandler(10, cycleColor, icon);
576 else
577 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
578 icon->core->width - 1, icon->core->height - 1);
579 } else {
580 if (icon->handlerID) {
581 WMDeleteTimerHandler(icon->handlerID);
582 icon->handlerID = NULL;
584 XClearArea(dpy, icon->core->window, 0, 0, icon->core->width, icon->core->height, True);
588 void wIconUpdate(WIcon *icon)
590 WScreen *scr = icon->core->screen_ptr;
591 WWindow *wwin = icon->owner;
593 assert(scr->icon_tile != NULL);
595 if (icon->pixmap != None)
596 XFreePixmap(dpy, icon->pixmap);
598 icon->pixmap = None;
600 if (wwin && WFLAGP(wwin, always_user_icon)) {
601 /* Forced use user_icon */
602 get_pixmap_icon_from_user_icon(icon);
603 } else if (icon->icon_win != None) {
604 /* Get the Pixmap from the WIcon */
605 get_pixmap_icon_from_icon_win(icon);
606 } else if (wwin && wwin->net_icon_image) {
607 /* Use _NET_WM_ICON icon */
608 icon_update_pixmap(icon, wwin->net_icon_image);
609 } else if (wwin && wwin->wm_hints && (wwin->wm_hints->flags & IconPixmapHint)) {
610 /* Get the Pixmap from the wm_hints, else, from the user */
611 if (get_pixmap_icon_from_wm_hints(icon))
612 get_pixmap_icon_from_user_icon(icon);
613 } else {
614 /* Get the Pixmap from the user */
615 get_pixmap_icon_from_user_icon(icon);
618 /* No pixmap, set default background */
619 if (icon->pixmap != None)
620 XSetWindowBackgroundPixmap(dpy, icon->core->window, icon->pixmap);
622 /* Paint it */
623 XClearWindow(dpy, icon->core->window);
624 wIconPaint(icon);
627 static void get_pixmap_icon_from_user_icon(WIcon *icon)
629 /* If the icon has image, update it and continue */
630 if (icon->file_image) {
631 icon_update_pixmap(icon, icon->file_image);
632 return;
635 get_pixmap_icon_from_default_icon(icon);
638 static void get_pixmap_icon_from_default_icon(WIcon *icon)
640 WScreen *scr = icon->core->screen_ptr;
642 /* If the icon don't have image, we should use the default image. */
643 if (!scr->def_icon_rimage)
644 scr->def_icon_rimage = get_default_image(scr);
646 /* Now, create the pixmap using the default (saved) image */
647 icon_update_pixmap(icon, scr->def_icon_rimage);
650 /* This function creates the RImage using the default icon */
651 static RImage *get_default_image(WScreen *scr)
653 RImage *image = NULL;
654 char *path, *file;
656 /* Get the default icon */
657 file = wDefaultGetIconFile(NULL, NULL, True);
658 if (file) {
659 path = FindImage(wPreferences.icon_path, file);
660 image = get_rimage_from_file(scr, path, wPreferences.icon_size);
662 if (!image)
663 wwarning(_("could not find default icon \"%s\""), file);
665 wfree(file);
668 return image;
671 /* Get the Pixmap from the WIcon of the WWindow */
672 static void get_pixmap_icon_from_icon_win(WIcon * icon)
674 XWindowAttributes attr;
675 WScreen *scr = icon->core->screen_ptr;
676 int title_height = WMFontHeight(scr->icon_title_font);
677 unsigned int width, height, depth;
678 int theight;
679 int resize = 0;
680 Pixmap pixmap;
682 getSize(icon->icon_win, &width, &height, &depth);
684 if (width > wPreferences.icon_size) {
685 resize = 1;
686 width = wPreferences.icon_size;
689 if (height > wPreferences.icon_size) {
690 resize = 1;
691 height = wPreferences.icon_size;
694 if (icon->show_title && (height + title_height < wPreferences.icon_size)) {
695 pixmap = XCreatePixmap(dpy, scr->w_win, wPreferences.icon_size,
696 wPreferences.icon_size, scr->w_depth);
697 XSetClipMask(dpy, scr->copy_gc, None);
698 XCopyArea(dpy, scr->icon_tile_pixmap, pixmap, scr->copy_gc, 0, 0,
699 wPreferences.icon_size, wPreferences.icon_size, 0, 0);
700 drawIconTitle(scr, pixmap, title_height);
701 theight = title_height;
702 } else {
703 pixmap = None;
704 theight = 0;
705 XSetWindowBackgroundPixmap(dpy, icon->core->window, scr->icon_tile_pixmap);
708 XSetWindowBorderWidth(dpy, icon->icon_win, 0);
709 XReparentWindow(dpy, icon->icon_win, icon->core->window,
710 (wPreferences.icon_size - width) / 2,
711 theight + (wPreferences.icon_size - height - theight) / 2);
712 if (resize)
713 XResizeWindow(dpy, icon->icon_win, width, height);
715 XMapWindow(dpy, icon->icon_win);
716 XAddToSaveSet(dpy, icon->icon_win);
718 /* Save it */
719 icon->pixmap = pixmap;
721 if ((XGetWindowAttributes(dpy, icon->icon_win, &attr)) &&
722 (attr.all_event_masks & ButtonPressMask))
723 wHackedGrabButton(Button1, MOD_MASK, icon->core->window, True,
724 ButtonPressMask, GrabModeSync, GrabModeAsync,
725 None, wCursor[WCUR_ARROW]);
728 /* Get the Pixmap from the XWindow wm_hints */
729 static int get_pixmap_icon_from_wm_hints(WIcon *icon)
731 Window jw;
732 Pixmap pixmap;
733 unsigned int w, h, ju, d;
734 int ji, x, y;
735 WWindow *wwin = icon->owner;
736 WScreen *scr = icon->core->screen_ptr;
737 int title_height = WMFontHeight(scr->icon_title_font);
739 if (!XGetGeometry(dpy, wwin->wm_hints->icon_pixmap, &jw, &ji, &ji, &w, &h, &ju, &d)) {
740 icon->owner->wm_hints->flags &= ~IconPixmapHint;
741 return 1;
744 pixmap = XCreatePixmap(dpy, icon->core->window, wPreferences.icon_size,
745 wPreferences.icon_size, scr->w_depth);
746 XSetClipMask(dpy, scr->copy_gc, None);
747 XCopyArea(dpy, scr->icon_tile_pixmap, pixmap, scr->copy_gc, 0, 0,
748 wPreferences.icon_size, wPreferences.icon_size, 0, 0);
750 if (w > wPreferences.icon_size)
751 w = wPreferences.icon_size;
752 x = (wPreferences.icon_size - w) / 2;
754 if (icon->show_title && (title_height < wPreferences.icon_size)) {
755 drawIconTitle(scr, pixmap, title_height);
757 if (h > wPreferences.icon_size - title_height - 2) {
758 h = wPreferences.icon_size - title_height - 2;
759 y = title_height + 1;
760 } else {
761 y = (wPreferences.icon_size - h - title_height) / 2 + title_height + 1;
763 } else {
764 if (w > wPreferences.icon_size)
765 w = wPreferences.icon_size;
766 y = (wPreferences.icon_size - h) / 2;
769 if (wwin->wm_hints->flags & IconMaskHint)
770 XSetClipMask(dpy, scr->copy_gc, wwin->wm_hints->icon_mask);
772 XSetClipOrigin(dpy, scr->copy_gc, x, y);
774 if (d != scr->w_depth) {
775 XSetForeground(dpy, scr->copy_gc, scr->black_pixel);
776 XSetBackground(dpy, scr->copy_gc, scr->white_pixel);
777 XCopyPlane(dpy, wwin->wm_hints->icon_pixmap, pixmap, scr->copy_gc, 0, 0, w, h, x, y, 1);
778 } else {
779 XCopyArea(dpy, wwin->wm_hints->icon_pixmap, pixmap, scr->copy_gc, 0, 0, w, h, x, y);
782 XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
784 icon->pixmap = pixmap;
785 return (0);
788 void wIconPaint(WIcon * icon)
790 WScreen *scr = icon->core->screen_ptr;
791 int x;
792 char *tmp;
794 if (icon->force_paint) {
795 icon->force_paint = 0;
796 wIconUpdate(icon);
797 return;
800 XClearWindow(dpy, icon->core->window);
802 /* draw the icon title */
803 if (icon->show_title && icon->icon_name != NULL) {
804 int l;
805 int w;
807 tmp = ShrinkString(scr->icon_title_font, icon->icon_name, wPreferences.icon_size - 4);
808 w = WMWidthOfString(scr->icon_title_font, tmp, l = strlen(tmp));
810 if (w > icon->core->width - 4)
811 x = (icon->core->width - 4) - w;
812 else
813 x = (icon->core->width - w) / 2;
815 WMDrawString(scr->wmscreen, icon->core->window, scr->icon_title_color,
816 scr->icon_title_font, x, 1, tmp, l);
817 wfree(tmp);
820 if (icon->selected)
821 XDrawRectangle(dpy, icon->core->window, scr->icon_select_gc, 0, 0,
822 icon->core->width - 1, icon->core->height - 1);
825 /******************************************************************/
827 static void miniwindowExpose(WObjDescriptor * desc, XEvent * event)
829 wIconPaint(desc->parent);
832 static void miniwindowDblClick(WObjDescriptor * desc, XEvent * event)
834 WIcon *icon = desc->parent;
836 assert(icon->owner != NULL);
838 wDeiconifyWindow(icon->owner);
841 static void miniwindowMouseDown(WObjDescriptor * desc, XEvent * event)
843 WIcon *icon = desc->parent;
844 WWindow *wwin = icon->owner;
845 XEvent ev;
846 int x = wwin->icon_x, y = wwin->icon_y;
847 int dx = event->xbutton.x, dy = event->xbutton.y;
848 int grabbed = 0;
849 int clickButton = event->xbutton.button;
850 Bool hasMoved = False;
852 if (WCHECK_STATE(WSTATE_MODAL))
853 return;
855 if (IsDoubleClick(icon->core->screen_ptr, event)) {
856 miniwindowDblClick(desc, event);
857 return;
860 if (event->xbutton.button == Button1) {
861 if (event->xbutton.state & MOD_MASK)
862 wLowerFrame(icon->core);
863 else
864 wRaiseFrame(icon->core);
865 if (event->xbutton.state & ShiftMask) {
866 wIconSelect(icon);
867 wSelectWindow(icon->owner, !wwin->flags.selected);
869 } else if (event->xbutton.button == Button3) {
870 WObjDescriptor *desc;
872 OpenMiniwindowMenu(wwin, event->xbutton.x_root, event->xbutton.y_root);
874 /* allow drag select of menu */
875 desc = &wwin->screen_ptr->window_menu->menu->descriptor;
876 event->xbutton.send_event = True;
877 (*desc->handle_mousedown) (desc, event);
879 return;
882 if (XGrabPointer(dpy, icon->core->window, False, ButtonMotionMask
883 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
884 GrabModeAsync, None, None, CurrentTime) != GrabSuccess) {
886 while (1) {
887 WMMaskEvent(dpy, PointerMotionMask | ButtonReleaseMask | ButtonPressMask
888 | ButtonMotionMask | ExposureMask, &ev);
889 switch (ev.type) {
890 case Expose:
891 WMHandleEvent(&ev);
892 break;
894 case MotionNotify:
895 hasMoved = True;
896 if (!grabbed) {
897 if (abs(dx - ev.xmotion.x) >= MOVE_THRESHOLD
898 || abs(dy - ev.xmotion.y) >= MOVE_THRESHOLD) {
899 XChangeActivePointerGrab(dpy, ButtonMotionMask
900 | ButtonReleaseMask | ButtonPressMask,
901 wCursor[WCUR_MOVE], CurrentTime);
902 grabbed = 1;
903 } else {
904 break;
907 x = ev.xmotion.x_root - dx;
908 y = ev.xmotion.y_root - dy;
909 XMoveWindow(dpy, icon->core->window, x, y);
910 break;
912 case ButtonPress:
913 break;
915 case ButtonRelease:
916 if (ev.xbutton.button != clickButton)
917 break;
919 if (wwin->icon_x != x || wwin->icon_y != y)
920 wwin->flags.icon_moved = 1;
922 XMoveWindow(dpy, icon->core->window, x, y);
924 wwin->icon_x = x;
925 wwin->icon_y = y;
926 XUngrabPointer(dpy, CurrentTime);
928 if (wPreferences.auto_arrange_icons)
929 wArrangeIcons(wwin->screen_ptr, True);
930 if (wPreferences.single_click && !hasMoved)
931 miniwindowDblClick(desc, event);
932 return;