Code update for Window Maker version 0.50.0
[wmaker-crm.git] / src / appicon.c
blobfa60711b915384f3f2c6b67b46aff220d38874df
1 /* appicon.c- icon for applications (not mini-window)
3 * Window Maker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 *
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 <string.h>
30 #include "WindowMaker.h"
31 #include "wcore.h"
32 #include "window.h"
33 #include "icon.h"
34 #include "appicon.h"
35 #include "actions.h"
36 #include "stacking.h"
37 #include "dock.h"
38 #include "funcs.h"
39 #include "defaults.h"
40 #include "workspace.h"
41 #include "superfluous.h"
42 #include "menu.h"
43 #include "framewin.h"
44 #include "dialog.h"
45 #include "client.h"
47 /*
48 * icon_file for the dock is got from the preferences file by
49 * using the classname/instancename
52 /**** Global variables ****/
53 extern Cursor wCursor[WCUR_LAST];
54 extern WPreferences wPreferences;
56 #define MOD_MASK wPreferences.modifier_mask
58 void appIconMouseDown(WObjDescriptor *desc, XEvent *event);
59 static void iconDblClick(WObjDescriptor *desc, XEvent *event);
60 static void iconExpose(WObjDescriptor *desc, XEvent *event);
64 WAppIcon*
65 wAppIconCreateForDock(WScreen *scr, char *command, char *wm_instance,
66 char *wm_class, int tile)
68 WAppIcon *dicon;
69 char *path;
71 dicon = wmalloc(sizeof(WAppIcon));
72 wretain(dicon);
73 memset(dicon, 0, sizeof(WAppIcon));
74 dicon->yindex = -1;
75 dicon->xindex = -1;
77 dicon->prev = NULL;
78 dicon->next = scr->app_icon_list;
79 if (scr->app_icon_list) {
80 scr->app_icon_list->prev = dicon;
82 scr->app_icon_list = dicon;
84 if (command) {
85 dicon->command = wstrdup(command);
87 if (wm_class)
88 dicon->wm_class = wstrdup(wm_class);
89 if (wm_instance)
90 dicon->wm_instance = wstrdup(wm_instance);
92 path = wDefaultGetIconFile(scr, wm_instance, wm_class, True);
93 if (!path && command) {
94 wApplicationExtractDirPackIcon(scr, command, wm_instance, wm_class);
96 path = wDefaultGetIconFile(scr, wm_instance, wm_class, False);
99 if (path)
100 path = FindImage(wPreferences.icon_path, path);
102 dicon->icon = wIconCreateWithIconFile(scr, path, tile);
103 if (path)
104 free(path);
105 #ifdef REDUCE_APPICONS
106 dicon->num_apps = 0;
107 #endif
109 /* will be overriden by dock */
110 dicon->icon->core->descriptor.handle_mousedown = appIconMouseDown;
111 dicon->icon->core->descriptor.handle_expose = iconExpose;
112 dicon->icon->core->descriptor.parent_type = WCLASS_APPICON;
113 dicon->icon->core->descriptor.parent = dicon;
114 AddToStackList(dicon->icon->core);
116 return dicon;
121 WAppIcon*
122 wAppIconCreate(WWindow *leader_win)
124 WAppIcon *aicon;
125 #ifdef REDUCE_APPICONS
126 WAppIcon *atmp;
127 WAppIconAppList *applist;
128 char *tinstance, *tclass;
129 #endif
130 WScreen *scr = leader_win->screen_ptr;
132 aicon = wmalloc(sizeof(WAppIcon));
133 wretain(aicon);
134 memset(aicon, 0, sizeof(WAppIcon));
135 #ifdef REDUCE_APPICONS
136 applist = wmalloc(sizeof(WAppIconAppList));
137 memset(applist, 0, sizeof(WAppIconAppList));
138 applist->wapp = wApplicationOf(leader_win->main_window);
139 aicon->applist = applist;
140 if (applist->wapp == NULL) {
141 /* Something's wrong. wApplicationOf() should always return a
142 * valid structure. Rather than violate assumptions, bail. -cls
144 free(applist);
145 wrelease(aicon);
146 return NULL;
148 #endif
150 aicon->yindex = -1;
151 aicon->xindex = -1;
153 aicon->prev = NULL;
154 aicon->next = scr->app_icon_list;
155 if (scr->app_icon_list) {
156 #ifndef REDUCE_APPICONS
157 scr->app_icon_list->prev = aicon;
158 #else
159 /* If we aren't going to have a match, jump straight to new appicon */
160 if (leader_win->wm_class == NULL || leader_win->wm_class == NULL)
161 atmp = NULL;
162 else
163 atmp = scr->app_icon_list;
165 while (atmp != NULL) {
166 if ((tinstance = atmp->wm_instance) == NULL)
167 tinstance = "";
168 if ((tclass = atmp->wm_class) == NULL)
169 tclass = "";
170 if ((strcmp(leader_win->wm_class, tclass) == 0) &&
171 (strcmp(leader_win->wm_instance, tinstance) == 0))
173 /* We have a winner */
174 wrelease(aicon);
175 atmp->num_apps++;
176 applist->next = atmp->applist;
177 if (atmp->applist)
178 atmp->applist->prev = applist;
179 atmp->applist = applist;
181 if (atmp->docked) {
182 wDockSimulateLaunch(atmp->dock, atmp);
185 return atmp;
187 atmp = atmp->next;
189 if (atmp == NULL) {
190 scr->app_icon_list->prev = aicon;
192 #endif /* REDUCE_APPICONS */
194 scr->app_icon_list = aicon;
196 if (leader_win->wm_class)
197 aicon->wm_class = wstrdup(leader_win->wm_class);
198 if (leader_win->wm_instance)
199 aicon->wm_instance = wstrdup(leader_win->wm_instance);
200 #ifdef REDUCE_APPICONS
201 aicon->num_apps = 1;
202 #endif
204 aicon->icon = wIconCreate(leader_win);
206 /* will be overriden if docked */
207 aicon->icon->core->descriptor.handle_mousedown = appIconMouseDown;
208 aicon->icon->core->descriptor.handle_expose = iconExpose;
209 aicon->icon->core->descriptor.parent_type = WCLASS_APPICON;
210 aicon->icon->core->descriptor.parent = aicon;
211 AddToStackList(aicon->icon->core);
212 aicon->icon->show_title = 0;
213 wIconUpdate(aicon->icon);
215 return aicon;
219 void
220 wAppIconDestroy(WAppIcon *aicon)
222 WScreen *scr = aicon->icon->core->screen_ptr;
223 #ifdef REDUCE_APPICONS
224 WAppIconAppList *aptmp;
225 #endif
227 RemoveFromStackList(aicon->icon->core);
228 wIconDestroy(aicon->icon);
229 if (aicon->command)
230 free(aicon->command);
231 #ifdef OFFIX_DND
232 if (aicon->dnd_command)
233 free(aicon->dnd_command);
234 #endif
235 if (aicon->wm_instance)
236 free(aicon->wm_instance);
237 if (aicon->wm_class)
238 free(aicon->wm_class);
239 #ifdef REDUCE_APPICONS
240 /* There should never be a list but just in case */
241 if (aicon->applist != NULL) {
242 aptmp = aicon->applist;
243 while (aptmp->next) {
244 aptmp = aptmp->next;
245 free(aptmp->prev);
247 free(aptmp);
249 #endif
251 if (aicon == scr->app_icon_list) {
252 if (aicon->next)
253 aicon->next->prev = NULL;
254 scr->app_icon_list = aicon->next;
256 else {
257 if (aicon->next)
258 aicon->next->prev = aicon->prev;
259 if (aicon->prev)
260 aicon->prev->next = aicon->next;
263 aicon->destroyed = 1;
264 wrelease(aicon);
269 #ifdef NEWAPPICON
270 static void
271 drawCorner(WIcon *icon, WWindow *wwin, int active)
273 WScreen *scr = wwin->screen_ptr;
274 XPoint points[3];
275 GC gc;
277 points[0].x = 2;
278 points[0].y = 2;
279 points[1].x = 12;
280 points[1].y = 2;
281 points[2].x = 2;
282 points[2].y = 12;
283 if (active) {
284 gc=scr->focused_texture->any.gc;
285 } else {
286 gc=scr->unfocused_texture->any.gc;
288 XFillPolygon(dpy, icon->core->window, gc, points, 3,
289 Convex, CoordModeOrigin);
291 #endif /* NEWAPPICON */
294 void
295 wAppIconMove(WAppIcon *aicon, int x, int y)
297 XMoveWindow(dpy, aicon->icon->core->window, x, y);
298 aicon->x_pos = x;
299 aicon->y_pos = y;
303 #ifdef WS_INDICATOR
304 static void
305 updateDockNumbers(WScreen *scr)
307 int length;
308 char *ws_numbers;
309 GC numbers_gc;
310 XGCValues my_gc_values;
311 unsigned long my_v_mask = (GCForeground);
312 WAppIcon *dicon = scr->dock->icon_array[0];
314 my_gc_values.foreground = scr->white_pixel;
315 numbers_gc = XCreateGC(dpy, dicon->icon->core->window,
316 my_v_mask, &my_gc_values);
318 ws_numbers = malloc(20);
319 sprintf(ws_numbers, "%i [ %i ]", scr->current_workspace+1,
320 ((scr->current_workspace/10)+1));
321 length = strlen(ws_numbers);
323 XClearArea(dpy, dicon->icon->core->window, 2, 2, 50,
324 scr->icon_title_font->y+1, False);
326 #ifndef I18N_MB
327 XSetFont(dpy, numbers_gc, scr->icon_title_font->font->fid);
328 XSetForeground(dpy, numbers_gc, scr->black_pixel);
329 XDrawString(dpy, dicon->icon->core->window,
330 numbers_gc, 4, scr->icon_title_font->y+3, ws_numbers, length);
331 XSetForeground(dpy, numbers_gc, scr->white_pixel);
332 XDrawString(dpy, dicon->icon->core->window,
333 numbers_gc, 3, scr->icon_title_font->y+2, ws_numbers, length);
334 #else
335 XSetForeground(dpy, numbers_gc, scr->black_pixel);
336 XmbDrawString(dpy, dicon->icon->core->window,
337 scr->icon_title_font->font, numbers_gc, 4,
338 scr->icon_title_font->y+3, ws_numbers, length);
339 XSetForeground(dpy, numbers_gc, scr->white_pixel);
340 XmbDrawString(dpy, dicon->icon->core->window,
341 scr->icon_title_font->font, numbers_gc, 3,
342 scr->icon_title_font->y+2, ws_numbers, length);
343 #endif /* I18N_MB */
345 XFreeGC(dpy, numbers_gc);
346 free(ws_numbers);
348 #endif /* WS_INDICATOR */
351 void
352 wAppIconPaint(WAppIcon *aicon)
354 WScreen *scr = aicon->icon->core->screen_ptr;
356 wIconPaint(aicon->icon);
359 # ifdef WS_INDICATOR
360 if (aicon->docked && scr->dock && aicon->yindex==0)
361 updateDockNumbers(scr);
362 # endif
363 if (scr->dock_dots && aicon->docked && !aicon->running
364 && aicon->command!=NULL) {
365 XSetClipMask(dpy, scr->copy_gc, scr->dock_dots->mask);
366 XSetClipOrigin(dpy, scr->copy_gc, 0, 0);
367 XCopyArea(dpy, scr->dock_dots->image, aicon->icon->core->window,
368 scr->copy_gc, 0, 0, scr->dock_dots->width,
369 scr->dock_dots->height, 0, 0);
372 #ifdef NEWAPPICON
373 if (!wPreferences.strict_ns && aicon->icon->owner!=NULL) {
374 int active=0;
375 if (aicon->main_window==None) {
376 active = (aicon->icon->owner->flags.focused ? 1 : 0);
377 } else {
378 WApplication *wapp;
380 wapp = wApplicationOf(aicon->main_window);
381 if (!wapp) {
382 active = aicon->icon->owner->flags.focused;
383 wwarning("error in wAppIconPaint(). Please report it");
384 } else {
385 active = wapp->main_window_desc->flags.focused;
386 if (wapp->main_window_desc->flags.hidden
387 || !wapp->main_window_desc->flags.mapped)
388 active = -1;
391 if (active>=0)
392 drawCorner(aicon->icon, aicon->icon->owner, active);
394 #endif /* NEWAPPICON */
396 XSetClipMask(dpy, scr->copy_gc, None);
397 if (aicon->launching) {
398 XFillRectangle(dpy, aicon->icon->core->window, scr->stipple_gc,
399 0, 0, wPreferences.icon_size, wPreferences.icon_size);
405 #define canBeDocked(wwin) ((wwin) && ((wwin)->wm_class||(wwin)->wm_instance))
407 #ifdef REDUCE_APPICONS
408 unsigned int
409 wAppIconReduceAppCount(WApplication *wapp)
411 WAppIconAppList *applist;
413 if (wapp == NULL)
414 return 0;
416 if (wapp->app_icon == NULL)
417 return 0;
419 /* If given a main window, check the applist
420 * and remove the if it exists
422 applist = wapp->app_icon->applist;
423 while (applist != NULL) {
424 if (applist->wapp == wapp) {
425 /* If this app owns the appicon, change the appicon's
426 * owner to the next app in the list or NULL
428 if (wapp->app_icon->icon->owner == applist->wapp->main_window_desc)
430 if (applist->next) {
431 wapp->app_icon->icon->owner = applist->next->wapp->main_window_desc;
432 } else if (applist->prev) {
433 wapp->app_icon->icon->owner = applist->prev->wapp->main_window_desc;
434 } else {
435 wapp->app_icon->icon->owner = NULL;
438 if (applist->prev)
439 applist->prev->next = applist->next;
441 if (applist->next)
442 applist->next->prev = applist->prev;
444 if (applist == wapp->app_icon->applist)
445 wapp->app_icon->applist = applist->next;
447 free(applist);
449 if (wapp->app_icon->applist != NULL)
450 wapp->app_icon->main_window = wapp->app_icon->applist->wapp->main_window;
452 return (--wapp->app_icon->num_apps);
454 applist = applist->next;
456 return (--wapp->app_icon->num_apps);
458 #endif
461 static void
462 hideCallback(WMenu *menu, WMenuEntry *entry)
464 WApplication *wapp = (WApplication*)entry->clientdata;
466 if (wapp->flags.hidden) {
467 wWorkspaceChange(menu->menu->screen_ptr, wapp->last_workspace);
468 wUnhideApplication(wapp, False, False);
469 } else {
470 wHideApplication(wapp);
475 static void
476 unhideHereCallback(WMenu *menu, WMenuEntry *entry)
478 WApplication *wapp = (WApplication*)entry->clientdata;
480 wUnhideApplication(wapp, False, True);
484 static void
485 setIconCallback(WMenu *menu, WMenuEntry *entry)
487 WAppIcon *icon = ((WApplication*)entry->clientdata)->app_icon;
488 char *file=NULL;
489 WScreen *scr;
490 int result;
492 assert(icon!=NULL);
494 if (icon->editing)
495 return;
496 icon->editing = 1;
497 scr = icon->icon->core->screen_ptr;
499 wretain(icon);
501 result = wIconChooserDialog(scr, &file);
503 if (result && !icon->destroyed) {
504 if (file[0]==0) {
505 free(file);
506 file = NULL;
508 if (!wIconChangeImageFile(icon->icon, file)) {
509 wMessageDialog(scr, _("Error"),
510 _("Could not open specified icon file"),
511 _("OK"), NULL, NULL);
512 } else {
513 wDefaultChangeIcon(scr, icon->wm_instance, icon->wm_class, file);
514 wAppIconPaint(icon);
516 if (file)
517 free(file);
519 icon->editing = 0;
520 wrelease(icon);
524 static void
525 killCallback(WMenu *menu, WMenuEntry *entry)
527 WApplication *wapp = (WApplication*)entry->clientdata;
528 assert(entry->clientdata!=NULL);
530 wretain(wapp->main_window_desc);
531 if (wPreferences.dont_confirm_kill
532 || wMessageDialog(menu->frame->screen_ptr, _("Kill Application"),
533 _("This will kill the application.\nAny unsaved changes will be lost.\nPlease confirm."),
534 _("Yes"), _("No"), NULL)==WAPRDefault) {
535 if (!wapp->main_window_desc->flags.destroyed)
536 wClientKill(wapp->main_window_desc);
538 wrelease(wapp->main_window_desc);
542 static WMenu*
543 createApplicationMenu(WScreen *scr)
545 WMenu *menu;
547 menu = wMenuCreate(scr, NULL, False);
548 wMenuAddCallback(menu, _("Unhide Here"), unhideHereCallback, NULL);
549 wMenuAddCallback(menu, _("Hide"), hideCallback, NULL);
550 wMenuAddCallback(menu, _("Set Icon..."), setIconCallback, NULL);
551 wMenuAddCallback(menu, _("Kill"), killCallback, NULL);
553 return menu;
557 static void
558 openApplicationMenu(WApplication *wapp, int x, int y)
560 WMenu *menu;
561 WScreen *scr = wapp->main_window_desc->screen_ptr;
562 int i;
564 if (!scr->icon_menu) {
565 scr->icon_menu = createApplicationMenu(scr);
566 free(scr->window_menu->entries[1]->text);
569 menu = scr->icon_menu;
571 if (wapp->flags.hidden) {
572 menu->entries[1]->text = _("Unhide");
573 } else {
574 menu->entries[1]->text = _("Hide");
577 menu->flags.realized = 0;
578 wMenuRealize(menu);
580 x -= menu->frame->core->width/2;
581 if (x + menu->frame->core->width > scr->scr_width)
582 x = scr->scr_width - menu->frame->core->width;
583 if (x < 0)
584 x = 0;
586 /* set client data */
587 for (i = 0; i < menu->entry_no; i++) {
588 menu->entries[i]->clientdata = wapp;
590 wMenuMapAt(menu, x, y, False);
594 /******************************************************************/
596 static void
597 iconExpose(WObjDescriptor *desc, XEvent *event)
599 wAppIconPaint(desc->parent);
602 static void
603 iconDblClick(WObjDescriptor *desc, XEvent *event)
605 WAppIcon *aicon = desc->parent;
606 WApplication *wapp;
607 WScreen *scr = aicon->icon->core->screen_ptr;
608 int unhideHere;
610 #ifndef REDUCE_APPICONS
611 assert(aicon->icon->owner!=NULL);
612 #else
613 if (aicon->icon->owner == NULL) {
614 fprintf(stderr, "Double-click disabled: missing main window.\n");
615 return;
617 #endif
619 wapp = wApplicationOf(aicon->icon->owner->main_window);
620 #ifdef DEBUG0
621 if (!wapp) {
622 wwarning("could not find application descriptor for app icon!!");
623 return;
625 #endif
626 #ifdef REDUCE_APPICONS
627 if (!wapp) {
628 fprintf(stderr, "Double-click disabled: missing wapp.\n");
629 return;
631 #endif /* REDUCE_APPICONS */
632 #if 0
633 /* aproveita que ta aqui pra atualizar */
634 wapp->main_window = aicon->icon->owner->main_window;
635 #endif
637 unhideHere = (event->xbutton.state & ShiftMask);
639 /* go to the last workspace that the user worked on the app */
640 if (!unhideHere)
641 wWorkspaceChange(scr, wapp->last_workspace);
643 wUnhideApplication(wapp, event->xbutton.button==Button2, unhideHere);
645 if (event->xbutton.state & MOD_MASK) {
646 wHideOtherApplications(aicon->icon->owner);
651 void
652 appIconMouseDown(WObjDescriptor *desc, XEvent *event)
654 WAppIcon *aicon = desc->parent;
655 WIcon *icon = aicon->icon;
656 XEvent ev;
657 int x=aicon->x_pos, y=aicon->y_pos;
658 int dx=event->xbutton.x, dy=event->xbutton.y;
659 int grabbed=0;
660 int done=0;
661 int superfluous = wPreferences.superfluous; /* we catch it to avoid problems */
662 WScreen *scr = icon->core->screen_ptr;
663 WWorkspace *workspace = scr->workspaces[scr->current_workspace];
664 int shad_x = 0, shad_y = 0, docking=0, dockable, collapsed = 0;
665 int ix, iy;
666 int clickButton = event->xbutton.button;
667 Pixmap ghost = None;
669 if (aicon->editing)
670 return;
672 if (IsDoubleClick(scr, event)) {
673 iconDblClick(desc, event);
674 return;
677 if (event->xbutton.button == Button3) {
678 WObjDescriptor *desc;
679 WApplication *wapp = wApplicationOf(aicon->icon->owner->main_window);
681 openApplicationMenu(wapp, event->xbutton.x_root,
682 event->xbutton.y_root);
684 /* allow drag select of menu */
685 desc = &scr->icon_menu->menu->descriptor;
686 event->xbutton.send_event = True;
687 (*desc->handle_mousedown)(desc, event);
688 return;
691 #ifdef DEBUG
692 puts("Moving icon");
693 #endif
694 if (event->xbutton.state & MOD_MASK)
695 wLowerFrame(icon->core);
696 else
697 wRaiseFrame(icon->core);
700 if (XGrabPointer(dpy, icon->core->window, True, ButtonMotionMask
701 |ButtonReleaseMask|ButtonPressMask, GrabModeAsync,
702 GrabModeAsync, None, None, CurrentTime) !=GrabSuccess) {
703 wwarning("pointer grab failed for appicon move");
706 if (wPreferences.flags.nodock && wPreferences.flags.noclip)
707 dockable = 0;
708 else
709 dockable = canBeDocked(icon->owner);
712 while (!done) {
713 WMMaskEvent(dpy, PointerMotionMask|ButtonReleaseMask|ButtonPressMask
714 |ButtonMotionMask|ExposureMask, &ev);
715 switch (ev.type) {
716 case Expose:
717 WMHandleEvent(&ev);
718 break;
720 case MotionNotify:
721 if (!grabbed) {
722 if (abs(dx-ev.xmotion.x)>=MOVE_THRESHOLD
723 || abs(dy-ev.xmotion.y)>=MOVE_THRESHOLD) {
724 XChangeActivePointerGrab(dpy, ButtonMotionMask
725 |ButtonReleaseMask|ButtonPressMask,
726 wCursor[WCUR_MOVE], CurrentTime);
727 grabbed=1;
728 } else {
729 break;
732 x = ev.xmotion.x_root - dx;
733 y = ev.xmotion.y_root - dy;
734 XMoveWindow(dpy, icon->core->window, x, y);
736 if (dockable) {
737 if (scr->dock && wDockSnapIcon(scr->dock, aicon, x, y,
738 &ix, &iy, False)) {
739 shad_x = scr->dock->x_pos + ix*wPreferences.icon_size;
740 shad_y = scr->dock->y_pos + iy*wPreferences.icon_size;
742 if (scr->last_dock != scr->dock && collapsed) {
743 scr->last_dock->collapsed = 1;
744 wDockHideIcons(scr->last_dock);
745 collapsed = 0;
747 if (!collapsed && (collapsed = scr->dock->collapsed)) {
748 scr->dock->collapsed = 0;
749 wDockShowIcons(scr->dock);
752 if (scr->dock->auto_raise_lower)
753 wDockRaise(scr->dock);
755 scr->last_dock = scr->dock;
757 XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
758 if (!docking) {
759 Window wins[2];
761 wins[0] = icon->core->window;
762 wins[1] = scr->dock_shadow;
763 XRestackWindows(dpy, wins, 2);
764 if (superfluous) {
765 if (icon->pixmap!=None)
766 ghost = MakeGhostIcon(scr, icon->pixmap);
767 else
768 ghost = MakeGhostIcon(scr, icon->core->window);
769 XSetWindowBackgroundPixmap(dpy, scr->dock_shadow,
770 ghost);
771 XClearWindow(dpy, scr->dock_shadow);
773 XMapWindow(dpy, scr->dock_shadow);
775 docking = 1;
776 } else if (workspace->clip &&
777 wDockSnapIcon(workspace->clip, aicon, x, y,
778 &ix, &iy, False)) {
779 shad_x = workspace->clip->x_pos + ix*wPreferences.icon_size;
780 shad_y = workspace->clip->y_pos + iy*wPreferences.icon_size;
782 if (scr->last_dock != workspace->clip && collapsed) {
783 scr->last_dock->collapsed = 1;
784 wDockHideIcons(scr->last_dock);
785 collapsed = 0;
787 if (!collapsed && (collapsed = workspace->clip->collapsed)) {
788 workspace->clip->collapsed = 0;
789 wDockShowIcons(workspace->clip);
792 if (workspace->clip->auto_raise_lower)
793 wDockRaise(workspace->clip);
795 scr->last_dock = workspace->clip;
797 XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
798 if (!docking) {
799 Window wins[2];
801 wins[0] = icon->core->window;
802 wins[1] = scr->dock_shadow;
803 XRestackWindows(dpy, wins, 2);
804 if (superfluous) {
805 if (icon->pixmap!=None)
806 ghost = MakeGhostIcon(scr, icon->pixmap);
807 else
808 ghost = MakeGhostIcon(scr, icon->core->window);
809 XSetWindowBackgroundPixmap(dpy, scr->dock_shadow,
810 ghost);
811 XClearWindow(dpy, scr->dock_shadow);
813 XMapWindow(dpy, scr->dock_shadow);
815 docking = 1;
816 } else if (docking) {
817 XUnmapWindow(dpy, scr->dock_shadow);
818 docking = 0;
822 break;
824 case ButtonPress:
825 break;
827 case ButtonRelease:
828 if (ev.xbutton.button != clickButton)
829 break;
830 XUngrabPointer(dpy, CurrentTime);
832 if (docking) {
833 Bool docked;
835 /* icon is trying to be docked */
836 SlideWindow(icon->core->window, x, y, shad_x, shad_y);
837 XUnmapWindow(dpy, scr->dock_shadow);
838 docked = wDockAttachIcon(scr->last_dock, aicon, ix, iy);
839 if (scr->last_dock->auto_collapse) {
840 collapsed = 0;
842 if (workspace->clip &&
843 workspace->clip != scr->last_dock &&
844 workspace->clip->auto_raise_lower)
845 wDockLower(workspace->clip);
847 if (!docked) {
848 /* If icon could not be docked, slide it back to the old
849 * position */
850 SlideWindow(icon->core->window, x, y, aicon->x_pos,
851 aicon->y_pos);
853 } else {
854 XMoveWindow(dpy, icon->core->window, x, y);
855 aicon->x_pos = x;
856 aicon->y_pos = y;
857 if (workspace->clip && workspace->clip->auto_raise_lower)
858 wDockLower(workspace->clip);
860 if (collapsed) {
861 scr->last_dock->collapsed = 1;
862 wDockHideIcons(scr->last_dock);
863 collapsed = 0;
865 if (superfluous) {
866 if (ghost!=None)
867 XFreePixmap(dpy, ghost);
868 XSetWindowBackground(dpy, scr->dock_shadow, scr->white_pixel);
870 done = 1;
871 break;
874 #ifdef DEBUG
875 puts("End icon move");
876 #endif