Remove unused argument in save_appicon
[wmaker-crm.git] / src / dock.c
blobfce3f5bffe3cb14a3941344b59e0404cb2b94afb
1 /* dock.c- built-in Dock module for WindowMaker
3 * Window Maker window manager
5 * Copyright (c) 1997-2003 Alfredo K. Kojima
6 * Copyright (c) 1998-2003 Dan Pascu
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "wconfig.h"
25 #include <X11/Xlib.h>
26 #include <X11/Xutil.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <libgen.h>
30 #include <string.h>
31 #include <strings.h>
32 #include <unistd.h>
33 #include <math.h>
34 #include <limits.h>
36 #ifndef PATH_MAX
37 #define PATH_MAX DEFAULT_PATH_MAX
38 #endif
40 #include "WindowMaker.h"
41 #include "wcore.h"
42 #include "window.h"
43 #include "icon.h"
44 #include "appicon.h"
45 #include "actions.h"
46 #include "stacking.h"
47 #include "dock.h"
48 #include "dockedapp.h"
49 #include "dialog.h"
50 #include "main.h"
51 #include "properties.h"
52 #include "menu.h"
53 #include "client.h"
54 #include "defaults.h"
55 #include "workspace.h"
56 #include "framewin.h"
57 #include "superfluous.h"
58 #include "xinerama.h"
59 #include "placement.h"
60 #include "misc.h"
61 #include "event.h"
63 /**** Local variables ****/
64 #define CLIP_REWIND 1
65 #define CLIP_IDLE 0
66 #define CLIP_FORWARD 2
68 #define MOD_MASK wPreferences.modifier_mask
69 #define ICON_SIZE wPreferences.icon_size
71 /***** Local variables ****/
73 static WMPropList *dCommand = NULL;
74 static WMPropList *dPasteCommand = NULL;
75 #ifdef USE_DOCK_XDND
76 static WMPropList *dDropCommand = NULL;
77 #endif
78 static WMPropList *dAutoLaunch, *dLock;
79 static WMPropList *dName, *dForced, *dBuggyApplication, *dYes, *dNo;
80 static WMPropList *dHost, *dDock, *dClip;
81 static WMPropList *dAutoAttractIcons;
83 static WMPropList *dPosition, *dApplications, *dLowered, *dCollapsed;
85 static WMPropList *dAutoCollapse, *dAutoRaiseLower, *dOmnipresent;
87 static WMPropList *dDrawers = NULL;
89 static void dockIconPaint(WAppIcon *btn);
91 static void iconMouseDown(WObjDescriptor *desc, XEvent *event);
93 static pid_t execCommand(WAppIcon *btn, const char *command, WSavedState *state);
95 static void trackDeadProcess(pid_t pid, unsigned char status, WDock *dock);
97 static int getClipButton(int px, int py);
99 static void toggleLowered(WDock *dock);
101 static void toggleCollapsed(WDock *dock);
103 static void clipIconExpose(WObjDescriptor *desc, XEvent *event);
105 static void clipLeave(WDock *dock);
107 static void handleClipChangeWorkspace(WScreen *scr, XEvent *event);
109 static void clipEnterNotify(WObjDescriptor *desc, XEvent *event);
110 static void clipLeaveNotify(WObjDescriptor *desc, XEvent *event);
111 static void clipAutoCollapse(void *cdata);
112 static void clipAutoExpand(void *cdata);
113 static void launchDockedApplication(WAppIcon *btn, Bool withSelection);
115 static void clipAutoLower(void *cdata);
116 static void clipAutoRaise(void *cdata);
117 static WAppIcon *mainIconCreate(WScreen *scr, int type, const char *name);
119 static void drawerIconExpose(WObjDescriptor *desc, XEvent *event);
120 static void removeDrawerCallback(WMenu *menu, WMenuEntry *entry);
121 static void drawerAppendToChain(WScreen *scr, WDock *drawer);
122 static char *findUniqueName(WScreen *scr, const char *instance_basename);
123 static void addADrawerCallback(WMenu *menu, WMenuEntry *entry);
124 static void swapDrawers(WScreen *scr, int new_x);
125 static WDock* getDrawer(WScreen *scr, int y_index);
126 static int indexOfHole(WDock *drawer, WAppIcon *moving_aicon, int redocking);
127 static void drawerConsolidateIcons(WDock *drawer);
129 static int onScreen(WScreen *scr, int x, int y);
131 static void make_keys(void)
133 if (dCommand != NULL)
134 return;
136 dCommand = WMRetainPropList(WMCreatePLString("Command"));
137 dPasteCommand = WMRetainPropList(WMCreatePLString("PasteCommand"));
138 #ifdef USE_DOCK_XDND
139 dDropCommand = WMRetainPropList(WMCreatePLString("DropCommand"));
140 #endif
141 dLock = WMRetainPropList(WMCreatePLString("Lock"));
142 dAutoLaunch = WMRetainPropList(WMCreatePLString("AutoLaunch"));
143 dName = WMRetainPropList(WMCreatePLString("Name"));
144 dForced = WMRetainPropList(WMCreatePLString("Forced"));
145 dBuggyApplication = WMRetainPropList(WMCreatePLString("BuggyApplication"));
146 dYes = WMRetainPropList(WMCreatePLString("Yes"));
147 dNo = WMRetainPropList(WMCreatePLString("No"));
148 dHost = WMRetainPropList(WMCreatePLString("Host"));
150 dPosition = WMCreatePLString("Position");
151 dApplications = WMCreatePLString("Applications");
152 dLowered = WMCreatePLString("Lowered");
153 dCollapsed = WMCreatePLString("Collapsed");
154 dAutoCollapse = WMCreatePLString("AutoCollapse");
155 dAutoRaiseLower = WMCreatePLString("AutoRaiseLower");
156 dAutoAttractIcons = WMCreatePLString("AutoAttractIcons");
158 dOmnipresent = WMCreatePLString("Omnipresent");
160 dDock = WMCreatePLString("Dock");
161 dClip = WMCreatePLString("Clip");
162 dDrawers = WMCreatePLString("Drawers");
165 static void renameCallback(WMenu *menu, WMenuEntry *entry)
167 WDock *dock = entry->clientdata;
168 char buffer[128];
169 int wspace;
170 char *name;
172 /* Parameter not used, but tell the compiler that it is ok */
173 (void) menu;
175 assert(entry->clientdata != NULL);
177 wspace = dock->screen_ptr->current_workspace;
179 name = wstrdup(dock->screen_ptr->workspaces[wspace]->name);
181 snprintf(buffer, sizeof(buffer), _("Type the name for workspace %i:"), wspace + 1);
182 if (wInputDialog(dock->screen_ptr, _("Rename Workspace"), buffer, &name))
183 wWorkspaceRename(dock->screen_ptr, wspace, name);
185 wfree(name);
188 static void toggleLoweredCallback(WMenu *menu, WMenuEntry *entry)
190 assert(entry->clientdata != NULL);
192 toggleLowered(entry->clientdata);
194 entry->flags.indicator_on = !(((WDock *) entry->clientdata)->lowered);
196 wMenuPaint(menu);
199 static int matchWindow(const void *item, const void *cdata)
201 return (((WFakeGroupLeader *) item)->leader == (Window) cdata);
204 static void killCallback(WMenu *menu, WMenuEntry *entry)
206 WScreen *scr = menu->menu->screen_ptr;
207 WAppIcon *icon;
208 WFakeGroupLeader *fPtr;
209 char *buffer, *shortname, **argv;
210 int argc;
212 if (!WCHECK_STATE(WSTATE_NORMAL))
213 return;
215 assert(entry->clientdata != NULL);
217 icon = (WAppIcon *) entry->clientdata;
219 icon->editing = 1;
221 WCHANGE_STATE(WSTATE_MODAL);
223 /* strip away dir names */
224 shortname = basename(icon->command);
225 /* separate out command options */
226 wtokensplit(shortname, &argv, &argc);
228 buffer = wstrconcat(argv[0],
229 _(" will be forcibly closed.\n"
230 "Any unsaved changes will be lost.\n" "Please confirm."));
232 if (icon->icon && icon->icon->owner) {
233 fPtr = icon->icon->owner->fake_group;
234 } else {
235 /* is this really necessary? can we kill a non-running dock icon? */
236 Window win = icon->main_window;
237 int index;
239 index = WMFindInArray(scr->fakeGroupLeaders, matchWindow, (void *)win);
240 if (index != WANotFound)
241 fPtr = WMGetFromArray(scr->fakeGroupLeaders, index);
242 else
243 fPtr = NULL;
246 if (wPreferences.dont_confirm_kill
247 || wMessageDialog(menu->frame->screen_ptr, _("Kill Application"),
248 buffer, _("Yes"), _("No"), NULL) == WAPRDefault) {
249 if (fPtr != NULL) {
250 WWindow *wwin, *twin;
252 wwin = scr->focused_window;
253 while (wwin) {
254 twin = wwin->prev;
255 if (wwin->fake_group == fPtr)
256 wClientKill(wwin);
258 wwin = twin;
260 } else if (icon->icon && icon->icon->owner) {
261 wClientKill(icon->icon->owner);
265 wfree(buffer);
266 wtokenfree(argv, argc);
268 icon->editing = 0;
270 WCHANGE_STATE(WSTATE_NORMAL);
273 /* TODO: replace this function with a member of the dock struct */
274 static int numberOfSelectedIcons(WDock *dock)
276 WAppIcon *aicon;
277 int i, n;
279 n = 0;
280 for (i = 1; i < dock->max_icons; i++) {
281 aicon = dock->icon_array[i];
282 if (aicon && aicon->icon->selected)
283 n++;
286 return n;
289 static WMArray *getSelected(WDock *dock)
291 WMArray *ret = WMCreateArray(8);
292 WAppIcon *btn;
293 int i;
295 for (i = 1; i < dock->max_icons; i++) {
296 btn = dock->icon_array[i];
297 if (btn && btn->icon->selected)
298 WMAddToArray(ret, btn);
301 return ret;
304 static void paintClipButtons(WAppIcon *clipIcon, Bool lpushed, Bool rpushed)
306 Window win = clipIcon->icon->core->window;
307 WScreen *scr = clipIcon->icon->core->screen_ptr;
308 XPoint p[4];
309 int pt = CLIP_BUTTON_SIZE * ICON_SIZE / 64;
310 int tp = ICON_SIZE - pt;
311 int as = pt - 15; /* 15 = 5+5+5 */
312 GC gc = scr->draw_gc; /* maybe use WMColorGC() instead here? */
313 WMColor *color;
315 color = scr->clip_title_color[CLIP_NORMAL];
317 XSetForeground(dpy, gc, WMColorPixel(color));
319 if (rpushed) {
320 p[0].x = tp + 1;
321 p[0].y = 1;
322 p[1].x = ICON_SIZE - 2;
323 p[1].y = 1;
324 p[2].x = ICON_SIZE - 2;
325 p[2].y = pt - 1;
326 } else if (lpushed) {
327 p[0].x = 1;
328 p[0].y = tp;
329 p[1].x = pt;
330 p[1].y = ICON_SIZE - 2;
331 p[2].x = 1;
332 p[2].y = ICON_SIZE - 2;
334 if (lpushed || rpushed) {
335 XSetForeground(dpy, scr->draw_gc, scr->white_pixel);
336 XFillPolygon(dpy, win, scr->draw_gc, p, 3, Convex, CoordModeOrigin);
337 XSetForeground(dpy, scr->draw_gc, scr->black_pixel);
340 /* top right arrow */
341 p[0].x = p[3].x = ICON_SIZE - 5 - as;
342 p[0].y = p[3].y = 5;
343 p[1].x = ICON_SIZE - 6;
344 p[1].y = 5;
345 p[2].x = ICON_SIZE - 6;
346 p[2].y = 4 + as;
347 if (rpushed) {
348 XFillPolygon(dpy, win, scr->draw_gc, p, 3, Convex, CoordModeOrigin);
349 XDrawLines(dpy, win, scr->draw_gc, p, 4, CoordModeOrigin);
350 } else {
351 XFillPolygon(dpy, win, gc, p, 3, Convex, CoordModeOrigin);
352 XDrawLines(dpy, win, gc, p, 4, CoordModeOrigin);
355 /* bottom left arrow */
356 p[0].x = p[3].x = 5;
357 p[0].y = p[3].y = ICON_SIZE - 5 - as;
358 p[1].x = 5;
359 p[1].y = ICON_SIZE - 6;
360 p[2].x = 4 + as;
361 p[2].y = ICON_SIZE - 6;
362 if (lpushed) {
363 XFillPolygon(dpy, win, scr->draw_gc, p, 3, Convex, CoordModeOrigin);
364 XDrawLines(dpy, win, scr->draw_gc, p, 4, CoordModeOrigin);
365 } else {
366 XFillPolygon(dpy, win, gc, p, 3, Convex, CoordModeOrigin);
367 XDrawLines(dpy, win, gc, p, 4, CoordModeOrigin);
371 RImage *wClipMakeTile(RImage *normalTile)
373 RImage *tile = RCloneImage(normalTile);
374 RColor black;
375 RColor dark;
376 RColor light;
377 int pt, tp;
378 int as;
380 pt = CLIP_BUTTON_SIZE * wPreferences.icon_size / 64;
381 tp = wPreferences.icon_size - 1 - pt;
382 as = pt - 15;
384 black.alpha = 255;
385 black.red = black.green = black.blue = 0;
387 dark.alpha = 0;
388 dark.red = dark.green = dark.blue = 60;
390 light.alpha = 0;
391 light.red = light.green = light.blue = 80;
393 /* top right */
394 ROperateLine(tile, RSubtractOperation, tp, 0, wPreferences.icon_size - 2, pt - 1, &dark);
395 RDrawLine(tile, tp - 1, 0, wPreferences.icon_size - 1, pt + 1, &black);
396 ROperateLine(tile, RAddOperation, tp, 2, wPreferences.icon_size - 3, pt, &light);
398 /* arrow bevel */
399 ROperateLine(tile, RSubtractOperation, ICON_SIZE - 7 - as, 4, ICON_SIZE - 5, 4, &dark);
400 ROperateLine(tile, RSubtractOperation, ICON_SIZE - 6 - as, 5, ICON_SIZE - 5, 6 + as, &dark);
401 ROperateLine(tile, RAddOperation, ICON_SIZE - 5, 4, ICON_SIZE - 5, 6 + as, &light);
403 /* bottom left */
404 ROperateLine(tile, RAddOperation, 2, tp + 2, pt - 2, wPreferences.icon_size - 3, &dark);
405 RDrawLine(tile, 0, tp - 1, pt + 1, wPreferences.icon_size - 1, &black);
406 ROperateLine(tile, RSubtractOperation, 0, tp - 2, pt + 1, wPreferences.icon_size - 2, &light);
408 /* arrow bevel */
409 ROperateLine(tile, RSubtractOperation, 4, ICON_SIZE - 7 - as, 4, ICON_SIZE - 5, &dark);
410 ROperateLine(tile, RSubtractOperation, 5, ICON_SIZE - 6 - as, 6 + as, ICON_SIZE - 5, &dark);
411 ROperateLine(tile, RAddOperation, 4, ICON_SIZE - 5, 6 + as, ICON_SIZE - 5, &light);
413 return tile;
416 static void omnipresentCallback(WMenu *menu, WMenuEntry *entry)
418 WAppIcon *clickedIcon = entry->clientdata;
419 WAppIcon *aicon;
420 WDock *dock;
421 WMArray *selectedIcons;
422 WMArrayIterator iter;
423 int failed;
425 /* Parameter not used, but tell the compiler that it is ok */
426 (void) menu;
428 assert(entry->clientdata != NULL);
430 dock = clickedIcon->dock;
432 selectedIcons = getSelected(dock);
434 if (!WMGetArrayItemCount(selectedIcons))
435 WMAddToArray(selectedIcons, clickedIcon);
437 failed = 0;
438 WM_ITERATE_ARRAY(selectedIcons, aicon, iter) {
439 if (wClipMakeIconOmnipresent(aicon, !aicon->omnipresent) == WO_FAILED)
440 failed++;
441 else if (aicon->icon->selected)
442 wIconSelect(aicon->icon);
444 WMFreeArray(selectedIcons);
446 if (failed > 1) {
447 wMessageDialog(dock->screen_ptr, _("Warning"),
448 _("Some icons cannot be made omnipresent. "
449 "Please make sure that no other icon is "
450 "docked in the same positions on the other "
451 "workspaces and the Clip is not full in "
452 "some workspace."), _("OK"), NULL, NULL);
453 } else if (failed == 1) {
454 wMessageDialog(dock->screen_ptr, _("Warning"),
455 _("Icon cannot be made omnipresent. "
456 "Please make sure that no other icon is "
457 "docked in the same position on the other "
458 "workspaces and the Clip is not full in "
459 "some workspace."), _("OK"), NULL, NULL);
463 static void removeIcons(WMArray *icons, WDock *dock)
465 WAppIcon *aicon;
466 int keepit;
467 WMArrayIterator it;
469 WM_ITERATE_ARRAY(icons, aicon, it) {
470 keepit = aicon->running && wApplicationOf(aicon->main_window);
471 wDockDetach(dock, aicon);
472 if (keepit) {
473 /* XXX: can: aicon->icon == NULL ? */
474 PlaceIcon(dock->screen_ptr, &aicon->x_pos, &aicon->y_pos,
475 wGetHeadForWindow(aicon->icon->owner));
476 XMoveWindow(dpy, aicon->icon->core->window, aicon->x_pos, aicon->y_pos);
477 if (!dock->mapped || dock->collapsed)
478 XMapWindow(dpy, aicon->icon->core->window);
481 WMFreeArray(icons);
483 if (wPreferences.auto_arrange_icons)
484 wArrangeIcons(dock->screen_ptr, True);
487 static void removeIconsCallback(WMenu *menu, WMenuEntry *entry)
489 WAppIcon *clickedIcon = (WAppIcon *) entry->clientdata;
490 WDock *dock;
491 WMArray *selectedIcons;
493 /* Parameter not used, but tell the compiler that it is ok */
494 (void) menu;
496 assert(clickedIcon != NULL);
498 dock = clickedIcon->dock;
500 selectedIcons = getSelected(dock);
502 if (WMGetArrayItemCount(selectedIcons)) {
503 if (wMessageDialog(dock->screen_ptr,
504 dock->type == WM_CLIP ? _("Workspace Clip") : _("Drawer"),
505 _("All selected icons will be removed!"),
506 _("OK"), _("Cancel"), NULL) != WAPRDefault) {
507 WMFreeArray(selectedIcons);
508 return;
510 } else {
511 if (clickedIcon->xindex == 0 && clickedIcon->yindex == 0) {
512 WMFreeArray(selectedIcons);
513 return;
515 WMAddToArray(selectedIcons, clickedIcon);
518 removeIcons(selectedIcons, dock);
520 if (dock->type == WM_DRAWER) {
521 drawerConsolidateIcons(dock);
525 static void keepIconsCallback(WMenu *menu, WMenuEntry *entry)
527 WAppIcon *clickedIcon = (WAppIcon *) entry->clientdata;
528 WDock *dock;
529 WAppIcon *aicon;
530 WMArray *selectedIcons;
531 WMArrayIterator it;
533 /* Parameter not used, but tell the compiler that it is ok */
534 (void) menu;
536 assert(clickedIcon != NULL);
537 dock = clickedIcon->dock;
539 selectedIcons = getSelected(dock);
541 if (!WMGetArrayItemCount(selectedIcons)
542 && clickedIcon != dock->screen_ptr->clip_icon) {
543 char *command = NULL;
545 if (!clickedIcon->command && !clickedIcon->editing) {
546 clickedIcon->editing = 1;
547 if (wInputDialog(dock->screen_ptr, _("Keep Icon"),
548 _("Type the command used to launch the application"), &command)) {
549 if (command && (command[0] == 0 || (command[0] == '-' && command[1] == 0))) {
550 wfree(command);
551 command = NULL;
553 clickedIcon->command = command;
554 clickedIcon->editing = 0;
555 } else {
556 clickedIcon->editing = 0;
557 if (command)
558 wfree(command);
559 WMFreeArray(selectedIcons);
560 return;
564 WMAddToArray(selectedIcons, clickedIcon);
567 WM_ITERATE_ARRAY(selectedIcons, aicon, it) {
568 if (aicon->icon->selected)
569 wIconSelect(aicon->icon);
571 if (aicon->attracted && aicon->command) {
572 aicon->attracted = 0;
573 if (aicon->icon->shadowed) {
574 aicon->icon->shadowed = 0;
577 * Update icon pixmap, RImage doesn't change,
578 * so call wIconUpdate is not needed
580 update_icon_pixmap(aicon->icon);
582 /* Paint it */
583 wAppIconPaint(aicon);
586 save_appicon(aicon);
588 WMFreeArray(selectedIcons);
591 static void toggleAutoAttractCallback(WMenu *menu, WMenuEntry *entry)
593 WDock *dock = (WDock *) entry->clientdata;
594 WScreen *scr = dock->screen_ptr;
596 assert(entry->clientdata != NULL);
598 dock->attract_icons = !dock->attract_icons;
600 entry->flags.indicator_on = dock->attract_icons;
602 wMenuPaint(menu);
604 if (dock->attract_icons) {
605 if (dock->type == WM_DRAWER) {
606 /* The newly auto-attracting dock is a drawer: disable any clip and
607 * previously attracting drawer */
609 if (!wPreferences.flags.noclip) {
610 int i;
611 for (i = 0; i < scr->workspace_count; i++)
612 scr->workspaces[ i ]->clip->attract_icons = False;
613 /* dock menu will be updated later, when opened */
616 if (scr->attracting_drawer != NULL)
617 scr->attracting_drawer->attract_icons = False;
618 scr->attracting_drawer = dock;
619 } else {
620 /* The newly auto-attracting dock is a clip: disable
621 * previously attracting drawer, if applicable */
622 if (scr->attracting_drawer != NULL) {
623 scr->attracting_drawer->attract_icons = False;
624 /* again, its menu will be updated, later. */
625 scr->attracting_drawer = NULL;
631 static void selectCallback(WMenu *menu, WMenuEntry *entry)
633 WAppIcon *icon = (WAppIcon *) entry->clientdata;
635 assert(icon != NULL);
637 wIconSelect(icon->icon);
639 wMenuPaint(menu);
642 static void attractIconsCallback(WMenu *menu, WMenuEntry *entry)
644 WAppIcon *clickedIcon = (WAppIcon *) entry->clientdata;
645 WDock *clip; /* clip... is a WM_CLIP or a WM_DRAWER */
646 WAppIcon *aicon;
647 int x, y, x_pos, y_pos;
648 Bool update_icon = False;
650 /* Parameter not used, but tell the compiler that it is ok */
651 (void) menu;
653 assert(entry->clientdata != NULL);
654 clip = clickedIcon->dock;
656 aicon = clip->screen_ptr->app_icon_list;
658 while (aicon) {
659 if (!aicon->docked && wDockFindFreeSlot(clip, &x, &y)) {
660 x_pos = clip->x_pos + x * ICON_SIZE;
661 y_pos = clip->y_pos + y * ICON_SIZE;
662 if (aicon->x_pos != x_pos || aicon->y_pos != y_pos)
663 move_window(aicon->icon->core->window, aicon->x_pos, aicon->y_pos, x_pos, y_pos);
665 aicon->attracted = 1;
666 if (!aicon->icon->shadowed) {
667 aicon->icon->shadowed = 1;
668 update_icon = True;
670 wDockAttachIcon(clip, aicon, x, y, update_icon);
671 if (clip->collapsed || !clip->mapped)
672 XUnmapWindow(dpy, aicon->icon->core->window);
674 aicon = aicon->next;
678 static void selectIconsCallback(WMenu *menu, WMenuEntry *entry)
680 WAppIcon *clickedIcon = (WAppIcon *) entry->clientdata;
681 WDock *dock;
682 WMArray *selectedIcons;
683 WMArrayIterator iter;
684 WAppIcon *btn;
685 int i;
687 assert(clickedIcon != NULL);
688 dock = clickedIcon->dock;
690 selectedIcons = getSelected(dock);
692 if (!WMGetArrayItemCount(selectedIcons)) {
693 for (i = 1; i < dock->max_icons; i++) {
694 btn = dock->icon_array[i];
695 if (btn && !btn->icon->selected)
696 wIconSelect(btn->icon);
698 } else {
699 WM_ITERATE_ARRAY(selectedIcons, btn, iter) {
700 wIconSelect(btn->icon);
703 WMFreeArray(selectedIcons);
705 wMenuPaint(menu);
708 static void toggleCollapsedCallback(WMenu *menu, WMenuEntry *entry)
710 assert(entry->clientdata != NULL);
712 toggleCollapsed(entry->clientdata);
714 entry->flags.indicator_on = ((WDock *) entry->clientdata)->collapsed;
716 wMenuPaint(menu);
719 static void toggleAutoCollapseCallback(WMenu *menu, WMenuEntry *entry)
721 WDock *dock;
722 assert(entry->clientdata != NULL);
724 dock = (WDock *) entry->clientdata;
726 dock->auto_collapse = !dock->auto_collapse;
728 entry->flags.indicator_on = ((WDock *) entry->clientdata)->auto_collapse;
730 wMenuPaint(menu);
733 static void toggleAutoRaiseLower(WDock *dock)
735 WDrawerChain *dc;
737 dock->auto_raise_lower = !dock->auto_raise_lower;
738 if (dock->type == WM_DOCK)
740 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next) {
741 toggleAutoRaiseLower(dc->adrawer);
746 static void toggleAutoRaiseLowerCallback(WMenu *menu, WMenuEntry *entry)
748 WDock *dock;
750 /* Parameter not used, but tell the compiler that it is ok */
751 (void) menu;
753 assert(entry->clientdata != NULL);
755 dock = (WDock *) entry->clientdata;
757 toggleAutoRaiseLower(dock);
759 entry->flags.indicator_on = ((WDock *) entry->clientdata)->auto_raise_lower;
761 wMenuPaint(menu);
764 static void launchCallback(WMenu *menu, WMenuEntry *entry)
766 WAppIcon *btn = (WAppIcon *) entry->clientdata;
768 /* Parameter not used, but tell the compiler that it is ok */
769 (void) menu;
771 launchDockedApplication(btn, False);
774 static void settingsCallback(WMenu *menu, WMenuEntry *entry)
776 WAppIcon *btn = (WAppIcon *) entry->clientdata;
778 /* Parameter not used, but tell the compiler that it is ok */
779 (void) menu;
781 if (btn->editing)
782 return;
783 ShowDockAppSettingsPanel(btn);
786 static void hideCallback(WMenu *menu, WMenuEntry *entry)
788 WApplication *wapp;
789 WAppIcon *btn = (WAppIcon *) entry->clientdata;
791 /* Parameter not used, but tell the compiler that it is ok */
792 (void) menu;
794 wapp = wApplicationOf(btn->icon->owner->main_window);
796 if (wapp->flags.hidden) {
797 wWorkspaceChange(btn->icon->core->screen_ptr, wapp->last_workspace);
798 wUnhideApplication(wapp, False, False);
799 } else {
800 wHideApplication(wapp);
804 static void unhideHereCallback(WMenu *menu, WMenuEntry *entry)
806 WApplication *wapp;
807 WAppIcon *btn = (WAppIcon *) entry->clientdata;
809 /* Parameter not used, but tell the compiler that it is ok */
810 (void) menu;
812 wapp = wApplicationOf(btn->icon->owner->main_window);
814 wUnhideApplication(wapp, False, True);
817 /* Name is only used when type == WM_DRAWER and when restoring a specific
818 * drawer, with a specific name. When creating a drawer, leave name to NULL
819 * and mainIconCreate will find the first unused unique name */
820 static WAppIcon *mainIconCreate(WScreen *scr, int type, const char *name)
822 WAppIcon *btn;
823 int x_pos;
825 switch(type) {
826 case WM_CLIP:
827 if (scr->clip_icon)
828 return scr->clip_icon;
830 btn = wAppIconCreateForDock(scr, NULL, "Logo", "WMClip", TILE_CLIP);
831 btn->icon->core->descriptor.handle_expose = clipIconExpose;
832 x_pos = 0;
833 break;
834 case WM_DOCK:
835 default: /* to avoid a warning about btn and x_pos, basically */
836 btn = wAppIconCreateForDock(scr, NULL, "Logo", "WMDock", TILE_NORMAL);
837 if (wPreferences.flags.clip_merged_in_dock)
838 btn->icon->core->descriptor.handle_expose = clipIconExpose;
839 x_pos = scr->scr_width - ICON_SIZE - DOCK_EXTRA_SPACE;
840 break;
841 case WM_DRAWER:
842 if (name == NULL)
843 name = findUniqueName(scr, "Drawer");
844 btn = wAppIconCreateForDock(scr, NULL, name, "WMDrawer", TILE_DRAWER);
845 btn->icon->core->descriptor.handle_expose = drawerIconExpose;
846 x_pos = 0;
849 btn->xindex = 0;
850 btn->yindex = 0;
852 btn->icon->core->descriptor.handle_mousedown = iconMouseDown;
853 btn->icon->core->descriptor.handle_enternotify = clipEnterNotify;
854 btn->icon->core->descriptor.handle_leavenotify = clipLeaveNotify;
855 btn->icon->core->descriptor.parent_type = WCLASS_DOCK_ICON;
856 btn->icon->core->descriptor.parent = btn;
857 XMapWindow(dpy, btn->icon->core->window);
858 btn->x_pos = x_pos;
859 btn->y_pos = 0;
860 btn->docked = 1;
861 if (type == WM_CLIP ||
862 (type == WM_DOCK && wPreferences.flags.clip_merged_in_dock))
863 scr->clip_icon = btn;
865 return btn;
868 static void switchWSCommand(WMenu *menu, WMenuEntry *entry)
870 WAppIcon *btn, *icon = (WAppIcon *) entry->clientdata;
871 WScreen *scr = icon->icon->core->screen_ptr;
872 WDock *src, *dest;
873 WMArray *selectedIcons;
874 int x, y;
876 /* Parameter not used, but tell the compiler that it is ok */
877 (void) menu;
879 if (entry->order == scr->current_workspace)
880 return;
882 src = icon->dock;
883 dest = scr->workspaces[entry->order]->clip;
885 selectedIcons = getSelected(src);
887 if (WMGetArrayItemCount(selectedIcons)) {
888 WMArrayIterator iter;
890 WM_ITERATE_ARRAY(selectedIcons, btn, iter) {
891 if (wDockFindFreeSlot(dest, &x, &y)) {
892 wDockMoveIconBetweenDocks(src, dest, btn, x, y);
893 XUnmapWindow(dpy, btn->icon->core->window);
896 } else if (icon != scr->clip_icon) {
897 if (wDockFindFreeSlot(dest, &x, &y)) {
898 wDockMoveIconBetweenDocks(src, dest, icon, x, y);
899 XUnmapWindow(dpy, icon->icon->core->window);
902 WMFreeArray(selectedIcons);
905 static void launchDockedApplication(WAppIcon *btn, Bool withSelection)
907 WScreen *scr = btn->icon->core->screen_ptr;
909 if (!btn->launching &&
910 ((!withSelection && btn->command != NULL) || (withSelection && btn->paste_command != NULL))) {
911 if (!btn->forced_dock) {
912 btn->relaunching = btn->running;
913 btn->running = 1;
915 if (btn->wm_instance || btn->wm_class) {
916 WWindowAttributes attr;
917 memset(&attr, 0, sizeof(WWindowAttributes));
918 wDefaultFillAttributes(btn->wm_instance, btn->wm_class, &attr, NULL, True);
920 if (!attr.no_appicon && !btn->buggy_app)
921 btn->launching = 1;
922 else
923 btn->running = 0;
925 btn->drop_launch = 0;
926 btn->paste_launch = withSelection;
927 scr->last_dock = btn->dock;
928 btn->pid = execCommand(btn, (withSelection ? btn->paste_command : btn->command), NULL);
929 if (btn->pid > 0) {
930 if (btn->buggy_app) {
931 /* give feedback that the app was launched */
932 btn->launching = 1;
933 dockIconPaint(btn);
934 btn->launching = 0;
935 WMAddTimerHandler(200, (WMCallback *) dockIconPaint, btn);
936 } else {
937 dockIconPaint(btn);
939 } else {
940 wwarning(_("could not launch application %s"), btn->command);
941 btn->launching = 0;
942 if (!btn->relaunching)
943 btn->running = 0;
948 static void updateWorkspaceMenu(WMenu *menu, WAppIcon *icon)
950 WScreen *scr = menu->frame->screen_ptr;
951 int i;
953 if (!menu || !icon)
954 return;
956 for (i = 0; i < scr->workspace_count; i++) {
957 if (i < menu->entry_no) {
958 if (strcmp(menu->entries[i]->text, scr->workspaces[i]->name) != 0) {
959 wfree(menu->entries[i]->text);
960 menu->entries[i]->text = wstrdup(scr->workspaces[i]->name);
961 menu->flags.realized = 0;
963 menu->entries[i]->clientdata = (void *)icon;
964 } else {
965 wMenuAddCallback(menu, scr->workspaces[i]->name, switchWSCommand, (void *)icon);
967 menu->flags.realized = 0;
970 if (i == scr->current_workspace)
971 wMenuSetEnabled(menu, i, False);
972 else
973 wMenuSetEnabled(menu, i, True);
976 if (!menu->flags.realized)
977 wMenuRealize(menu);
980 static WMenu *makeWorkspaceMenu(WScreen *scr)
982 WMenu *menu;
984 menu = wMenuCreate(scr, NULL, False);
985 if (!menu)
986 wwarning(_("could not create workspace submenu for Clip menu"));
988 wMenuAddCallback(menu, "", switchWSCommand, (void *)scr->clip_icon);
990 menu->flags.realized = 0;
991 wMenuRealize(menu);
993 return menu;
996 static void updateClipOptionsMenu(WMenu *menu, WDock *dock)
998 WMenuEntry *entry;
999 int index = 0;
1001 if (!menu || !dock)
1002 return;
1004 /* keep on top */
1005 entry = menu->entries[index];
1006 entry->flags.indicator_on = !dock->lowered;
1007 entry->clientdata = dock;
1008 wMenuSetEnabled(menu, index, dock->type == WM_CLIP);
1010 /* collapsed */
1011 entry = menu->entries[++index];
1012 entry->flags.indicator_on = dock->collapsed;
1013 entry->clientdata = dock;
1015 /* auto-collapse */
1016 entry = menu->entries[++index];
1017 entry->flags.indicator_on = dock->auto_collapse;
1018 entry->clientdata = dock;
1020 /* auto-raise/lower */
1021 entry = menu->entries[++index];
1022 entry->flags.indicator_on = dock->auto_raise_lower;
1023 entry->clientdata = dock;
1024 wMenuSetEnabled(menu, index, dock->lowered && (dock->type == WM_CLIP));
1026 /* attract icons */
1027 entry = menu->entries[++index];
1028 entry->flags.indicator_on = dock->attract_icons;
1029 entry->clientdata = dock;
1031 menu->flags.realized = 0;
1032 wMenuRealize(menu);
1036 static WMenu *makeClipOptionsMenu(WScreen *scr)
1038 WMenu *menu;
1039 WMenuEntry *entry;
1041 menu = wMenuCreate(scr, NULL, False);
1042 if (!menu) {
1043 wwarning(_("could not create options submenu for Clip menu"));
1044 return NULL;
1047 entry = wMenuAddCallback(menu, _("Keep on Top"), toggleLoweredCallback, NULL);
1048 entry->flags.indicator = 1;
1049 entry->flags.indicator_on = 1;
1050 entry->flags.indicator_type = MI_CHECK;
1052 entry = wMenuAddCallback(menu, _("Collapsed"), toggleCollapsedCallback, NULL);
1053 entry->flags.indicator = 1;
1054 entry->flags.indicator_on = 1;
1055 entry->flags.indicator_type = MI_CHECK;
1057 entry = wMenuAddCallback(menu, _("Autocollapse"), toggleAutoCollapseCallback, NULL);
1058 entry->flags.indicator = 1;
1059 entry->flags.indicator_on = 1;
1060 entry->flags.indicator_type = MI_CHECK;
1062 entry = wMenuAddCallback(menu, _("Autoraise"), toggleAutoRaiseLowerCallback, NULL);
1063 entry->flags.indicator = 1;
1064 entry->flags.indicator_on = 1;
1065 entry->flags.indicator_type = MI_CHECK;
1067 entry = wMenuAddCallback(menu, _("Autoattract Icons"), toggleAutoAttractCallback, NULL);
1068 entry->flags.indicator = 1;
1069 entry->flags.indicator_on = 1;
1070 entry->flags.indicator_type = MI_CHECK;
1072 menu->flags.realized = 0;
1073 wMenuRealize(menu);
1075 return menu;
1079 static void setDockPositionNormalCallback(WMenu *menu, WMenuEntry *entry)
1081 WDock *dock = (WDock *) entry->clientdata;
1082 WDrawerChain *dc;
1084 /* Parameter not used, but tell the compiler that it is ok */
1085 (void) menu;
1087 if (entry->flags.indicator_on) // already set, nothing to do
1088 return;
1089 // Do we come from auto raise lower or keep on top?
1090 if (dock->auto_raise_lower)
1092 dock->auto_raise_lower = 0;
1093 // Only for aesthetic purposes, can be removed when Autoraise status is no longer exposed in drawer option menu
1094 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next) {
1095 dc->adrawer->auto_raise_lower = 0;
1098 else
1100 // Will take care of setting lowered = 0 in drawers
1101 toggleLowered(dock);
1103 entry->flags.indicator_on = 1;
1106 static void setDockPositionAutoRaiseLowerCallback(WMenu *menu, WMenuEntry *entry)
1108 WDock *dock = (WDock *) entry->clientdata;
1109 WDrawerChain *dc;
1111 /* Parameter not used, but tell the compiler that it is ok */
1112 (void) menu;
1114 if (entry->flags.indicator_on) // already set, nothing to do
1115 return;
1116 // Do we come from normal or keep on top?
1117 if (!dock->lowered)
1119 toggleLowered(dock);
1121 dock->auto_raise_lower = 1;
1122 // Only for aesthetic purposes, can be removed when Autoraise status is no longer exposed in drawer option menu
1123 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next) {
1124 dc->adrawer->auto_raise_lower = 1;
1126 entry->flags.indicator_on = 1;
1129 static void setDockPositionKeepOnTopCallback(WMenu *menu, WMenuEntry *entry)
1131 WDock *dock = (WDock *) entry->clientdata;
1132 WDrawerChain *dc;
1134 /* Parameter not used, but tell the compiler that it is ok */
1135 (void) menu;
1137 if (entry->flags.indicator_on) // already set, nothing to do
1138 return;
1139 dock->auto_raise_lower = 0;
1140 // Only for aesthetic purposes, can be removed when Autoraise status is no longer exposed in drawer option menu
1141 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next) {
1142 dc->adrawer->auto_raise_lower = 0;
1144 toggleLowered(dock);
1145 entry->flags.indicator_on = 1;
1148 static void updateDockPositionMenu(WMenu *menu, WDock *dock)
1150 WMenuEntry *entry;
1151 int index = 0;
1153 assert(menu);
1154 assert(dock);
1156 /* Normal level */
1157 entry = menu->entries[index++];
1158 entry->flags.indicator_on = (dock->lowered && !dock->auto_raise_lower);
1159 entry->clientdata = dock;
1161 /* Auto-raise/lower */
1162 entry = menu->entries[index++];
1163 entry->flags.indicator_on = dock->auto_raise_lower;
1164 entry->clientdata = dock;
1166 /* Keep on top */
1167 entry = menu->entries[index++];
1168 entry->flags.indicator_on = !dock->lowered;
1169 entry->clientdata = dock;
1172 static WMenu *makeDockPositionMenu(WScreen *scr)
1174 /* When calling this, the dock is being created, so scr->dock is still not set
1175 * Therefore the callbacks' clientdata and the indicators can't be set,
1176 * they will be updated when the dock menu is opened. */
1177 WMenu *menu;
1178 WMenuEntry *entry;
1180 menu = wMenuCreate(scr, NULL, False);
1181 if (!menu) {
1182 wwarning(_("could not create options submenu for dock position menu"));
1183 return NULL;
1186 entry = wMenuAddCallback(menu, _("Normal"), setDockPositionNormalCallback, NULL);
1187 entry->flags.indicator = 1;
1188 entry->flags.indicator_type = MI_DIAMOND;
1190 entry = wMenuAddCallback(menu, _("Auto raise & lower"), setDockPositionAutoRaiseLowerCallback, NULL);
1191 entry->flags.indicator = 1;
1192 entry->flags.indicator_type = MI_DIAMOND;
1194 entry = wMenuAddCallback(menu, _("Keep on Top"), setDockPositionKeepOnTopCallback, NULL);
1195 entry->flags.indicator = 1;
1196 entry->flags.indicator_type = MI_DIAMOND;
1198 menu->flags.realized = 0;
1199 wMenuRealize(menu);
1201 return menu;
1205 static WMenu *dockMenuCreate(WScreen *scr, int type)
1207 WMenu *menu;
1208 WMenuEntry *entry;
1210 if (type == WM_CLIP && scr->clip_menu)
1211 return scr->clip_menu;
1213 if (type == WM_DRAWER && scr->drawer_menu)
1214 return scr->drawer_menu;
1216 menu = wMenuCreate(scr, NULL, False);
1217 if (type == WM_DOCK) {
1218 entry = wMenuAddCallback(menu, _("Dock position"), NULL, NULL);
1219 if (scr->dock_pos_menu == NULL)
1220 scr->dock_pos_menu = makeDockPositionMenu(scr);
1221 wMenuEntrySetCascade(menu, entry, scr->dock_pos_menu);
1223 if (!wPreferences.flags.nodrawer)
1224 wMenuAddCallback(menu, _("Add a drawer"), addADrawerCallback, NULL);
1226 } else {
1227 if (type == WM_CLIP)
1228 entry = wMenuAddCallback(menu, _("Clip Options"), NULL, NULL);
1229 else /* if (type == WM_DRAWER) */
1230 entry = wMenuAddCallback(menu, _("Drawer options"), NULL, NULL);
1232 if (scr->clip_options == NULL)
1233 scr->clip_options = makeClipOptionsMenu(scr);
1235 wMenuEntrySetCascade(menu, entry, scr->clip_options);
1237 /* The same menu is used for the dock and its appicons. If the menu
1238 * entry text is different between the two contexts, or if it can
1239 * change depending on some state, free the duplicated string (from
1240 * wMenuInsertCallback) and use gettext's string */
1241 if (type == WM_CLIP) {
1242 entry = wMenuAddCallback(menu, _("Rename Workspace"), renameCallback, NULL);
1243 wfree(entry->text);
1244 entry->text = _("Rename Workspace"); /* can be: (Toggle) Omnipresent */
1247 entry = wMenuAddCallback(menu, _("Selected"), selectCallback, NULL);
1248 entry->flags.indicator = 1;
1249 entry->flags.indicator_on = 1;
1250 entry->flags.indicator_type = MI_CHECK;
1252 entry = wMenuAddCallback(menu, _("Select All Icons"), selectIconsCallback, NULL);
1253 wfree(entry->text);
1254 entry->text = _("Select All Icons"); /* can be: Unselect all icons */
1256 entry = wMenuAddCallback(menu, _("Keep Icon"), keepIconsCallback, NULL);
1257 wfree(entry->text);
1258 entry->text = _("Keep Icon"); /* can be: Keep Icons */
1260 if (type == WM_CLIP) {
1261 entry = wMenuAddCallback(menu, _("Move Icon To"), NULL, NULL);
1262 wfree(entry->text);
1263 entry->text = _("Move Icon To"); /* can be: Move Icons to */
1264 scr->clip_submenu = makeWorkspaceMenu(scr);
1265 if (scr->clip_submenu)
1266 wMenuEntrySetCascade(menu, entry, scr->clip_submenu);
1269 entry = wMenuAddCallback(menu, _("Remove Icon"), removeIconsCallback, NULL);
1270 wfree(entry->text);
1271 entry->text = _("Remove Icon"); /* can be: Remove Icons */
1273 wMenuAddCallback(menu, _("Attract Icons"), attractIconsCallback, NULL);
1276 wMenuAddCallback(menu, _("Launch"), launchCallback, NULL);
1278 wMenuAddCallback(menu, _("Unhide Here"), unhideHereCallback, NULL);
1280 entry = wMenuAddCallback(menu, _("Hide"), hideCallback, NULL);
1281 wfree(entry->text);
1282 entry->text = _("Hide"); /* can be: Unhide */
1284 wMenuAddCallback(menu, _("Settings..."), settingsCallback, NULL);
1286 entry = wMenuAddCallback(menu, _("Kill"), killCallback, NULL);
1287 wfree(entry->text);
1288 entry->text = _("Kill"); /* can be: Remove drawer */
1290 if (type == WM_CLIP)
1291 scr->clip_menu = menu;
1293 if (type == WM_DRAWER)
1294 scr->drawer_menu = menu;
1296 return menu;
1299 WDock *wDockCreate(WScreen *scr, int type, const char *name)
1301 WDock *dock;
1302 WAppIcon *btn;
1304 make_keys();
1306 dock = wmalloc(sizeof(WDock));
1308 switch (type) {
1309 case WM_CLIP:
1310 dock->max_icons = DOCK_MAX_ICONS;
1311 break;
1312 case WM_DRAWER:
1313 dock->max_icons = scr->scr_width / wPreferences.icon_size;
1314 break;
1315 case WM_DOCK:
1316 default:
1317 dock->max_icons = scr->scr_height / wPreferences.icon_size;
1320 dock->icon_array = wmalloc(sizeof(WAppIcon *) * dock->max_icons);
1322 btn = mainIconCreate(scr, type, name);
1324 btn->dock = dock;
1326 dock->x_pos = btn->x_pos;
1327 dock->y_pos = btn->y_pos;
1328 dock->screen_ptr = scr;
1329 dock->type = type;
1330 dock->icon_count = 1;
1331 if (type == WM_DRAWER)
1332 dock->on_right_side = scr->dock->on_right_side;
1333 else
1334 dock->on_right_side = 1;
1335 dock->collapsed = 0;
1336 dock->auto_collapse = 0;
1337 dock->auto_collapse_magic = NULL;
1338 dock->auto_raise_lower = 0;
1339 dock->auto_lower_magic = NULL;
1340 dock->auto_raise_magic = NULL;
1341 dock->attract_icons = 0;
1342 dock->lowered = 1;
1343 dock->icon_array[0] = btn;
1344 wRaiseFrame(btn->icon->core);
1345 XMoveWindow(dpy, btn->icon->core->window, btn->x_pos, btn->y_pos);
1347 /* create dock menu */
1348 dock->menu = dockMenuCreate(scr, type);
1350 if (type == WM_DRAWER) {
1351 drawerAppendToChain(scr, dock);
1352 dock->auto_collapse = 1;
1355 return dock;
1358 void wDockDestroy(WDock *dock)
1360 int i;
1361 WAppIcon *aicon;
1363 for (i = (dock->type == WM_CLIP) ? 1 : 0; i < dock->max_icons; i++) {
1364 aicon = dock->icon_array[i];
1365 if (aicon) {
1366 int keepit = aicon->running && wApplicationOf(aicon->main_window);
1367 wDockDetach(dock, aicon);
1368 if (keepit) {
1369 /* XXX: can: aicon->icon == NULL ? */
1370 PlaceIcon(dock->screen_ptr, &aicon->x_pos, &aicon->y_pos,
1371 wGetHeadForWindow(aicon->icon->owner));
1372 XMoveWindow(dpy, aicon->icon->core->window, aicon->x_pos, aicon->y_pos);
1373 if (!dock->mapped || dock->collapsed)
1374 XMapWindow(dpy, aicon->icon->core->window);
1378 if (wPreferences.auto_arrange_icons)
1379 wArrangeIcons(dock->screen_ptr, True);
1380 wfree(dock->icon_array);
1381 if (dock->menu && dock->type != WM_CLIP)
1382 wMenuDestroy(dock->menu, True);
1383 if (dock->screen_ptr->last_dock == dock)
1384 dock->screen_ptr->last_dock = NULL;
1385 wfree(dock);
1388 void wClipIconPaint(WAppIcon *aicon)
1390 WScreen *scr = aicon->icon->core->screen_ptr;
1391 WWorkspace *workspace = scr->workspaces[scr->current_workspace];
1392 WMColor *color;
1393 Window win = aicon->icon->core->window;
1394 int length, nlength;
1395 char *ws_name, ws_number[10];
1396 int ty, tx;
1398 wIconPaint(aicon->icon);
1400 length = strlen(workspace->name);
1401 ws_name = wmalloc(length + 1);
1402 snprintf(ws_name, length + 1, "%s", workspace->name);
1403 snprintf(ws_number, sizeof(ws_number), "%i", scr->current_workspace + 1);
1404 nlength = strlen(ws_number);
1406 if (wPreferences.flags.noclip || !workspace->clip->collapsed)
1407 color = scr->clip_title_color[CLIP_NORMAL];
1408 else
1409 color = scr->clip_title_color[CLIP_COLLAPSED];
1411 ty = ICON_SIZE - WMFontHeight(scr->clip_title_font) - 3;
1413 tx = CLIP_BUTTON_SIZE * ICON_SIZE / 64;
1415 if(wPreferences.show_clip_title)
1416 WMDrawString(scr->wmscreen, win, color, scr->clip_title_font, tx, ty, ws_name, length);
1418 tx = (ICON_SIZE / 2 - WMWidthOfString(scr->clip_title_font, ws_number, nlength)) / 2;
1420 WMDrawString(scr->wmscreen, win, color, scr->clip_title_font, tx, 2, ws_number, nlength);
1422 wfree(ws_name);
1424 if (aicon->launching)
1425 XFillRectangle(dpy, aicon->icon->core->window, scr->stipple_gc,
1426 0, 0, wPreferences.icon_size, wPreferences.icon_size);
1428 paintClipButtons(aicon, aicon->dock->lclip_button_pushed, aicon->dock->rclip_button_pushed);
1431 static void clipIconExpose(WObjDescriptor *desc, XEvent *event)
1433 /* Parameter not used, but tell the compiler that it is ok */
1434 (void) desc;
1435 (void) event;
1437 wClipIconPaint(desc->parent);
1440 static void dockIconPaint(WAppIcon *btn)
1442 if (btn == btn->icon->core->screen_ptr->clip_icon) {
1443 wClipIconPaint(btn);
1444 } else if (wIsADrawer(btn)) {
1445 wDrawerIconPaint(btn);
1446 } else {
1447 wAppIconPaint(btn);
1448 save_appicon(btn);
1452 static WMPropList *make_icon_state(WAppIcon *btn)
1454 WMPropList *node = NULL;
1455 WMPropList *command, *autolaunch, *lock, *name, *forced;
1456 WMPropList *position, *buggy, *omnipresent;
1457 char *tmp;
1458 char buffer[64];
1460 if (btn) {
1461 if (!btn->command)
1462 command = WMCreatePLString("-");
1463 else
1464 command = WMCreatePLString(btn->command);
1466 autolaunch = btn->auto_launch ? dYes : dNo;
1468 lock = btn->lock ? dYes : dNo;
1470 tmp = EscapeWM_CLASS(btn->wm_instance, btn->wm_class);
1472 name = WMCreatePLString(tmp);
1474 wfree(tmp);
1476 forced = btn->forced_dock ? dYes : dNo;
1478 buggy = btn->buggy_app ? dYes : dNo;
1480 if (!wPreferences.flags.clip_merged_in_dock && btn == btn->icon->core->screen_ptr->clip_icon)
1481 snprintf(buffer, sizeof(buffer), "%i,%i", btn->x_pos, btn->y_pos);
1482 else
1483 snprintf(buffer, sizeof(buffer), "%hi,%hi", btn->xindex, btn->yindex);
1484 position = WMCreatePLString(buffer);
1486 node = WMCreatePLDictionary(dCommand, command,
1487 dName, name,
1488 dAutoLaunch, autolaunch,
1489 dLock, lock,
1490 dForced, forced, dBuggyApplication, buggy, dPosition, position, NULL);
1491 WMReleasePropList(command);
1492 WMReleasePropList(name);
1493 WMReleasePropList(position);
1495 omnipresent = btn->omnipresent ? dYes : dNo;
1496 if (btn->dock != btn->icon->core->screen_ptr->dock && (btn->xindex != 0 || btn->yindex != 0))
1497 WMPutInPLDictionary(node, dOmnipresent, omnipresent);
1499 #ifdef USE_DOCK_XDND
1500 if (btn->dnd_command) {
1501 command = WMCreatePLString(btn->dnd_command);
1502 WMPutInPLDictionary(node, dDropCommand, command);
1503 WMReleasePropList(command);
1505 #endif /* USE_DOCK_XDND */
1507 if (btn->paste_command) {
1508 command = WMCreatePLString(btn->paste_command);
1509 WMPutInPLDictionary(node, dPasteCommand, command);
1510 WMReleasePropList(command);
1514 return node;
1517 static WMPropList *dockSaveState(WDock *dock)
1519 int i;
1520 WMPropList *icon_info;
1521 WMPropList *list = NULL, *dock_state = NULL;
1522 WMPropList *value, *key;
1523 char buffer[256];
1525 list = WMCreatePLArray(NULL);
1527 for (i = (dock->type == WM_DOCK ? 0 : 1); i < dock->max_icons; i++) {
1528 WAppIcon *btn = dock->icon_array[i];
1530 if (!btn || btn->attracted)
1531 continue;
1533 icon_info = make_icon_state(dock->icon_array[i]);
1534 if (icon_info != NULL) {
1535 WMAddToPLArray(list, icon_info);
1536 WMReleasePropList(icon_info);
1540 dock_state = WMCreatePLDictionary(dApplications, list, NULL);
1542 if (dock->type == WM_DOCK) {
1543 snprintf(buffer, sizeof(buffer), "Applications%i", dock->screen_ptr->scr_height);
1544 key = WMCreatePLString(buffer);
1545 WMPutInPLDictionary(dock_state, key, list);
1546 WMReleasePropList(key);
1548 snprintf(buffer, sizeof(buffer), "%i,%i", (dock->on_right_side ? -ICON_SIZE : 0), dock->y_pos);
1549 value = WMCreatePLString(buffer);
1550 WMPutInPLDictionary(dock_state, dPosition, value);
1551 WMReleasePropList(value);
1553 WMReleasePropList(list);
1555 if (dock->type == WM_CLIP || dock->type == WM_DRAWER) {
1556 value = (dock->collapsed ? dYes : dNo);
1557 WMPutInPLDictionary(dock_state, dCollapsed, value);
1559 value = (dock->auto_collapse ? dYes : dNo);
1560 WMPutInPLDictionary(dock_state, dAutoCollapse, value);
1562 value = (dock->attract_icons ? dYes : dNo);
1563 WMPutInPLDictionary(dock_state, dAutoAttractIcons, value);
1566 if (dock->type == WM_DOCK || dock->type == WM_CLIP) {
1567 value = (dock->lowered ? dYes : dNo);
1568 WMPutInPLDictionary(dock_state, dLowered, value);
1570 value = (dock->auto_raise_lower ? dYes : dNo);
1571 WMPutInPLDictionary(dock_state, dAutoRaiseLower, value);
1574 return dock_state;
1577 void wDockSaveState(WScreen *scr, WMPropList *old_state)
1579 WMPropList *dock_state;
1580 WMPropList *keys;
1582 dock_state = dockSaveState(scr->dock);
1585 * Copy saved states of docks with different sizes.
1587 if (old_state) {
1588 int i;
1589 WMPropList *tmp;
1591 keys = WMGetPLDictionaryKeys(old_state);
1592 for (i = 0; i < WMGetPropListItemCount(keys); i++) {
1593 tmp = WMGetFromPLArray(keys, i);
1595 if (strncasecmp(WMGetFromPLString(tmp), "applications", 12) == 0
1596 && !WMGetFromPLDictionary(dock_state, tmp)) {
1598 WMPutInPLDictionary(dock_state, tmp, WMGetFromPLDictionary(old_state, tmp));
1601 WMReleasePropList(keys);
1604 WMPutInPLDictionary(scr->session_state, dDock, dock_state);
1606 WMReleasePropList(dock_state);
1609 void wClipSaveState(WScreen *scr)
1611 WMPropList *clip_state;
1613 clip_state = make_icon_state(scr->clip_icon);
1615 WMPutInPLDictionary(scr->session_state, dClip, clip_state);
1617 WMReleasePropList(clip_state);
1620 WMPropList *wClipSaveWorkspaceState(WScreen *scr, int workspace)
1622 return dockSaveState(scr->workspaces[workspace]->clip);
1625 static Bool getBooleanDockValue(WMPropList *value, WMPropList *key)
1627 if (value) {
1628 if (WMIsPLString(value)) {
1629 if (strcasecmp(WMGetFromPLString(value), "YES") == 0)
1630 return True;
1631 } else {
1632 wwarning(_("bad value in docked icon state info %s"), WMGetFromPLString(key));
1635 return False;
1638 static WAppIcon *restore_icon_state(WScreen *scr, WMPropList *info, int type, int index)
1640 WAppIcon *aicon;
1641 WMPropList *cmd, *value;
1642 char *wclass, *winstance, *command;
1644 cmd = WMGetFromPLDictionary(info, dCommand);
1645 if (!cmd || !WMIsPLString(cmd))
1646 return NULL;
1648 /* parse window name */
1649 value = WMGetFromPLDictionary(info, dName);
1650 if (!value)
1651 return NULL;
1653 ParseWindowName(value, &winstance, &wclass, "dock");
1655 if (!winstance && !wclass)
1656 return NULL;
1658 /* get commands */
1659 command = wstrdup(WMGetFromPLString(cmd));
1661 if (strcmp(command, "-") == 0) {
1662 wfree(command);
1664 if (wclass)
1665 wfree(wclass);
1666 if (winstance)
1667 wfree(winstance);
1669 return NULL;
1672 aicon = wAppIconCreateForDock(scr, command, winstance, wclass, TILE_NORMAL);
1673 if (wclass)
1674 wfree(wclass);
1675 if (winstance)
1676 wfree(winstance);
1678 wfree(command);
1680 aicon->icon->core->descriptor.handle_mousedown = iconMouseDown;
1681 aicon->icon->core->descriptor.handle_enternotify = clipEnterNotify;
1682 aicon->icon->core->descriptor.handle_leavenotify = clipLeaveNotify;
1683 aicon->icon->core->descriptor.parent_type = WCLASS_DOCK_ICON;
1684 aicon->icon->core->descriptor.parent = aicon;
1686 #ifdef USE_DOCK_XDND
1687 cmd = WMGetFromPLDictionary(info, dDropCommand);
1688 if (cmd)
1689 aicon->dnd_command = wstrdup(WMGetFromPLString(cmd));
1690 #endif
1692 cmd = WMGetFromPLDictionary(info, dPasteCommand);
1693 if (cmd)
1694 aicon->paste_command = wstrdup(WMGetFromPLString(cmd));
1696 /* check auto launch */
1697 value = WMGetFromPLDictionary(info, dAutoLaunch);
1699 aicon->auto_launch = getBooleanDockValue(value, dAutoLaunch);
1701 /* check lock */
1702 value = WMGetFromPLDictionary(info, dLock);
1704 aicon->lock = getBooleanDockValue(value, dLock);
1706 /* check if it wasn't normally docked */
1707 value = WMGetFromPLDictionary(info, dForced);
1709 aicon->forced_dock = getBooleanDockValue(value, dForced);
1711 /* check if we can rely on the stuff in the app */
1712 value = WMGetFromPLDictionary(info, dBuggyApplication);
1714 aicon->buggy_app = getBooleanDockValue(value, dBuggyApplication);
1716 /* get position in the dock */
1717 value = WMGetFromPLDictionary(info, dPosition);
1718 if (value && WMIsPLString(value)) {
1719 if (sscanf(WMGetFromPLString(value), "%hi,%hi", &aicon->xindex, &aicon->yindex) != 2)
1720 wwarning(_("bad value in docked icon state info %s"), WMGetFromPLString(dPosition));
1722 /* check position sanity */
1723 /* *Very* incomplete section! */
1724 if (type == WM_DOCK) {
1725 aicon->xindex = 0;
1727 } else {
1728 aicon->yindex = index;
1729 aicon->xindex = 0;
1732 /* check if icon is omnipresent */
1733 value = WMGetFromPLDictionary(info, dOmnipresent);
1735 aicon->omnipresent = getBooleanDockValue(value, dOmnipresent);
1737 aicon->running = 0;
1738 aicon->docked = 1;
1740 return aicon;
1743 #define COMPLAIN(key) wwarning(_("bad value in dock state info:%s"), key)
1745 WAppIcon *wClipRestoreState(WScreen *scr, WMPropList *clip_state)
1747 WAppIcon *icon;
1748 WMPropList *value;
1750 icon = mainIconCreate(scr, WM_CLIP, NULL);
1752 if (!clip_state)
1753 return icon;
1755 WMRetainPropList(clip_state);
1757 /* restore position */
1759 value = WMGetFromPLDictionary(clip_state, dPosition);
1761 if (value) {
1762 if (!WMIsPLString(value)) {
1763 COMPLAIN("Position");
1764 } else {
1765 if (sscanf(WMGetFromPLString(value), "%i,%i", &icon->x_pos, &icon->y_pos) != 2)
1766 COMPLAIN("Position");
1768 /* check position sanity */
1769 if (!onScreen(scr, icon->x_pos, icon->y_pos))
1770 wScreenKeepInside(scr, &icon->x_pos, &icon->y_pos, ICON_SIZE, ICON_SIZE);
1773 #ifdef USE_DOCK_XDND
1774 value = WMGetFromPLDictionary(clip_state, dDropCommand);
1775 if (value && WMIsPLString(value))
1776 icon->dnd_command = wstrdup(WMGetFromPLString(value));
1777 #endif
1779 value = WMGetFromPLDictionary(clip_state, dPasteCommand);
1780 if (value && WMIsPLString(value))
1781 icon->paste_command = wstrdup(WMGetFromPLString(value));
1783 WMReleasePropList(clip_state);
1785 return icon;
1788 WDock *wDockRestoreState(WScreen *scr, WMPropList *dock_state, int type)
1790 WDock *dock;
1791 WMPropList *apps;
1792 WMPropList *value;
1793 WAppIcon *aicon, *old_top;
1794 int count, i;
1796 dock = wDockCreate(scr, type, NULL);
1798 if (!dock_state)
1799 return dock;
1801 WMRetainPropList(dock_state);
1803 /* restore position */
1804 value = WMGetFromPLDictionary(dock_state, dPosition);
1805 if (value) {
1806 if (!WMIsPLString(value)) {
1807 COMPLAIN("Position");
1808 } else {
1809 if (sscanf(WMGetFromPLString(value), "%i,%i", &dock->x_pos, &dock->y_pos) != 2)
1810 COMPLAIN("Position");
1812 /* check position sanity */
1813 if (!onScreen(scr, dock->x_pos, dock->y_pos)) {
1814 int x = dock->x_pos;
1815 wScreenKeepInside(scr, &x, &dock->y_pos, ICON_SIZE, ICON_SIZE);
1818 /* Is this needed any more? */
1819 if (type == WM_CLIP) {
1820 if (dock->x_pos < 0) {
1821 dock->x_pos = 0;
1822 } else if (dock->x_pos > scr->scr_width - ICON_SIZE) {
1823 dock->x_pos = scr->scr_width - ICON_SIZE;
1825 } else {
1826 if (dock->x_pos >= 0) {
1827 dock->x_pos = DOCK_EXTRA_SPACE;
1828 dock->on_right_side = 0;
1829 } else {
1830 dock->x_pos = scr->scr_width - DOCK_EXTRA_SPACE - ICON_SIZE;
1831 dock->on_right_side = 1;
1837 /* restore lowered/raised state */
1838 dock->lowered = 0;
1840 value = WMGetFromPLDictionary(dock_state, dLowered);
1841 if (value) {
1842 if (!WMIsPLString(value)) {
1843 COMPLAIN("Lowered");
1844 } else {
1845 if (strcasecmp(WMGetFromPLString(value), "YES") == 0)
1846 dock->lowered = 1;
1850 /* restore collapsed state */
1851 dock->collapsed = 0;
1853 value = WMGetFromPLDictionary(dock_state, dCollapsed);
1854 if (value) {
1855 if (!WMIsPLString(value)) {
1856 COMPLAIN("Collapsed");
1857 } else {
1858 if (strcasecmp(WMGetFromPLString(value), "YES") == 0)
1859 dock->collapsed = 1;
1863 /* restore auto-collapsed state */
1864 value = WMGetFromPLDictionary(dock_state, dAutoCollapse);
1865 if (value) {
1866 if (!WMIsPLString(value)) {
1867 COMPLAIN("AutoCollapse");
1868 } else {
1869 if (strcasecmp(WMGetFromPLString(value), "YES") == 0) {
1870 dock->auto_collapse = 1;
1871 dock->collapsed = 1;
1876 /* restore auto-raise/lower state */
1877 value = WMGetFromPLDictionary(dock_state, dAutoRaiseLower);
1878 if (value) {
1879 if (!WMIsPLString(value)) {
1880 COMPLAIN("AutoRaiseLower");
1881 } else {
1882 if (strcasecmp(WMGetFromPLString(value), "YES") == 0)
1883 dock->auto_raise_lower = 1;
1887 /* restore attract icons state */
1888 dock->attract_icons = 0;
1890 value = WMGetFromPLDictionary(dock_state, dAutoAttractIcons);
1891 if (value) {
1892 if (!WMIsPLString(value)) {
1893 COMPLAIN("AutoAttractIcons");
1894 } else {
1895 if (strcasecmp(WMGetFromPLString(value), "YES") == 0)
1896 dock->attract_icons = 1;
1900 /* application list */
1903 WMPropList *tmp;
1904 char buffer[64];
1907 * When saving, it saves the dock state in
1908 * Applications and Applicationsnnn
1910 * When loading, it will first try Applicationsnnn.
1911 * If it does not exist, use Applications as default.
1914 snprintf(buffer, sizeof(buffer), "Applications%i", scr->scr_height);
1916 tmp = WMCreatePLString(buffer);
1917 apps = WMGetFromPLDictionary(dock_state, tmp);
1918 WMReleasePropList(tmp);
1920 if (!apps)
1921 apps = WMGetFromPLDictionary(dock_state, dApplications);
1924 if (!apps)
1925 goto finish;
1927 count = WMGetPropListItemCount(apps);
1928 if (count == 0)
1929 goto finish;
1931 old_top = dock->icon_array[0];
1933 /* dock->icon_count is set to 1 when dock is created.
1934 * Since Clip is already restored, we want to keep it so for clip,
1935 * but for dock we may change the default top tile, so we set it to 0.
1937 if (type == WM_DOCK)
1938 dock->icon_count = 0;
1940 for (i = 0; i < count; i++) {
1941 if (dock->icon_count >= dock->max_icons) {
1942 wwarning(_("there are too many icons stored in dock. Ignoring what doesn't fit"));
1943 break;
1946 value = WMGetFromPLArray(apps, i);
1947 aicon = restore_icon_state(scr, value, type, dock->icon_count);
1949 dock->icon_array[dock->icon_count] = aicon;
1951 if (aicon) {
1952 aicon->dock = dock;
1953 aicon->x_pos = dock->x_pos + (aicon->xindex * ICON_SIZE);
1954 aicon->y_pos = dock->y_pos + (aicon->yindex * ICON_SIZE);
1956 if (dock->lowered)
1957 ChangeStackingLevel(aicon->icon->core, WMNormalLevel);
1958 else
1959 ChangeStackingLevel(aicon->icon->core, WMDockLevel);
1961 wCoreConfigure(aicon->icon->core, aicon->x_pos, aicon->y_pos, 0, 0);
1962 if (!dock->collapsed)
1963 XMapWindow(dpy, aicon->icon->core->window);
1965 wRaiseFrame(aicon->icon->core);
1967 dock->icon_count++;
1968 } else if (dock->icon_count == 0 && type == WM_DOCK) {
1969 dock->icon_count++;
1973 /* if the first icon is not defined, use the default */
1974 if (dock->icon_array[0] == NULL) {
1975 /* update default icon */
1976 old_top->x_pos = dock->x_pos;
1977 old_top->y_pos = dock->y_pos;
1978 if (dock->lowered)
1979 ChangeStackingLevel(old_top->icon->core, WMNormalLevel);
1980 else
1981 ChangeStackingLevel(old_top->icon->core, WMDockLevel);
1983 dock->icon_array[0] = old_top;
1984 XMoveWindow(dpy, old_top->icon->core->window, dock->x_pos, dock->y_pos);
1985 /* we don't need to increment dock->icon_count here because it was
1986 * incremented in the loop above.
1988 } else if (old_top != dock->icon_array[0]) {
1989 if (old_top == scr->clip_icon) // TODO dande: understand the logic
1990 scr->clip_icon = dock->icon_array[0];
1992 wAppIconDestroy(old_top);
1995 finish:
1996 WMReleasePropList(dock_state);
1998 return dock;
2001 void wDockLaunchWithState(WAppIcon *btn, WSavedState *state)
2003 if (btn && btn->command && !btn->running && !btn->launching) {
2004 btn->drop_launch = 0;
2005 btn->paste_launch = 0;
2007 btn->pid = execCommand(btn, btn->command, state);
2009 if (btn->pid > 0) {
2010 if (!btn->forced_dock && !btn->buggy_app) {
2011 btn->launching = 1;
2012 dockIconPaint(btn);
2015 } else {
2016 wfree(state);
2020 void wDockDoAutoLaunch(WDock *dock, int workspace)
2022 WAppIcon *btn;
2023 WSavedState *state;
2024 int i;
2026 for (i = 0; i < dock->max_icons; i++) {
2027 btn = dock->icon_array[i];
2028 if (!btn || !btn->auto_launch)
2029 continue;
2031 state = wmalloc(sizeof(WSavedState));
2032 state->workspace = workspace;
2033 /* TODO: this is klugy and is very difficult to understand
2034 * what's going on. Try to clean up */
2035 wDockLaunchWithState(btn, state);
2039 #ifdef USE_DOCK_XDND
2040 static WDock *findDock(WScreen *scr, XEvent *event, int *icon_pos)
2042 WDock *dock;
2043 int i;
2045 dock = scr->dock;
2046 if (dock != NULL) {
2047 for (i = 0; i < dock->max_icons; i++) {
2048 if (dock->icon_array[i] &&
2049 dock->icon_array[i]->icon->core->window == event->xclient.window) {
2050 *icon_pos = i;
2051 return dock;
2056 dock = scr->workspaces[scr->current_workspace]->clip;
2057 if (dock != NULL) {
2058 for (i = 0; i < dock->max_icons; i++) {
2059 if (dock->icon_array[i] &&
2060 dock->icon_array[i]->icon->core->window == event->xclient.window) {
2061 *icon_pos = i;
2062 return dock;
2067 *icon_pos = -1;
2068 return NULL;
2071 int wDockReceiveDNDDrop(WScreen *scr, XEvent *event)
2073 WDock *dock;
2074 WAppIcon *btn;
2075 int icon_pos;
2077 dock = findDock(scr, event, &icon_pos);
2078 if (!dock)
2079 return False;
2082 * Return True if the drop was on an application icon window.
2083 * In this case, let the ClientMessage handler redirect the
2084 * message to the app.
2086 if (dock->icon_array[icon_pos]->icon->icon_win != None)
2087 return True;
2089 if (dock->icon_array[icon_pos]->dnd_command != NULL) {
2090 scr->flags.dnd_data_convertion_status = 0;
2092 btn = dock->icon_array[icon_pos];
2094 if (!btn->forced_dock) {
2095 btn->relaunching = btn->running;
2096 btn->running = 1;
2098 if (btn->wm_instance || btn->wm_class) {
2099 WWindowAttributes attr;
2100 memset(&attr, 0, sizeof(WWindowAttributes));
2101 wDefaultFillAttributes(btn->wm_instance, btn->wm_class, &attr, NULL, True);
2103 if (!attr.no_appicon)
2104 btn->launching = 1;
2105 else
2106 btn->running = 0;
2109 btn->paste_launch = 0;
2110 btn->drop_launch = 1;
2111 scr->last_dock = dock;
2112 btn->pid = execCommand(btn, btn->dnd_command, NULL);
2113 if (btn->pid > 0) {
2114 dockIconPaint(btn);
2115 } else {
2116 btn->launching = 0;
2117 if (!btn->relaunching)
2118 btn->running = 0;
2121 return False;
2123 #endif /* USE_DOCK_XDND */
2125 Bool wDockAttachIcon(WDock *dock, WAppIcon *icon, int x, int y, Bool update_icon)
2127 WWindow *wwin;
2128 Bool lupdate_icon = False;
2129 char *command = NULL;
2130 int index;
2132 icon->editing = 0;
2134 if (update_icon)
2135 lupdate_icon = True;
2137 if (icon->command == NULL) {
2138 /* If icon->owner exists, it means the application is running */
2139 if (icon->icon->owner) {
2140 wwin = icon->icon->owner;
2141 command = GetCommandForWindow(wwin->client_win);
2144 if (command) {
2145 icon->command = command;
2146 } else {
2147 /* icon->forced_dock = 1; */
2148 if (dock->type != WM_CLIP || !icon->attracted) {
2149 icon->editing = 1;
2150 if (wInputDialog(dock->screen_ptr, _("Dock Icon"),
2151 _("Type the command used to launch the application"), &command)) {
2152 if (command && (command[0] == 0 || (command[0] == '-' && command[1] == 0))) {
2153 wfree(command);
2154 command = NULL;
2156 icon->command = command;
2157 icon->editing = 0;
2158 } else {
2159 icon->editing = 0;
2160 if (command)
2161 wfree(command);
2162 /* If the target is the dock, reject the icon. If
2163 * the target is the clip, make it an attracted icon
2165 if (dock->type == WM_CLIP) {
2166 icon->attracted = 1;
2167 if (!icon->icon->shadowed) {
2168 icon->icon->shadowed = 1;
2169 lupdate_icon = True;
2171 } else {
2172 return False;
2179 for (index = 1; index < dock->max_icons; index++)
2180 if (dock->icon_array[index] == NULL)
2181 break;
2182 /* if (index == dock->max_icons)
2183 return; */
2185 assert(index < dock->max_icons);
2187 dock->icon_array[index] = icon;
2188 icon->yindex = y;
2189 icon->xindex = x;
2191 icon->omnipresent = 0;
2193 icon->x_pos = dock->x_pos + x * ICON_SIZE;
2194 icon->y_pos = dock->y_pos + y * ICON_SIZE;
2196 dock->icon_count++;
2198 icon->running = 1;
2199 icon->launching = 0;
2200 icon->docked = 1;
2201 icon->dock = dock;
2202 icon->icon->core->descriptor.handle_mousedown = iconMouseDown;
2203 icon->icon->core->descriptor.handle_enternotify = clipEnterNotify;
2204 icon->icon->core->descriptor.handle_leavenotify = clipLeaveNotify;
2205 icon->icon->core->descriptor.parent_type = WCLASS_DOCK_ICON;
2206 icon->icon->core->descriptor.parent = icon;
2208 MoveInStackListUnder(dock->icon_array[index - 1]->icon->core, icon->icon->core);
2209 wAppIconMove(icon, icon->x_pos, icon->y_pos);
2212 * Update icon pixmap, RImage doesn't change,
2213 * so call wIconUpdate is not needed
2215 if (lupdate_icon)
2216 update_icon_pixmap(icon->icon);
2218 /* Paint it */
2219 wAppIconPaint(icon);
2221 /* Save it */
2222 save_appicon(icon);
2224 if (wPreferences.auto_arrange_icons)
2225 wArrangeIcons(dock->screen_ptr, True);
2227 #ifdef USE_DOCK_XDND
2228 if (icon->command && !icon->dnd_command) {
2229 int len = strlen(icon->command) + 8;
2230 icon->dnd_command = wmalloc(len);
2231 snprintf(icon->dnd_command, len, "%s %%d", icon->command);
2233 #endif
2235 if (icon->command && !icon->paste_command) {
2236 int len = strlen(icon->command) + 8;
2237 icon->paste_command = wmalloc(len);
2238 snprintf(icon->paste_command, len, "%s %%s", icon->command);
2241 return True;
2244 void wDockReattachIcon(WDock *dock, WAppIcon *icon, int x, int y)
2246 int index;
2248 for (index = 1; index < dock->max_icons; index++) {
2249 if (dock->icon_array[index] == icon)
2250 break;
2252 assert(index < dock->max_icons);
2254 icon->yindex = y;
2255 icon->xindex = x;
2257 icon->x_pos = dock->x_pos + x * ICON_SIZE;
2258 icon->y_pos = dock->y_pos + y * ICON_SIZE;
2261 Bool wDockMoveIconBetweenDocks(WDock *src, WDock *dest, WAppIcon *icon, int x, int y)
2263 WWindow *wwin;
2264 char *command = NULL;
2265 int index;
2266 Bool update_icon = False;
2268 if (src == dest)
2269 return True; /* No move needed, we're already there */
2271 if (dest == NULL)
2272 return False;
2275 * For the moment we can't do this if we move icons in Clip from one
2276 * workspace to other, because if we move two or more icons without
2277 * command, the dialog box will not be able to tell us to which of the
2278 * moved icons it applies. -Dan
2280 if ((dest->type == WM_DOCK /*|| dest->keep_attracted */ ) && icon->command == NULL) {
2281 /* If icon->owner exists, it means the application is running */
2282 if (icon->icon->owner) {
2283 wwin = icon->icon->owner;
2284 command = GetCommandForWindow(wwin->client_win);
2287 if (command) {
2288 icon->command = command;
2289 } else {
2290 icon->editing = 1;
2291 /* icon->forced_dock = 1; */
2292 if (wInputDialog(src->screen_ptr, _("Dock Icon"),
2293 _("Type the command used to launch the application"), &command)) {
2294 if (command && (command[0] == 0 || (command[0] == '-' && command[1] == 0))) {
2295 wfree(command);
2296 command = NULL;
2298 icon->command = command;
2299 } else {
2300 icon->editing = 0;
2301 if (command)
2302 wfree(command);
2303 return False;
2305 icon->editing = 0;
2309 if (dest->type == WM_DOCK || dest->type == WM_DRAWER)
2310 wClipMakeIconOmnipresent(icon, False);
2312 for (index = 1; index < src->max_icons; index++) {
2313 if (src->icon_array[index] == icon)
2314 break;
2316 assert(index < src->max_icons);
2318 src->icon_array[index] = NULL;
2319 src->icon_count--;
2321 for (index = 1; index < dest->max_icons; index++) {
2322 if (dest->icon_array[index] == NULL)
2323 break;
2326 assert(index < dest->max_icons);
2328 dest->icon_array[index] = icon;
2329 icon->dock = dest;
2331 /* deselect the icon */
2332 if (icon->icon->selected)
2333 wIconSelect(icon->icon);
2335 icon->icon->core->descriptor.handle_enternotify = clipEnterNotify;
2336 icon->icon->core->descriptor.handle_leavenotify = clipLeaveNotify;
2338 /* set it to be kept when moving to dock.
2339 * Unless the icon does not have a command set
2341 if (icon->command && (dest->type == WM_DOCK || dest->type == WM_DRAWER)) {
2342 icon->attracted = 0;
2343 if (icon->icon->shadowed) {
2344 icon->icon->shadowed = 0;
2345 update_icon = True;
2347 save_appicon(icon);
2350 if (src->auto_collapse || src->auto_raise_lower)
2351 clipLeave(src);
2353 icon->yindex = y;
2354 icon->xindex = x;
2356 icon->x_pos = dest->x_pos + x * ICON_SIZE;
2357 icon->y_pos = dest->y_pos + y * ICON_SIZE;
2359 dest->icon_count++;
2361 MoveInStackListUnder(dest->icon_array[index - 1]->icon->core, icon->icon->core);
2364 * Update icon pixmap, RImage doesn't change,
2365 * so call wIconUpdate is not needed
2367 if (update_icon)
2368 update_icon_pixmap(icon->icon);
2370 /* Paint it */
2371 wAppIconPaint(icon);
2373 return True;
2376 void wDockDetach(WDock *dock, WAppIcon *icon)
2378 int index;
2379 Bool update_icon = False;
2381 /* make the settings panel be closed */
2382 if (icon->panel)
2383 DestroyDockAppSettingsPanel(icon->panel);
2385 /* This must be called before icon->dock is set to NULL.
2386 * Don't move it. -Dan
2388 wClipMakeIconOmnipresent(icon, False);
2390 icon->docked = 0;
2391 icon->dock = NULL;
2392 icon->attracted = 0;
2393 icon->auto_launch = 0;
2394 if (icon->icon->shadowed) {
2395 icon->icon->shadowed = 0;
2396 update_icon = True;
2399 /* deselect the icon */
2400 if (icon->icon->selected)
2401 wIconSelect(icon->icon);
2403 if (icon->command) {
2404 wfree(icon->command);
2405 icon->command = NULL;
2407 #ifdef USE_DOCK_XDND
2408 if (icon->dnd_command) {
2409 wfree(icon->dnd_command);
2410 icon->dnd_command = NULL;
2412 #endif
2413 if (icon->paste_command) {
2414 wfree(icon->paste_command);
2415 icon->paste_command = NULL;
2418 for (index = 1; index < dock->max_icons; index++)
2419 if (dock->icon_array[index] == icon)
2420 break;
2422 assert(index < dock->max_icons);
2423 dock->icon_array[index] = NULL;
2424 icon->yindex = -1;
2425 icon->xindex = -1;
2427 dock->icon_count--;
2429 /* if the dock is not attached to an application or
2430 * the application did not set the appropriate hints yet,
2431 * destroy the icon */
2432 if (!icon->running || !wApplicationOf(icon->main_window)) {
2433 wAppIconDestroy(icon);
2434 } else {
2435 icon->icon->core->descriptor.handle_mousedown = appIconMouseDown;
2436 icon->icon->core->descriptor.handle_enternotify = NULL;
2437 icon->icon->core->descriptor.handle_leavenotify = NULL;
2438 icon->icon->core->descriptor.parent_type = WCLASS_APPICON;
2439 icon->icon->core->descriptor.parent = icon;
2441 ChangeStackingLevel(icon->icon->core, NORMAL_ICON_LEVEL);
2444 * Update icon pixmap, RImage doesn't change,
2445 * so call wIconUpdate is not needed
2447 if (update_icon)
2448 update_icon_pixmap(icon->icon);
2450 /* Paint it */
2451 wAppIconPaint(icon);
2453 if (wPreferences.auto_arrange_icons)
2454 wArrangeIcons(dock->screen_ptr, True);
2456 if (dock->auto_collapse || dock->auto_raise_lower)
2457 clipLeave(dock);
2461 * returns the closest Dock slot index for the passed
2462 * coordinates.
2464 * Returns False if icon can't be docked.
2466 * Note: this function should NEVER alter ret_x or ret_y, unless it will
2467 * return True. -Dan
2469 /* Redocking == true means either icon->dock == dock (normal case)
2470 * or we are called from handleDockMove for a drawer */
2471 Bool wDockSnapIcon(WDock *dock, WAppIcon *icon, int req_x, int req_y, int *ret_x, int *ret_y, int redocking)
2473 WScreen *scr = dock->screen_ptr;
2474 int dx, dy;
2475 int ex_x, ex_y;
2476 int i, offset = ICON_SIZE / 2;
2477 WAppIcon *aicon = NULL;
2478 WAppIcon *nicon = NULL;
2480 if (wPreferences.flags.noupdates)
2481 return False;
2483 dx = dock->x_pos;
2484 dy = dock->y_pos;
2486 /* if the dock is full */
2487 if (!redocking && (dock->icon_count >= dock->max_icons))
2488 return False;
2490 /* exact position */
2491 if (req_y < dy)
2492 ex_y = (req_y - offset - dy) / ICON_SIZE;
2493 else
2494 ex_y = (req_y + offset - dy) / ICON_SIZE;
2496 if (req_x < dx)
2497 ex_x = (req_x - offset - dx) / ICON_SIZE;
2498 else
2499 ex_x = (req_x + offset - dx) / ICON_SIZE;
2501 /* check if the icon is outside the screen boundaries */
2502 if (!onScreen(scr, dx + ex_x * ICON_SIZE, dy + ex_y * ICON_SIZE))
2503 return False;
2505 switch (dock->type) {
2506 case WM_DOCK:
2507 /* We can return False right away if
2508 * - we do not come from this dock (which is a WM_DOCK),
2509 * - we are not right over it, and
2510 * - we are not the main tile of a drawer.
2511 * In the latter case, we are called from handleDockMove. */
2512 if (icon->dock != dock && ex_x != 0 &&
2513 !(icon->dock && icon->dock->type == WM_DRAWER && icon == icon->dock->icon_array[0]))
2514 return False;
2516 if (!redocking && ex_x != 0)
2517 return False;
2519 if (getDrawer(scr, ex_y)) /* Return false so that the drawer gets it. */
2520 return False;
2522 aicon = NULL;
2523 for (i = 0; i < dock->max_icons; i++) {
2524 nicon = dock->icon_array[i];
2525 if (nicon && nicon->yindex == ex_y) {
2526 aicon = nicon;
2527 break;
2531 if (redocking) {
2532 int sig, done, closest;
2534 /* Possible cases when redocking:
2536 * icon dragged out of range of any slot -> false
2537 * icon dragged on a drawer -> false (to open the drawer)
2538 * icon dragged to range of free slot
2539 * icon dragged to range of same slot
2540 * icon dragged to range of different icon
2542 if (abs(ex_x) > DOCK_DETTACH_THRESHOLD)
2543 return False;
2545 if (aicon == icon || !aicon) {
2546 *ret_x = 0;
2547 *ret_y = ex_y;
2548 return True;
2551 /* start looking at the upper slot or lower? */
2552 if (ex_y * ICON_SIZE < (req_y + offset - dy))
2553 sig = 1;
2554 else
2555 sig = -1;
2557 done = 0;
2558 /* look for closest free slot */
2559 for (i = 0; i < (DOCK_DETTACH_THRESHOLD + 1) * 2 && !done; i++) {
2560 int j;
2562 done = 1;
2563 closest = sig * (i / 2) + ex_y;
2564 /* check if this slot is fully on the screen and not used */
2565 if (onScreen(scr, dx, dy + closest * ICON_SIZE)) {
2566 for (j = 0; j < dock->max_icons; j++) {
2567 if (dock->icon_array[j]
2568 && dock->icon_array[j]->yindex == closest) {
2569 /* slot is used by someone else */
2570 if (dock->icon_array[j] != icon)
2571 done = 0;
2572 break;
2575 /* slot is used by a drawer */
2576 done = done && !getDrawer(scr, closest);
2578 else // !onScreen
2579 done = 0;
2580 sig = -sig;
2582 if (done &&
2583 ((ex_y >= closest && ex_y - closest < DOCK_DETTACH_THRESHOLD + 1)
2584 || (ex_y < closest && closest - ex_y <= DOCK_DETTACH_THRESHOLD + 1))) {
2585 *ret_x = 0;
2586 *ret_y = closest;
2587 return True;
2589 } else { /* !redocking */
2591 /* if slot is free and the icon is close enough, return it */
2592 if (!aicon && ex_x == 0) {
2593 *ret_x = 0;
2594 *ret_y = ex_y;
2595 return True;
2598 break;
2599 case WM_CLIP:
2601 int neighbours = 0;
2602 int start, stop, k;
2604 start = icon->omnipresent ? 0 : scr->current_workspace;
2605 stop = icon->omnipresent ? scr->workspace_count : start + 1;
2607 aicon = NULL;
2608 for (k = start; k < stop; k++) {
2609 WDock *tmp = scr->workspaces[k]->clip;
2610 if (!tmp)
2611 continue;
2612 for (i = 0; i < tmp->max_icons; i++) {
2613 nicon = tmp->icon_array[i];
2614 if (nicon && nicon->xindex == ex_x && nicon->yindex == ex_y) {
2615 aicon = nicon;
2616 break;
2619 if (aicon)
2620 break;
2622 for (k = start; k < stop; k++) {
2623 WDock *tmp = scr->workspaces[k]->clip;
2624 if (!tmp)
2625 continue;
2626 for (i = 0; i < tmp->max_icons; i++) {
2627 nicon = tmp->icon_array[i];
2628 if (nicon && nicon != icon && /* Icon can't be it's own neighbour */
2629 (abs(nicon->xindex - ex_x) <= CLIP_ATTACH_VICINITY &&
2630 abs(nicon->yindex - ex_y) <= CLIP_ATTACH_VICINITY)) {
2631 neighbours = 1;
2632 break;
2635 if (neighbours)
2636 break;
2639 if (neighbours && (aicon == NULL || (redocking && aicon == icon))) {
2640 *ret_x = ex_x;
2641 *ret_y = ex_y;
2642 return True;
2644 break;
2646 case WM_DRAWER:
2648 WAppIcon *aicons_to_shift[ dock->icon_count ];
2649 int index_of_hole, j;
2651 if (ex_y != 0 ||
2652 abs(ex_x) - dock->icon_count > DOCK_DETTACH_THRESHOLD ||
2653 (ex_x < 0 && !dock->on_right_side) ||
2654 (ex_x > 0 && dock->on_right_side)) {
2655 return False;
2658 if (ex_x == 0)
2659 ex_x = (dock->on_right_side ? -1 : 1);
2661 /* "Reduce" ex_x but keep its sign */
2662 if (redocking) {
2663 if (abs(ex_x) > dock->icon_count - 1) /* minus 1: do not take icon_array[0] into account */
2664 ex_x = ex_x * (dock->icon_count - 1) / abs(ex_x); /* don't use *= ! */
2665 } else {
2666 if (abs(ex_x) > dock->icon_count)
2667 ex_x = ex_x * dock->icon_count / abs(ex_x);
2669 index_of_hole = indexOfHole(dock, icon, redocking);
2671 /* Find the appicons between where icon was (index_of_hole) and where
2672 * it wants to be (ex_x) and slide them. */
2673 j = 0;
2674 for (i = 1; i < dock->max_icons; i++) {
2675 aicon = dock->icon_array[i];
2676 if ((aicon != NULL) && (aicon != icon) &&
2677 ((ex_x <= aicon->xindex && aicon->xindex < index_of_hole) ||
2678 (index_of_hole < aicon->xindex && aicon->xindex <= ex_x)))
2679 aicons_to_shift[ j++ ] = aicon;
2681 assert(j == abs(ex_x - index_of_hole));
2683 wSlideAppicons(aicons_to_shift, j, (index_of_hole < ex_x));
2685 *ret_x = ex_x;
2686 *ret_y = ex_y;
2687 return True;
2690 return False;
2693 static int onScreen(WScreen *scr, int x, int y)
2695 WMRect rect;
2696 int flags;
2698 rect.pos.x = x;
2699 rect.pos.y = y;
2700 rect.size.width = rect.size.height = ICON_SIZE;
2702 wGetRectPlacementInfo(scr, rect, &flags);
2704 return !(flags & (XFLAG_DEAD | XFLAG_PARTIAL));
2708 * returns true if it can find a free slot in the dock,
2709 * in which case it changes x_pos and y_pos accordingly.
2710 * Else returns false.
2712 Bool wDockFindFreeSlot(WDock *dock, int *x_pos, int *y_pos)
2714 WScreen *scr = dock->screen_ptr;
2715 WAppIcon *btn;
2716 WAppIconChain *chain;
2717 unsigned char *slot_map;
2718 int mwidth;
2719 int r;
2720 int x, y;
2721 int i, done = False;
2722 int corner;
2723 int ex = scr->scr_width, ey = scr->scr_height;
2724 int extra_count = 0;
2726 if (dock->type == WM_DRAWER) {
2727 if (dock->icon_count >= dock->max_icons) { /* drawer is full */
2728 return False;
2730 *x_pos = dock->icon_count * (dock->on_right_side ? -1 : 1);
2731 *y_pos = 0;
2732 return True;
2735 if (dock->type == WM_CLIP && dock != scr->workspaces[scr->current_workspace]->clip)
2736 extra_count = scr->global_icon_count;
2738 /* if the dock is full */
2739 if (dock->icon_count + extra_count >= dock->max_icons)
2740 return False;
2742 if (!wPreferences.flags.nodock && scr->dock && scr->dock->on_right_side) {
2743 ex -= ICON_SIZE + DOCK_EXTRA_SPACE;
2746 if (ex < dock->x_pos)
2747 ex = dock->x_pos;
2748 #define C_NONE 0
2749 #define C_NW 1
2750 #define C_NE 2
2751 #define C_SW 3
2752 #define C_SE 4
2754 /* check if clip is in a corner */
2755 if (dock->type == WM_CLIP) {
2756 if (dock->x_pos < 1 && dock->y_pos < 1)
2757 corner = C_NE;
2758 else if (dock->x_pos < 1 && dock->y_pos >= (ey - ICON_SIZE))
2759 corner = C_SE;
2760 else if (dock->x_pos >= (ex - ICON_SIZE) && dock->y_pos >= (ey - ICON_SIZE))
2761 corner = C_SW;
2762 else if (dock->x_pos >= (ex - ICON_SIZE) && dock->y_pos < 1)
2763 corner = C_NW;
2764 else
2765 corner = C_NONE;
2766 } else {
2767 corner = C_NONE;
2770 /* If the clip is in the corner, use only slots that are in the border
2771 * of the screen */
2772 if (corner != C_NONE) {
2773 char *hmap, *vmap;
2774 int hcount, vcount;
2776 hcount = WMIN(dock->max_icons, scr->scr_width / ICON_SIZE);
2777 vcount = WMIN(dock->max_icons, scr->scr_height / ICON_SIZE);
2778 hmap = wmalloc(hcount + 1);
2779 vmap = wmalloc(vcount + 1);
2781 /* mark used positions */
2782 switch (corner) {
2783 case C_NE:
2784 for (i = 0; i < dock->max_icons; i++) {
2785 btn = dock->icon_array[i];
2786 if (!btn)
2787 continue;
2789 if (btn->xindex == 0 && btn->yindex > 0 && btn->yindex < vcount)
2790 vmap[btn->yindex] = 1;
2791 else if (btn->yindex == 0 && btn->xindex > 0 && btn->xindex < hcount)
2792 hmap[btn->xindex] = 1;
2794 for (chain = scr->global_icons; chain != NULL; chain = chain->next) {
2795 btn = chain->aicon;
2796 if (btn->xindex == 0 && btn->yindex > 0 && btn->yindex < vcount)
2797 vmap[btn->yindex] = 1;
2798 else if (btn->yindex == 0 && btn->xindex > 0 && btn->xindex < hcount)
2799 hmap[btn->xindex] = 1;
2801 break;
2802 case C_NW:
2803 for (i = 0; i < dock->max_icons; i++) {
2804 btn = dock->icon_array[i];
2805 if (!btn)
2806 continue;
2808 if (btn->xindex == 0 && btn->yindex > 0 && btn->yindex < vcount)
2809 vmap[btn->yindex] = 1;
2810 else if (btn->yindex == 0 && btn->xindex < 0 && btn->xindex > -hcount)
2811 hmap[-btn->xindex] = 1;
2813 for (chain = scr->global_icons; chain != NULL; chain = chain->next) {
2814 btn = chain->aicon;
2815 if (btn->xindex == 0 && btn->yindex > 0 && btn->yindex < vcount)
2816 vmap[btn->yindex] = 1;
2817 else if (btn->yindex == 0 && btn->xindex < 0 && btn->xindex > -hcount)
2818 hmap[-btn->xindex] = 1;
2820 break;
2821 case C_SE:
2822 for (i = 0; i < dock->max_icons; i++) {
2823 btn = dock->icon_array[i];
2824 if (!btn)
2825 continue;
2827 if (btn->xindex == 0 && btn->yindex < 0 && btn->yindex > -vcount)
2828 vmap[-btn->yindex] = 1;
2829 else if (btn->yindex == 0 && btn->xindex > 0 && btn->xindex < hcount)
2830 hmap[btn->xindex] = 1;
2832 for (chain = scr->global_icons; chain != NULL; chain = chain->next) {
2833 btn = chain->aicon;
2834 if (btn->xindex == 0 && btn->yindex < 0 && btn->yindex > -vcount)
2835 vmap[-btn->yindex] = 1;
2836 else if (btn->yindex == 0 && btn->xindex > 0 && btn->xindex < hcount)
2837 hmap[btn->xindex] = 1;
2839 break;
2840 case C_SW:
2841 default:
2842 for (i = 0; i < dock->max_icons; i++) {
2843 btn = dock->icon_array[i];
2844 if (!btn)
2845 continue;
2847 if (btn->xindex == 0 && btn->yindex < 0 && btn->yindex > -vcount)
2848 vmap[-btn->yindex] = 1;
2849 else if (btn->yindex == 0 && btn->xindex < 0 && btn->xindex > -hcount)
2850 hmap[-btn->xindex] = 1;
2852 for (chain = scr->global_icons; chain != NULL; chain = chain->next) {
2853 btn = chain->aicon;
2854 if (btn->xindex == 0 && btn->yindex < 0 && btn->yindex > -vcount)
2855 vmap[-btn->yindex] = 1;
2856 else if (btn->yindex == 0 && btn->xindex < 0 && btn->xindex > -hcount)
2857 hmap[-btn->xindex] = 1;
2860 x = 0;
2861 y = 0;
2862 done = 0;
2863 /* search a vacant slot */
2864 for (i = 1; i < WMAX(vcount, hcount); i++) {
2865 if (i < vcount && vmap[i] == 0) {
2866 /* found a slot */
2867 x = 0;
2868 y = i;
2869 done = 1;
2870 break;
2871 } else if (i < hcount && hmap[i] == 0) {
2872 /* found a slot */
2873 x = i;
2874 y = 0;
2875 done = 1;
2876 break;
2879 wfree(vmap);
2880 wfree(hmap);
2881 /* If found a slot, translate and return */
2882 if (done) {
2883 if (corner == C_NW || corner == C_NE)
2884 *y_pos = y;
2885 else
2886 *y_pos = -y;
2888 if (corner == C_NE || corner == C_SE)
2889 *x_pos = x;
2890 else
2891 *x_pos = -x;
2893 return True;
2895 /* else, try to find a slot somewhere else */
2898 /* a map of mwidth x mwidth would be enough if we allowed icons to be
2899 * placed outside of screen */
2900 mwidth = (int)ceil(sqrt(dock->max_icons));
2902 /* In the worst case (the clip is in the corner of the screen),
2903 * the amount of icons that fit in the clip is smaller.
2904 * Double the map to get a safe value.
2906 mwidth += mwidth;
2908 r = (mwidth - 1) / 2;
2910 slot_map = wmalloc(mwidth * mwidth);
2912 #define XY2OFS(x,y) (WMAX(abs(x),abs(y)) > r) ? 0 : (((y)+r)*(mwidth)+(x)+r)
2914 /* mark used slots in the map. If the slot falls outside the map
2915 * (for example, when all icons are placed in line), ignore them. */
2916 for (i = 0; i < dock->max_icons; i++) {
2917 btn = dock->icon_array[i];
2918 if (btn)
2919 slot_map[XY2OFS(btn->xindex, btn->yindex)] = 1;
2922 for (chain = scr->global_icons; chain != NULL; chain = chain->next)
2923 slot_map[XY2OFS(chain->aicon->xindex, chain->aicon->yindex)] = 1;
2925 /* Find closest slot from the center that is free by scanning the
2926 * map from the center to outward in circular passes.
2927 * This will not result in a neat layout, but will be optimal
2928 * in the sense that there will not be holes left.
2930 done = 0;
2931 for (i = 1; i <= r && !done; i++) {
2932 int tx, ty;
2934 /* top and bottom parts of the ring */
2935 for (x = -i; x <= i && !done; x++) {
2936 tx = dock->x_pos + x * ICON_SIZE;
2937 y = -i;
2938 ty = dock->y_pos + y * ICON_SIZE;
2939 if (slot_map[XY2OFS(x, y)] == 0 && onScreen(scr, tx, ty)) {
2940 *x_pos = x;
2941 *y_pos = y;
2942 done = 1;
2943 break;
2945 y = i;
2946 ty = dock->y_pos + y * ICON_SIZE;
2947 if (slot_map[XY2OFS(x, y)] == 0 && onScreen(scr, tx, ty)) {
2948 *x_pos = x;
2949 *y_pos = y;
2950 done = 1;
2951 break;
2954 /* left and right parts of the ring */
2955 for (y = -i + 1; y <= i - 1; y++) {
2956 ty = dock->y_pos + y * ICON_SIZE;
2957 x = -i;
2958 tx = dock->x_pos + x * ICON_SIZE;
2959 if (slot_map[XY2OFS(x, y)] == 0 && onScreen(scr, tx, ty)) {
2960 *x_pos = x;
2961 *y_pos = y;
2962 done = 1;
2963 break;
2965 x = i;
2966 tx = dock->x_pos + x * ICON_SIZE;
2967 if (slot_map[XY2OFS(x, y)] == 0 && onScreen(scr, tx, ty)) {
2968 *x_pos = x;
2969 *y_pos = y;
2970 done = 1;
2971 break;
2975 wfree(slot_map);
2976 #undef XY2OFS
2977 return done;
2980 static void moveDock(WDock *dock, int new_x, int new_y)
2982 WAppIcon *btn;
2983 WDrawerChain *dc;
2984 int i;
2986 if (dock->type == WM_DOCK) {
2987 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next)
2988 moveDock(dc->adrawer, new_x, dc->adrawer->y_pos - dock->y_pos + new_y);
2991 dock->x_pos = new_x;
2992 dock->y_pos = new_y;
2993 for (i = 0; i < dock->max_icons; i++) {
2994 btn = dock->icon_array[i];
2995 if (btn) {
2996 btn->x_pos = new_x + btn->xindex * ICON_SIZE;
2997 btn->y_pos = new_y + btn->yindex * ICON_SIZE;
2998 XMoveWindow(dpy, btn->icon->core->window, btn->x_pos, btn->y_pos);
3003 static void swapDock(WDock *dock)
3005 WScreen *scr = dock->screen_ptr;
3006 WAppIcon *btn;
3007 int x, i;
3009 if (dock->on_right_side)
3010 x = dock->x_pos = scr->scr_width - ICON_SIZE - DOCK_EXTRA_SPACE;
3011 else
3012 x = dock->x_pos = DOCK_EXTRA_SPACE;
3014 swapDrawers(scr, x);
3016 for (i = 0; i < dock->max_icons; i++) {
3017 btn = dock->icon_array[i];
3018 if (btn) {
3019 btn->x_pos = x;
3020 XMoveWindow(dpy, btn->icon->core->window, btn->x_pos, btn->y_pos);
3024 wScreenUpdateUsableArea(scr);
3027 static pid_t execCommand(WAppIcon *btn, const char *command, WSavedState *state)
3029 WScreen *scr = btn->icon->core->screen_ptr;
3030 pid_t pid;
3031 char **argv;
3032 int argc;
3033 char *cmdline;
3035 cmdline = ExpandOptions(scr, command);
3037 if (scr->flags.dnd_data_convertion_status || !cmdline) {
3038 if (cmdline)
3039 wfree(cmdline);
3040 if (state)
3041 wfree(state);
3042 return 0;
3045 wtokensplit(cmdline, &argv, &argc);
3047 if (!argc) {
3048 if (cmdline)
3049 wfree(cmdline);
3050 if (state)
3051 wfree(state);
3052 return 0;
3055 pid = fork();
3056 if (pid == 0) {
3057 char **args;
3058 int i;
3060 SetupEnvironment(scr);
3062 #ifdef HAVE_SETSID
3063 setsid();
3064 #endif
3066 args = malloc(sizeof(char *) * (argc + 1));
3067 if (!args)
3068 exit(111);
3070 for (i = 0; i < argc; i++)
3071 args[i] = argv[i];
3073 args[argc] = NULL;
3074 execvp(argv[0], args);
3075 exit(111);
3077 wtokenfree(argv, argc);
3079 if (pid > 0) {
3080 if (!state) {
3081 state = wmalloc(sizeof(WSavedState));
3082 state->hidden = -1;
3083 state->miniaturized = -1;
3084 state->shaded = -1;
3085 if (btn->dock == scr->dock || btn->dock->type == WM_DRAWER || btn->omnipresent)
3086 state->workspace = -1;
3087 else
3088 state->workspace = scr->current_workspace;
3090 wWindowAddSavedState(btn->wm_instance, btn->wm_class, cmdline, pid, state);
3091 wAddDeathHandler(pid, (WDeathHandler *) trackDeadProcess, btn->dock);
3092 } else if (state) {
3093 wfree(state);
3095 wfree(cmdline);
3096 return pid;
3099 void wDockHideIcons(WDock *dock)
3101 int i;
3103 if (dock == NULL)
3104 return;
3106 for (i = 1; i < dock->max_icons; i++) {
3107 if (dock->icon_array[i])
3108 XUnmapWindow(dpy, dock->icon_array[i]->icon->core->window);
3110 dock->mapped = 0;
3112 dockIconPaint(dock->icon_array[0]);
3115 void wDockShowIcons(WDock *dock)
3117 int i;
3118 WAppIcon *btn;
3120 if (dock == NULL)
3121 return;
3123 btn = dock->icon_array[0];
3124 moveDock(dock, btn->x_pos, btn->y_pos);
3126 /* Deleting any change in stacking level, this function is now only about
3127 mapping icons */
3129 if (!dock->collapsed) {
3130 for (i = 1; i < dock->max_icons; i++) {
3131 if (dock->icon_array[i])
3132 XMapWindow(dpy, dock->icon_array[i]->icon->core->window);
3135 dock->mapped = 1;
3137 dockIconPaint(btn);
3140 void wDockLower(WDock *dock)
3142 int i;
3143 WDrawerChain *dc;
3145 if (dock->type == WM_DOCK) {
3146 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next)
3147 wDockLower(dc->adrawer);
3149 for (i = 0; i < dock->max_icons; i++) {
3150 if (dock->icon_array[i])
3151 wLowerFrame(dock->icon_array[i]->icon->core);
3155 void wDockRaise(WDock *dock)
3157 int i;
3158 WDrawerChain *dc;
3160 for (i = dock->max_icons - 1; i >= 0; i--) {
3161 if (dock->icon_array[i])
3162 wRaiseFrame(dock->icon_array[i]->icon->core);
3164 if (dock->type == WM_DOCK) {
3165 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next)
3166 wDockRaise(dc->adrawer);
3170 void wDockRaiseLower(WDock *dock)
3172 if (!dock->icon_array[0]->icon->core->stacking->above
3173 || (dock->icon_array[0]->icon->core->stacking->window_level
3174 != dock->icon_array[0]->icon->core->stacking->above->stacking->window_level))
3175 wDockLower(dock);
3176 else
3177 wDockRaise(dock);
3180 void wDockFinishLaunch(WAppIcon *icon)
3182 icon->launching = 0;
3183 icon->relaunching = 0;
3184 dockIconPaint(icon);
3187 WAppIcon *wDockFindIconForWindow(WDock *dock, Window window)
3189 WAppIcon *icon;
3190 int i;
3192 for (i = 0; i < dock->max_icons; i++) {
3193 icon = dock->icon_array[i];
3194 if (icon && icon->main_window == window)
3195 return icon;
3197 return NULL;
3200 void wDockTrackWindowLaunch(WDock *dock, Window window)
3202 WAppIcon *icon;
3203 char *wm_class, *wm_instance;
3204 int i;
3205 Bool firstPass = True;
3206 Bool found = False;
3207 char *command = NULL;
3209 if (!PropGetWMClass(window, &wm_class, &wm_instance)) {
3210 free(wm_class);
3211 free(wm_instance);
3212 return;
3215 command = GetCommandForWindow(window);
3216 retry:
3217 for (i = 0; i < dock->max_icons; i++) {
3218 icon = dock->icon_array[i];
3219 if (!icon)
3220 continue;
3222 /* app is already attached to icon */
3223 if (icon->main_window == window) {
3224 found = True;
3225 break;
3228 if ((icon->wm_instance || icon->wm_class)
3229 && (icon->launching || !icon->running)) {
3231 if (icon->wm_instance && wm_instance && strcmp(icon->wm_instance, wm_instance) != 0)
3232 continue;
3234 if (icon->wm_class && wm_class && strcmp(icon->wm_class, wm_class) != 0)
3235 continue;
3237 if (firstPass && command && strcmp(icon->command, command) != 0)
3238 continue;
3240 if (!icon->relaunching) {
3241 WApplication *wapp;
3243 /* Possibly an application that was docked with dockit,
3244 * but the user did not update WMState to indicate that
3245 * it was docked by force */
3246 wapp = wApplicationOf(window);
3247 if (!wapp) {
3248 icon->forced_dock = 1;
3249 icon->running = 0;
3251 if (!icon->forced_dock)
3252 icon->main_window = window;
3254 found = True;
3255 if (!wPreferences.no_animations && !icon->launching &&
3256 !dock->screen_ptr->flags.startup && !dock->collapsed) {
3257 WAppIcon *aicon;
3258 int x0, y0;
3260 icon->launching = 1;
3261 dockIconPaint(icon);
3263 aicon = wAppIconCreateForDock(dock->screen_ptr, NULL,
3264 wm_instance, wm_class, TILE_NORMAL);
3265 /* XXX: can: aicon->icon == NULL ? */
3266 PlaceIcon(dock->screen_ptr, &x0, &y0, wGetHeadForWindow(aicon->icon->owner));
3267 wAppIconMove(aicon, x0, y0);
3268 /* Should this always be lowered? -Dan */
3269 if (dock->lowered)
3270 wLowerFrame(aicon->icon->core);
3271 XMapWindow(dpy, aicon->icon->core->window);
3272 aicon->launching = 1;
3273 wAppIconPaint(aicon);
3274 slide_window(aicon->icon->core->window, x0, y0, icon->x_pos, icon->y_pos);
3275 XUnmapWindow(dpy, aicon->icon->core->window);
3276 wAppIconDestroy(aicon);
3278 wDockFinishLaunch(icon);
3279 break;
3283 if (firstPass && !found) {
3284 firstPass = False;
3285 goto retry;
3288 if (command)
3289 wfree(command);
3291 if (wm_class)
3292 free(wm_class);
3293 if (wm_instance)
3294 free(wm_instance);
3297 void wClipUpdateForWorkspaceChange(WScreen *scr, int workspace)
3299 if (!wPreferences.flags.noclip) {
3300 scr->clip_icon->dock = scr->workspaces[workspace]->clip;
3301 if (scr->current_workspace != workspace) {
3302 WDock *old_clip = scr->workspaces[scr->current_workspace]->clip;
3303 WAppIconChain *chain = scr->global_icons;
3305 while (chain) {
3306 wDockMoveIconBetweenDocks(chain->aicon->dock,
3307 scr->workspaces[workspace]->clip,
3308 chain->aicon, chain->aicon->xindex, chain->aicon->yindex);
3309 if (scr->workspaces[workspace]->clip->collapsed)
3310 XUnmapWindow(dpy, chain->aicon->icon->core->window);
3311 chain = chain->next;
3314 wDockHideIcons(old_clip);
3315 if (old_clip->auto_raise_lower) {
3316 if (old_clip->auto_raise_magic) {
3317 WMDeleteTimerHandler(old_clip->auto_raise_magic);
3318 old_clip->auto_raise_magic = NULL;
3320 wDockLower(old_clip);
3322 if (old_clip->auto_collapse) {
3323 if (old_clip->auto_expand_magic) {
3324 WMDeleteTimerHandler(old_clip->auto_expand_magic);
3325 old_clip->auto_expand_magic = NULL;
3327 old_clip->collapsed = 1;
3329 wDockShowIcons(scr->workspaces[workspace]->clip);
3334 static void trackDeadProcess(pid_t pid, unsigned char status, WDock *dock)
3336 WAppIcon *icon;
3337 int i;
3339 for (i = 0; i < dock->max_icons; i++) {
3340 icon = dock->icon_array[i];
3341 if (!icon)
3342 continue;
3344 if (icon->launching && icon->pid == pid) {
3345 if (!icon->relaunching) {
3346 icon->running = 0;
3347 icon->main_window = None;
3349 wDockFinishLaunch(icon);
3350 icon->pid = 0;
3351 if (status == 111) {
3352 char msg[PATH_MAX];
3353 char *cmd;
3355 #ifdef USE_DOCK_XDND
3356 if (icon->drop_launch)
3357 cmd = icon->dnd_command;
3358 else
3359 #endif
3360 if (icon->paste_launch)
3361 cmd = icon->paste_command;
3362 else
3363 cmd = icon->command;
3365 snprintf(msg, sizeof(msg), _("Could not execute command \"%s\""), cmd);
3367 wMessageDialog(dock->screen_ptr, _("Error"), msg, _("OK"), NULL, NULL);
3369 break;
3374 /* This function is called when the dock switches state between
3375 * "normal" (including auto-raise/lower) and "keep on top". It is
3376 * therefore clearly distinct from wDockLower/Raise, which are called
3377 * each time a not-kept-on-top dock is lowered/raised. */
3378 static void toggleLowered(WDock *dock)
3380 WAppIcon *tmp;
3381 WDrawerChain *dc;
3382 int newlevel, i;
3384 if (!dock->lowered) {
3385 newlevel = WMNormalLevel;
3386 dock->lowered = 1;
3387 } else {
3388 newlevel = WMDockLevel;
3389 dock->lowered = 0;
3392 for (i = 0; i < dock->max_icons; i++) {
3393 tmp = dock->icon_array[i];
3394 if (!tmp)
3395 continue;
3397 ChangeStackingLevel(tmp->icon->core, newlevel);
3399 /* When the dock is no longer "on top", explicitly lower it as well.
3400 * It saves some CPU cycles (probably) to do it ourselves here
3401 * rather than calling wDockLower at the end of toggleLowered */
3402 if (dock->lowered)
3403 wLowerFrame(tmp->icon->core);
3406 if (dock->type == WM_DOCK) {
3407 for (dc = dock->screen_ptr->drawers; dc != NULL; dc = dc->next) {
3408 toggleLowered(dc->adrawer);
3410 wScreenUpdateUsableArea(dock->screen_ptr);
3414 static void toggleCollapsed(WDock *dock)
3416 if (dock->collapsed) {
3417 dock->collapsed = 0;
3418 wDockShowIcons(dock);
3419 } else {
3420 dock->collapsed = 1;
3421 wDockHideIcons(dock);
3425 static void openDockMenu(WDock *dock, WAppIcon *aicon, XEvent *event)
3427 WScreen *scr = dock->screen_ptr;
3428 WObjDescriptor *desc;
3429 WMenuEntry *entry;
3430 WApplication *wapp = NULL;
3431 int index = 0;
3432 int x_pos;
3433 int n_selected;
3434 int appIsRunning = aicon->running && aicon->icon && aicon->icon->owner;
3436 if (dock->type == WM_DOCK) {
3437 /* Dock position menu */
3438 updateDockPositionMenu(scr->dock_pos_menu, dock);
3439 dock->menu->flags.realized = 0;
3440 if (!wPreferences.flags.nodrawer) {
3441 /* add a drawer */
3442 entry = dock->menu->entries[++index];
3443 entry->clientdata = aicon;
3444 wMenuSetEnabled(dock->menu, index, True);
3446 } else {
3447 /* clip/drawer options */
3448 if (scr->clip_options)
3449 updateClipOptionsMenu(scr->clip_options, dock);
3451 n_selected = numberOfSelectedIcons(dock);
3453 if (dock->type == WM_CLIP) {
3454 /* Rename Workspace */
3455 entry = dock->menu->entries[++index];
3456 if (aicon == scr->clip_icon) {
3457 entry->callback = renameCallback;
3458 entry->clientdata = dock;
3459 entry->flags.indicator = 0;
3460 entry->text = _("Rename Workspace");
3461 } else {
3462 entry->callback = omnipresentCallback;
3463 entry->clientdata = aicon;
3464 if (n_selected > 0) {
3465 entry->flags.indicator = 0;
3466 entry->text = _("Toggle Omnipresent");
3467 } else {
3468 entry->flags.indicator = 1;
3469 entry->flags.indicator_on = aicon->omnipresent;
3470 entry->flags.indicator_type = MI_CHECK;
3471 entry->text = _("Omnipresent");
3476 /* select/unselect icon */
3477 entry = dock->menu->entries[++index];
3478 entry->clientdata = aicon;
3479 entry->flags.indicator_on = aicon->icon->selected;
3480 wMenuSetEnabled(dock->menu, index, aicon != scr->clip_icon && !wIsADrawer(aicon));
3482 /* select/unselect all icons */
3483 entry = dock->menu->entries[++index];
3484 entry->clientdata = aicon;
3485 if (n_selected > 0)
3486 entry->text = _("Unselect All Icons");
3487 else
3488 entry->text = _("Select All Icons");
3490 wMenuSetEnabled(dock->menu, index, dock->icon_count > 1);
3492 /* keep icon(s) */
3493 entry = dock->menu->entries[++index];
3494 entry->clientdata = aicon;
3495 if (n_selected > 1)
3496 entry->text = _("Keep Icons");
3497 else
3498 entry->text = _("Keep Icon");
3500 wMenuSetEnabled(dock->menu, index, dock->icon_count > 1);
3502 if (dock->type == WM_CLIP) {
3503 /* this is the workspace submenu part */
3504 entry = dock->menu->entries[++index];
3505 if (n_selected > 1)
3506 entry->text = _("Move Icons To");
3507 else
3508 entry->text = _("Move Icon To");
3510 if (scr->clip_submenu)
3511 updateWorkspaceMenu(scr->clip_submenu, aicon);
3513 wMenuSetEnabled(dock->menu, index, !aicon->omnipresent);
3516 /* remove icon(s) */
3517 entry = dock->menu->entries[++index];
3518 entry->clientdata = aicon;
3519 if (n_selected > 1)
3520 entry->text = _("Remove Icons");
3521 else
3522 entry->text = _("Remove Icon");
3524 wMenuSetEnabled(dock->menu, index, dock->icon_count > 1);
3526 /* attract icon(s) */
3527 entry = dock->menu->entries[++index];
3528 entry->clientdata = aicon;
3530 dock->menu->flags.realized = 0;
3531 wMenuRealize(dock->menu);
3534 if (aicon->icon->owner)
3535 wapp = wApplicationOf(aicon->icon->owner->main_window);
3536 else
3537 wapp = NULL;
3539 /* launch */
3540 entry = dock->menu->entries[++index];
3541 entry->clientdata = aicon;
3542 wMenuSetEnabled(dock->menu, index, aicon->command != NULL);
3544 /* unhide here */
3545 entry = dock->menu->entries[++index];
3546 entry->clientdata = aicon;
3547 if (wapp && wapp->flags.hidden)
3548 entry->text = _("Unhide Here");
3549 else
3550 entry->text = _("Bring Here");
3552 wMenuSetEnabled(dock->menu, index, appIsRunning);
3554 /* hide */
3555 entry = dock->menu->entries[++index];
3556 entry->clientdata = aicon;
3557 if (wapp && wapp->flags.hidden)
3558 entry->text = _("Unhide");
3559 else
3560 entry->text = _("Hide");
3562 wMenuSetEnabled(dock->menu, index, appIsRunning);
3564 /* settings */
3565 entry = dock->menu->entries[++index];
3566 entry->clientdata = aicon;
3567 wMenuSetEnabled(dock->menu, index, !aicon->editing && !wPreferences.flags.noupdates);
3569 /* kill or remove drawer */
3570 entry = dock->menu->entries[++index];
3571 entry->clientdata = aicon;
3572 if (wIsADrawer(aicon)) {
3573 entry->callback = removeDrawerCallback;
3574 entry->text = _("Remove drawer");
3575 wMenuSetEnabled(dock->menu, index, True);
3576 } else {
3577 entry->callback = killCallback;
3578 entry->text = _("Kill");
3579 wMenuSetEnabled(dock->menu, index, appIsRunning);
3582 if (!dock->menu->flags.realized)
3583 wMenuRealize(dock->menu);
3585 if (dock->type == WM_CLIP || dock->type == WM_DRAWER) {
3586 /*x_pos = event->xbutton.x_root+2; */
3587 x_pos = event->xbutton.x_root - dock->menu->frame->core->width / 2 - 1;
3588 if (x_pos < 0) {
3589 x_pos = 0;
3590 } else if (x_pos + dock->menu->frame->core->width > scr->scr_width - 2) {
3591 x_pos = scr->scr_width - dock->menu->frame->core->width - 4;
3593 } else {
3594 x_pos = dock->on_right_side ? scr->scr_width - dock->menu->frame->core->width - 3 : 0;
3597 wMenuMapAt(dock->menu, x_pos, event->xbutton.y_root + 2, False);
3599 /* allow drag select */
3600 event->xany.send_event = True;
3601 desc = &dock->menu->menu->descriptor;
3602 (*desc->handle_mousedown) (desc, event);
3605 /******************************************************************/
3606 static void iconDblClick(WObjDescriptor *desc, XEvent *event)
3608 WAppIcon *btn = desc->parent;
3609 WDock *dock = btn->dock;
3610 WApplication *wapp = NULL;
3611 int unhideHere = 0;
3613 if (btn->icon->owner && !(event->xbutton.state & ControlMask)) {
3614 wapp = wApplicationOf(btn->icon->owner->main_window);
3616 assert(wapp != NULL);
3618 unhideHere = (event->xbutton.state & ShiftMask);
3620 /* go to the last workspace that the user worked on the app */
3621 if (wapp->last_workspace != dock->screen_ptr->current_workspace && !unhideHere)
3622 wWorkspaceChange(dock->screen_ptr, wapp->last_workspace);
3624 wUnhideApplication(wapp, event->xbutton.button == Button2, unhideHere);
3626 if (event->xbutton.state & MOD_MASK)
3627 wHideOtherApplications(btn->icon->owner);
3628 } else {
3629 if (event->xbutton.button == Button1) {
3630 if (event->xbutton.state & MOD_MASK) {
3631 /* raise/lower dock */
3632 toggleLowered(dock);
3633 } else if (btn == dock->screen_ptr->clip_icon) {
3634 if (getClipButton(event->xbutton.x, event->xbutton.y) != CLIP_IDLE)
3635 handleClipChangeWorkspace(dock->screen_ptr, event);
3636 else if (wPreferences.flags.clip_merged_in_dock) {
3637 // Is actually the dock
3638 if (btn->command)
3640 if (!btn->launching && (!btn->running || (event->xbutton.state & ControlMask)))
3641 launchDockedApplication(btn, False);
3643 else
3645 wShowInfoPanel(dock->screen_ptr);
3648 else
3649 toggleCollapsed(dock);
3650 } else if (wIsADrawer(btn)) {
3651 toggleCollapsed(dock);
3652 } else if (btn->command) {
3653 if (!btn->launching && (!btn->running || (event->xbutton.state & ControlMask)))
3654 launchDockedApplication(btn, False);
3655 } else if (btn->xindex == 0 && btn->yindex == 0 && btn->dock->type == WM_DOCK) {
3656 wShowInfoPanel(dock->screen_ptr);
3662 static void handleDockMove(WDock *dock, WAppIcon *aicon, XEvent *event)
3664 WScreen *scr = dock->screen_ptr;
3665 int ofs_x = event->xbutton.x, ofs_y = event->xbutton.y;
3666 WIcon *icon = aicon->icon;
3667 WAppIcon *tmpaicon;
3668 WDrawerChain *dc;
3669 int x = aicon->x_pos, y = aicon->y_pos;;
3670 int shad_x = x, shad_y = y;
3671 XEvent ev;
3672 int grabbed = 0, done, previously_on_right, now_on_right, previous_x_pos, i;
3673 Pixmap ghost = None;
3674 int superfluous = wPreferences.superfluous; /* we catch it to avoid problems */
3676 if (XGrabPointer(dpy, aicon->icon->core->window, True, ButtonMotionMask
3677 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
3678 GrabModeAsync, None, None, CurrentTime) != GrabSuccess)
3679 wwarning("pointer grab failed for dock move");
3681 if (dock->type == WM_DRAWER) {
3682 Window wins[2];
3683 wins[0] = icon->core->window;
3684 wins[1] = scr->dock_shadow;
3685 XRestackWindows(dpy, wins, 2);
3686 XMoveResizeWindow(dpy, scr->dock_shadow, aicon->x_pos, aicon->y_pos,
3687 ICON_SIZE, ICON_SIZE);
3688 if (superfluous) {
3689 if (icon->pixmap!=None)
3690 ghost = MakeGhostIcon(scr, icon->pixmap);
3691 else
3692 ghost = MakeGhostIcon(scr, icon->core->window);
3694 XSetWindowBackgroundPixmap(dpy, scr->dock_shadow, ghost);
3695 XClearWindow(dpy, scr->dock_shadow);
3697 XMapWindow(dpy, scr->dock_shadow);
3700 previously_on_right = now_on_right = dock->on_right_side;
3701 previous_x_pos = dock->x_pos;
3702 done = 0;
3703 while (!done) {
3704 WMMaskEvent(dpy, PointerMotionMask | ButtonReleaseMask | ButtonPressMask
3705 | ButtonMotionMask | ExposureMask | EnterWindowMask, &ev);
3706 switch (ev.type) {
3707 case Expose:
3708 WMHandleEvent(&ev);
3709 break;
3711 case EnterNotify:
3712 /* It means the cursor moved so fast that it entered
3713 * something else (if moving slowly, it would have
3714 * stayed in the dock that is being moved. Ignore such
3715 * "spurious" EnterNotifiy's */
3716 break;
3718 case MotionNotify:
3719 if (!grabbed) {
3720 if (abs(ofs_x - ev.xmotion.x) >= MOVE_THRESHOLD
3721 || abs(ofs_y - ev.xmotion.y) >= MOVE_THRESHOLD) {
3722 XChangeActivePointerGrab(dpy, ButtonMotionMask
3723 | ButtonReleaseMask | ButtonPressMask,
3724 wPreferences.cursor[WCUR_MOVE], CurrentTime);
3725 grabbed = 1;
3727 break;
3729 switch (dock->type) {
3730 case WM_CLIP:
3731 x = ev.xmotion.x_root - ofs_x;
3732 y = ev.xmotion.y_root - ofs_y;
3733 wScreenKeepInside(scr, &x, &y, ICON_SIZE, ICON_SIZE);
3734 moveDock(dock, x, y);
3735 break;
3736 case WM_DOCK:
3737 x = ev.xmotion.x_root - ofs_x;
3738 y = ev.xmotion.y_root - ofs_y;
3739 if (previously_on_right)
3741 now_on_right = (ev.xmotion.x_root >= previous_x_pos - ICON_SIZE);
3743 else
3745 now_on_right = (ev.xmotion.x_root > previous_x_pos + ICON_SIZE * 2);
3747 if (now_on_right != dock->on_right_side)
3749 dock->on_right_side = now_on_right;
3750 swapDock(dock);
3751 wArrangeIcons(scr, False);
3753 // Also perform the vertical move
3754 wScreenKeepInside(scr, &x, &y, ICON_SIZE, ICON_SIZE);
3755 moveDock(dock, dock->x_pos, y);
3756 if (wPreferences.flags.wrap_appicons_in_dock)
3758 for (i = 0; i < dock->max_icons; i++) {
3759 int new_y, new_index, j, ok;
3761 tmpaicon = dock->icon_array[i];
3762 if (tmpaicon == NULL)
3763 continue;
3764 if (onScreen(scr, tmpaicon->x_pos, tmpaicon->y_pos))
3765 continue;
3766 new_y = (tmpaicon->y_pos + ICON_SIZE * dock->max_icons) % (ICON_SIZE * dock->max_icons);
3767 new_index = (new_y - dock->y_pos) / ICON_SIZE;
3768 if (!onScreen(scr, tmpaicon->x_pos, new_y))
3769 continue;
3770 ok = 1;
3771 for (j = 0; j < dock->max_icons; j++)
3773 if (dock->icon_array[j] != NULL &&
3774 dock->icon_array[j]->yindex == new_index)
3776 ok = 0;
3777 break;
3780 if (!ok || getDrawer(scr, new_index) != NULL)
3781 continue;
3782 wDockReattachIcon(dock, tmpaicon, tmpaicon->xindex, new_index);
3784 for (dc = scr->drawers; dc != NULL; dc = dc->next)
3786 int new_y, new_index, j, ok;
3787 tmpaicon = dc->adrawer->icon_array[0];
3788 if (onScreen(scr, tmpaicon->x_pos, tmpaicon->y_pos))
3789 continue;
3790 new_y = (tmpaicon->y_pos + ICON_SIZE * dock->max_icons) % (ICON_SIZE * dock->max_icons);
3791 new_index = (new_y - dock->y_pos) / ICON_SIZE;
3792 if (!onScreen(scr, tmpaicon->x_pos, new_y))
3793 continue;
3794 ok = 1;
3795 for (j = 0; j < dock->max_icons; j++)
3797 if (dock->icon_array[j] != NULL &&
3798 dock->icon_array[j]->yindex == new_index)
3800 ok = 0;
3801 break;
3804 if (!ok || getDrawer(scr, new_index) != NULL)
3805 continue;
3806 moveDock(dc->adrawer, tmpaicon->x_pos, new_y);
3809 break;
3810 case WM_DRAWER:
3812 WDock *real_dock = dock->screen_ptr->dock;
3813 Bool snapped;
3814 int ix, iy;
3815 x = ev.xmotion.x_root - ofs_x;
3816 y = ev.xmotion.y_root - ofs_y;
3817 snapped = wDockSnapIcon(real_dock, aicon, x, y, &ix, &iy, True);
3818 if (snapped) {
3819 shad_x = real_dock->x_pos + ix * wPreferences.icon_size;
3820 shad_y = real_dock->y_pos + iy * wPreferences.icon_size;
3821 XMoveWindow(dpy, scr->dock_shadow, shad_x, shad_y);
3823 moveDock(dock, x, y);
3824 break;
3827 break;
3829 case ButtonPress:
3830 break;
3832 case ButtonRelease:
3833 if (ev.xbutton.button != event->xbutton.button)
3834 break;
3835 XUngrabPointer(dpy, CurrentTime);
3836 if (dock->type == WM_DRAWER) {
3837 Window wins[dock->icon_count];
3838 int offset_index;
3841 * When the dock is on the Right side, the index of the icons are negative to
3842 * reflect the fact that they are placed on the other side of the dock; we use
3843 * an offset here so we can have an always positive index for the storage in
3844 * the 'wins' array.
3846 if (dock->on_right_side)
3847 offset_index = dock->icon_count - 1;
3848 else
3849 offset_index = 0;
3851 for (i = 0; i < dock->max_icons; i++) {
3852 tmpaicon = dock->icon_array[i];
3853 if (tmpaicon == NULL)
3854 continue;
3855 wins[tmpaicon->xindex + offset_index] = tmpaicon->icon->core->window;
3857 slide_windows(wins, dock->icon_count,
3858 (dock->on_right_side ? x - (dock->icon_count - 1) * ICON_SIZE : x),
3860 (dock->on_right_side ? shad_x - (dock->icon_count - 1) * ICON_SIZE : shad_x),
3861 shad_y);
3862 XUnmapWindow(dpy, scr->dock_shadow);
3863 moveDock(dock, shad_x, shad_y);
3864 XResizeWindow(dpy, scr->dock_shadow, ICON_SIZE, ICON_SIZE);
3866 done = 1;
3867 break;
3870 if (superfluous) {
3871 if (ghost != None)
3872 XFreePixmap(dpy, ghost);
3873 XSetWindowBackground(dpy, scr->dock_shadow, scr->white_pixel);
3878 static int getClipButton(int px, int py)
3880 int pt = (CLIP_BUTTON_SIZE + 2) * ICON_SIZE / 64;
3882 if (px < 0 || py < 0 || px >= ICON_SIZE || py >= ICON_SIZE)
3883 return CLIP_IDLE;
3885 if (py <= pt - ((int)ICON_SIZE - 1 - px))
3886 return CLIP_FORWARD;
3887 else if (px <= pt - ((int)ICON_SIZE - 1 - py))
3888 return CLIP_REWIND;
3890 return CLIP_IDLE;
3893 static void handleClipChangeWorkspace(WScreen *scr, XEvent *event)
3895 XEvent ev;
3896 int done, direction, new_ws;
3897 int new_dir;
3898 WDock *clip = scr->clip_icon->dock;
3900 direction = getClipButton(event->xbutton.x, event->xbutton.y);
3902 clip->lclip_button_pushed = direction == CLIP_REWIND;
3903 clip->rclip_button_pushed = direction == CLIP_FORWARD;
3905 wClipIconPaint(scr->clip_icon);
3906 done = 0;
3907 while (!done) {
3908 WMMaskEvent(dpy, ExposureMask | ButtonMotionMask | ButtonReleaseMask | ButtonPressMask, &ev);
3909 switch (ev.type) {
3910 case Expose:
3911 WMHandleEvent(&ev);
3912 break;
3914 case MotionNotify:
3915 new_dir = getClipButton(ev.xmotion.x, ev.xmotion.y);
3916 if (new_dir != direction) {
3917 direction = new_dir;
3918 clip->lclip_button_pushed = direction == CLIP_REWIND;
3919 clip->rclip_button_pushed = direction == CLIP_FORWARD;
3920 wClipIconPaint(scr->clip_icon);
3922 break;
3924 case ButtonPress:
3925 break;
3927 case ButtonRelease:
3928 if (ev.xbutton.button == event->xbutton.button)
3929 done = 1;
3933 clip->lclip_button_pushed = 0;
3934 clip->rclip_button_pushed = 0;
3936 new_ws = wPreferences.ws_advance || (event->xbutton.state & ControlMask);
3938 if (direction == CLIP_FORWARD) {
3939 if (scr->current_workspace < scr->workspace_count - 1)
3940 wWorkspaceChange(scr, scr->current_workspace + 1);
3941 else if (new_ws && scr->current_workspace < MAX_WORKSPACES - 1)
3942 wWorkspaceChange(scr, scr->current_workspace + 1);
3943 else if (wPreferences.ws_cycle)
3944 wWorkspaceChange(scr, 0);
3945 } else if (direction == CLIP_REWIND) {
3946 if (scr->current_workspace > 0)
3947 wWorkspaceChange(scr, scr->current_workspace - 1);
3948 else if (scr->current_workspace == 0 && wPreferences.ws_cycle)
3949 wWorkspaceChange(scr, scr->workspace_count - 1);
3952 wClipIconPaint(scr->clip_icon);
3955 static void iconMouseDown(WObjDescriptor *desc, XEvent *event)
3957 WAppIcon *aicon = desc->parent;
3958 WDock *dock = aicon->dock;
3959 WScreen *scr = aicon->icon->core->screen_ptr;
3961 if (aicon->editing || WCHECK_STATE(WSTATE_MODAL))
3962 return;
3964 scr->last_dock = dock;
3966 if (dock->menu->flags.mapped)
3967 wMenuUnmap(dock->menu);
3969 if (IsDoubleClick(scr, event)) {
3970 /* double-click was not in the main clip icon */
3971 if (dock->type != WM_CLIP || aicon->xindex != 0 || aicon->yindex != 0
3972 || getClipButton(event->xbutton.x, event->xbutton.y) == CLIP_IDLE) {
3973 iconDblClick(desc, event);
3974 return;
3978 if (event->xbutton.button == Button1) {
3979 if (event->xbutton.state & MOD_MASK)
3980 wDockLower(dock);
3981 else
3982 wDockRaise(dock);
3984 if ((event->xbutton.state & ShiftMask) && aicon != scr->clip_icon && dock->type != WM_DOCK) {
3985 wIconSelect(aicon->icon);
3986 return;
3989 if (aicon->yindex == 0 && aicon->xindex == 0) {
3990 if (getClipButton(event->xbutton.x, event->xbutton.y) != CLIP_IDLE &&
3991 (dock->type == WM_CLIP || (dock->type == WM_DOCK && wPreferences.flags.clip_merged_in_dock)))
3992 handleClipChangeWorkspace(scr, event);
3993 else
3994 handleDockMove(dock, aicon, event);
3995 } else {
3996 Bool hasMoved = wHandleAppIconMove(aicon, event);
3997 if (wPreferences.single_click && !hasMoved)
3998 iconDblClick(desc, event);
4000 } else if (event->xbutton.button == Button2 && aicon == scr->clip_icon) {
4001 if (!scr->clip_ws_menu)
4002 scr->clip_ws_menu = wWorkspaceMenuMake(scr, False);
4004 if (scr->clip_ws_menu) {
4005 WMenu *wsMenu = scr->clip_ws_menu;
4006 int xpos;
4008 wWorkspaceMenuUpdate(scr, wsMenu);
4010 xpos = event->xbutton.x_root - wsMenu->frame->core->width / 2 - 1;
4011 if (xpos < 0) {
4012 xpos = 0;
4013 } else if (xpos + wsMenu->frame->core->width > scr->scr_width - 2) {
4014 xpos = scr->scr_width - wsMenu->frame->core->width - 4;
4016 wMenuMapAt(wsMenu, xpos, event->xbutton.y_root + 2, False);
4018 desc = &wsMenu->menu->descriptor;
4019 event->xany.send_event = True;
4020 (*desc->handle_mousedown) (desc, event);
4022 } else if (event->xbutton.button == Button2 && dock->type == WM_CLIP &&
4023 (event->xbutton.state & ShiftMask) && aicon != scr->clip_icon) {
4024 wClipMakeIconOmnipresent(aicon, !aicon->omnipresent);
4025 } else if (event->xbutton.button == Button3) {
4026 if (event->xbutton.send_event &&
4027 XGrabPointer(dpy, aicon->icon->core->window, True, ButtonMotionMask
4028 | ButtonReleaseMask | ButtonPressMask, GrabModeAsync,
4029 GrabModeAsync, None, None, CurrentTime) != GrabSuccess) {
4030 wwarning("pointer grab failed for dockicon menu");
4031 return;
4034 openDockMenu(dock, aicon, event);
4035 } else if (event->xbutton.button == Button2) {
4036 WAppIcon *btn = desc->parent;
4038 if (!btn->launching && (!btn->running || (event->xbutton.state & ControlMask)))
4039 launchDockedApplication(btn, True);
4040 } else if (event->xbutton.button == Button4 && dock->type == WM_CLIP) {
4041 wWorkspaceRelativeChange(scr, 1);
4042 } else if (event->xbutton.button == Button5 && dock->type == WM_CLIP) {
4043 wWorkspaceRelativeChange(scr, -1);
4047 static void clipEnterNotify(WObjDescriptor *desc, XEvent *event)
4049 WAppIcon *btn = (WAppIcon *) desc->parent;
4050 WDock *dock, *tmp;
4051 WScreen *scr;
4053 /* Parameter not used, but tell the compiler that it is ok */
4054 (void) event;
4056 assert(event->type == EnterNotify);
4058 if (desc->parent_type != WCLASS_DOCK_ICON)
4059 return;
4061 scr = btn->icon->core->screen_ptr;
4062 dock = btn->dock;
4064 if (dock == NULL)
4065 return;
4067 /* The auto raise/lower code */
4068 tmp = (dock->type == WM_DRAWER ? scr->dock : dock);
4069 if (tmp->auto_lower_magic) {
4070 WMDeleteTimerHandler(tmp->auto_lower_magic);
4071 tmp->auto_lower_magic = NULL;
4073 if (tmp->auto_raise_lower && !tmp->auto_raise_magic)
4074 tmp->auto_raise_magic = WMAddTimerHandler(wPreferences.clip_auto_raise_delay, clipAutoRaise, (void *) tmp);
4076 if (dock->type != WM_CLIP && dock->type != WM_DRAWER)
4077 return;
4079 /* The auto expand/collapse code */
4080 if (dock->auto_collapse_magic) {
4081 WMDeleteTimerHandler(dock->auto_collapse_magic);
4082 dock->auto_collapse_magic = NULL;
4084 if (dock->auto_collapse && !dock->auto_expand_magic)
4085 dock->auto_expand_magic = WMAddTimerHandler(wPreferences.clip_auto_expand_delay, clipAutoExpand, (void *)dock);
4088 static void clipLeave(WDock *dock)
4090 XEvent event;
4091 WObjDescriptor *desc = NULL;
4092 WDock *tmp;
4094 if (dock == NULL)
4095 return;
4097 if (XCheckTypedEvent(dpy, EnterNotify, &event) != False) {
4098 if (XFindContext(dpy, event.xcrossing.window, w_global.context.client_win,
4099 (XPointer *) & desc) != XCNOENT
4100 && desc && desc->parent_type == WCLASS_DOCK_ICON
4101 && ((WAppIcon *) desc->parent)->dock == dock) {
4102 /* We haven't left the dock/clip/drawer yet */
4103 XPutBackEvent(dpy, &event);
4104 return;
4107 XPutBackEvent(dpy, &event);
4108 } else {
4109 /* We entered a withdrawn window, so we're still in Clip */
4110 return;
4113 tmp = (dock->type == WM_DRAWER ? dock->screen_ptr->dock : dock);
4114 if (tmp->auto_raise_magic) {
4115 WMDeleteTimerHandler(tmp->auto_raise_magic);
4116 tmp->auto_raise_magic = NULL;
4118 if (tmp->auto_raise_lower && !tmp->auto_lower_magic)
4119 tmp->auto_lower_magic = WMAddTimerHandler(wPreferences.clip_auto_lower_delay, clipAutoLower, (void *)tmp);
4121 if (dock->type != WM_CLIP && dock->type != WM_DRAWER)
4122 return;
4124 if (dock->auto_expand_magic) {
4125 WMDeleteTimerHandler(dock->auto_expand_magic);
4126 dock->auto_expand_magic = NULL;
4128 if (dock->auto_collapse && !dock->auto_collapse_magic)
4129 dock->auto_collapse_magic = WMAddTimerHandler(wPreferences.clip_auto_collapse_delay, clipAutoCollapse, (void *)dock);
4132 static void clipLeaveNotify(WObjDescriptor *desc, XEvent *event)
4134 WAppIcon *btn = (WAppIcon *) desc->parent;
4136 /* Parameter not used, but tell the compiler that it is ok */
4137 (void) event;
4139 assert(event->type == LeaveNotify);
4141 if (desc->parent_type != WCLASS_DOCK_ICON)
4142 return;
4144 clipLeave(btn->dock);
4147 static void clipAutoCollapse(void *cdata)
4149 WDock *dock = (WDock *) cdata;
4151 if (dock->type != WM_CLIP && dock->type != WM_DRAWER)
4152 return;
4154 if (dock->auto_collapse) {
4155 dock->collapsed = 1;
4156 wDockHideIcons(dock);
4158 dock->auto_collapse_magic = NULL;
4161 static void clipAutoExpand(void *cdata)
4163 WDock *dock = (WDock *) cdata;
4165 if (dock->type != WM_CLIP && dock->type != WM_DRAWER)
4166 return;
4168 if (dock->auto_collapse) {
4169 dock->collapsed = 0;
4170 wDockShowIcons(dock);
4172 dock->auto_expand_magic = NULL;
4175 static void clipAutoLower(void *cdata)
4177 WDock *dock = (WDock *) cdata;
4179 if (dock->auto_raise_lower)
4180 wDockLower(dock);
4182 dock->auto_lower_magic = NULL;
4185 static void clipAutoRaise(void *cdata)
4187 WDock *dock = (WDock *) cdata;
4189 if (dock->auto_raise_lower)
4190 wDockRaise(dock);
4192 dock->auto_raise_magic = NULL;
4195 static Bool iconCanBeOmnipresent(WAppIcon *aicon)
4197 WScreen *scr = aicon->icon->core->screen_ptr;
4198 WDock *clip;
4199 WAppIcon *btn;
4200 int i, j;
4202 for (i = 0; i < scr->workspace_count; i++) {
4203 clip = scr->workspaces[i]->clip;
4205 if (clip == aicon->dock)
4206 continue;
4208 if (clip->icon_count + scr->global_icon_count >= clip->max_icons)
4209 return False; /* Clip is full in some workspace */
4211 for (j = 0; j < clip->max_icons; j++) {
4212 btn = clip->icon_array[j];
4213 if (btn && btn->xindex == aicon->xindex && btn->yindex == aicon->yindex)
4214 return False;
4218 return True;
4221 int wClipMakeIconOmnipresent(WAppIcon *aicon, int omnipresent)
4223 WScreen *scr = aicon->icon->core->screen_ptr;
4224 WAppIconChain *new_entry, *tmp, *tmp1;
4225 int status = WO_SUCCESS;
4227 if ((scr->dock && aicon->dock == scr->dock) || aicon == scr->clip_icon)
4228 return WO_NOT_APPLICABLE;
4230 if (aicon->omnipresent == omnipresent)
4231 return WO_SUCCESS;
4233 if (omnipresent) {
4234 if (iconCanBeOmnipresent(aicon)) {
4235 aicon->omnipresent = 1;
4236 new_entry = wmalloc(sizeof(WAppIconChain));
4237 new_entry->aicon = aicon;
4238 new_entry->next = scr->global_icons;
4239 scr->global_icons = new_entry;
4240 scr->global_icon_count++;
4241 } else {
4242 aicon->omnipresent = 0;
4243 status = WO_FAILED;
4245 } else {
4246 aicon->omnipresent = 0;
4247 if (aicon == scr->global_icons->aicon) {
4248 tmp = scr->global_icons->next;
4249 wfree(scr->global_icons);
4250 scr->global_icons = tmp;
4251 scr->global_icon_count--;
4252 } else {
4253 tmp = scr->global_icons;
4254 while (tmp->next) {
4255 if (tmp->next->aicon == aicon) {
4256 tmp1 = tmp->next->next;
4257 wfree(tmp->next);
4258 tmp->next = tmp1;
4259 scr->global_icon_count--;
4260 break;
4262 tmp = tmp->next;
4267 wAppIconPaint(aicon);
4269 return status;
4272 static void drawerAppendToChain(WScreen *scr, WDock *drawer)
4274 WDrawerChain **where_to_add;
4276 where_to_add = &scr->drawers;
4277 while ((*where_to_add) != NULL) {
4278 where_to_add = &(*where_to_add)->next;
4281 *where_to_add = wmalloc(sizeof(WDrawerChain));
4282 (*where_to_add)->adrawer = drawer;
4283 (*where_to_add)->next = NULL;
4284 scr->drawer_count++;
4288 static void drawerRemoveFromChain(WScreen *scr, WDock *drawer)
4290 WDrawerChain *next, **to_remove;
4292 to_remove = &scr->drawers;
4293 while (True) {
4294 if (*to_remove == NULL) {
4295 wwarning("The drawer to be removed can not be found.");
4296 return;
4298 if ((*to_remove)->adrawer == drawer)
4299 break;
4301 to_remove = &(*to_remove)->next;
4303 next = (*to_remove)->next;
4304 wfree(*to_remove);
4305 *to_remove = next;
4306 scr->drawer_count--;
4310 /* Don't free the returned string. Duplicate it. */
4311 static char * findUniqueName(WScreen *scr, const char *instance_basename)
4313 static char buffer[128];
4314 WDrawerChain *dc;
4315 int i;
4316 Bool already_in_use = True;
4318 #define UNIQUE_NAME_WATCHDOG 128
4319 for (i = 0; already_in_use && i < UNIQUE_NAME_WATCHDOG; i++) {
4320 snprintf(buffer, sizeof buffer, "%s%d", instance_basename, i);
4322 already_in_use = False;
4324 for (dc = scr->drawers; dc != NULL; dc = dc->next) {
4325 if (!strncmp(dc->adrawer->icon_array[0]->wm_instance, buffer,
4326 sizeof buffer)) {
4327 already_in_use = True;
4328 break;
4333 if (i == UNIQUE_NAME_WATCHDOG)
4334 wwarning("Couldn't find a unique name for drawer in %d attempts.", i);
4335 #undef UNIQUE_NAME_WATCHDOG
4337 return buffer;
4341 static void drawerIconExpose(WObjDescriptor *desc, XEvent *event)
4343 /* Parameter not used, but tell the compiler that it is ok */
4344 (void) event;
4346 wDrawerIconPaint((WAppIcon *) desc->parent);
4350 static int addADrawer(WScreen *scr)
4352 int i, y, sig, found_y;
4353 WDock *drawer, *dock = scr->dock;
4354 WDrawerChain *dc;
4355 char can_be_here[2 * dock->max_icons - 1];
4357 if (dock->icon_count + scr->drawer_count >= dock->max_icons)
4358 return -1;
4360 for (y = -dock->max_icons + 1; y < dock->max_icons; y++) {
4361 can_be_here[y + dock->max_icons - 1] = True;
4363 for (i = 0; i < dock->max_icons; i++) {
4364 if (dock->icon_array[i] != NULL)
4365 can_be_here[dock->icon_array[i]->yindex + dock->max_icons - 1] = False;
4367 for (dc = scr->drawers; dc != NULL; dc = dc->next) {
4368 y = (int) ((dc->adrawer->y_pos - dock->y_pos) / ICON_SIZE);
4369 can_be_here[y + dock->max_icons - 1] = False;
4372 found_y = False;
4373 for (sig = 1; !found_y && sig > -2; sig -= 2) // 1, then -1
4375 for (y = sig; sig * y < dock->max_icons; y += sig)
4377 if (can_be_here[y + dock->max_icons - 1] &&
4378 onScreen(scr, dock->x_pos, dock->y_pos + y * ICON_SIZE))
4380 found_y = True;
4381 break;
4386 if (!found_y)
4387 /* This can happen even when dock->icon_count + scr->drawer_count
4388 * < dock->max_icons when the dock is not aligned on an
4389 * ICON_SIZE multiple, as some space is lost above and under it */
4390 return -1;
4392 drawer = wDockCreate(scr, WM_DRAWER, NULL);
4393 drawer->lowered = scr->dock->lowered;
4394 if (!drawer->lowered)
4395 ChangeStackingLevel(drawer->icon_array[0]->icon->core, WMDockLevel);
4396 else
4397 ChangeStackingLevel(drawer->icon_array[0]->icon->core, WMNormalLevel);
4398 drawer->auto_raise_lower = scr->dock->auto_raise_lower;
4399 drawer->x_pos = dock->x_pos;
4400 drawer->y_pos = dock->y_pos + ICON_SIZE * y;
4401 drawer->icon_array[0]->xindex = 0;
4402 drawer->icon_array[0]->yindex = 0;
4403 drawer->icon_array[0]->x_pos = drawer->x_pos;
4404 drawer->icon_array[0]->y_pos = drawer->y_pos;
4405 XMoveWindow(dpy, drawer->icon_array[0]->icon->core->window,
4406 drawer->icon_array[0]->x_pos, drawer->icon_array[0]->y_pos);
4408 return 0;
4412 static void addADrawerCallback(WMenu *menu, WMenuEntry *entry)
4414 /* Parameter not used, but tell the compiler that it is ok */
4415 (void) menu;
4417 assert(entry->clientdata!=NULL);
4418 addADrawer(((WAppIcon *) entry->clientdata)->dock->screen_ptr);
4422 static void drawerDestroy(WDock *drawer)
4424 WScreen *scr;
4425 int i;
4426 WAppIcon *aicon = NULL;
4427 WMArray *icons;
4429 if (drawer == NULL)
4430 return;
4432 scr = drawer->screen_ptr;
4434 /* Note regarding menus: we can't delete any dock/clip/drawer menu, because
4435 * that would (attempt to) wfree some memory in gettext library (see menu
4436 * entries that have several "versions", such like "Hide" and "Unhide"). */
4437 wDefaultPurgeInfo(drawer->icon_array[0]->wm_instance,
4438 drawer->icon_array[0]->wm_class);
4440 if (drawer->icon_count == 2) {
4441 /* Drawer contains a single appicon: dock it where the drawer was */
4442 for (i = 1; i < drawer->max_icons; i++) {
4443 aicon = drawer->icon_array[i];
4444 if (aicon != NULL)
4445 break;
4448 wDockMoveIconBetweenDocks(drawer, scr->dock, aicon,
4449 0, (drawer->y_pos - scr->dock->y_pos) / ICON_SIZE);
4450 XMoveWindow(dpy, aicon->icon->core->window, drawer->x_pos, drawer->y_pos);
4451 XMapWindow(dpy, aicon->icon->core->window);
4452 } else if (drawer->icon_count > 2) {
4453 icons = WMCreateArray(drawer->icon_count - 1);
4454 for (i = 1; i < drawer->max_icons; i++) {
4455 aicon = drawer->icon_array[i];
4456 if (aicon == NULL)
4457 continue;
4458 WMAddToArray(icons, aicon);
4460 removeIcons(icons, drawer);
4463 if (drawer->auto_collapse_magic) {
4464 WMDeleteTimerHandler(drawer->auto_collapse_magic);
4465 drawer->auto_collapse_magic = NULL;
4467 if (drawer->auto_lower_magic) {
4468 WMDeleteTimerHandler(drawer->auto_lower_magic);
4469 drawer->auto_lower_magic = NULL;
4472 wAppIconDestroy(drawer->icon_array[0]);
4473 wfree(drawer->icon_array);
4474 drawer->icon_array = NULL;
4476 drawerRemoveFromChain(scr, drawer);
4477 if (scr->last_dock == drawer)
4478 scr->last_dock = NULL;
4479 if (scr->attracting_drawer == drawer)
4480 scr->attracting_drawer = NULL;
4482 wfree(drawer);
4486 static void removeDrawerCallback(WMenu *menu, WMenuEntry *entry)
4488 WDock *dock = ((WAppIcon*)entry->clientdata)->dock;
4490 /* Parameter not used, but tell the compiler that it is ok */
4491 (void) menu;
4493 assert(dock != NULL);
4495 if (dock->icon_count > 2) {
4496 if (wMessageDialog(dock->screen_ptr, _("Drawer"),
4497 _("All icons in this drawer will be detached!"),
4498 _("OK"), _("Cancel"), NULL) != WAPRDefault)
4499 return;
4501 drawerDestroy(dock);
4505 void wDrawerIconPaint(WAppIcon *dicon)
4507 Window win = dicon->icon->core->window;
4508 WScreen *scr = dicon->icon->core->screen_ptr;
4509 XPoint p[4];
4510 GC gc = scr->draw_gc;
4511 WMColor *color;
4513 wIconPaint(dicon->icon);
4515 if (!dicon->dock->collapsed)
4516 color = scr->clip_title_color[CLIP_NORMAL];
4517 else
4518 color = scr->clip_title_color[CLIP_COLLAPSED];
4519 XSetForeground(dpy, gc, WMColorPixel(color));
4521 if (dicon->dock->on_right_side) {
4522 p[0].x = p[3].x = 10;
4523 p[0].y = p[3].y = ICON_SIZE / 2 - 5;
4524 p[1].x = 10;
4525 p[1].y = ICON_SIZE / 2 + 5;
4526 p[2].x = 5;
4527 p[2].y = ICON_SIZE / 2;
4529 else {
4530 p[0].x = p[3].x = ICON_SIZE-1 - 10;
4531 p[0].y = p[3].y = ICON_SIZE / 2 - 5;
4532 p[1].x = ICON_SIZE-1 - 10;
4533 p[1].y = ICON_SIZE / 2 + 5;
4534 p[2].x = ICON_SIZE-1 - 5;
4535 p[2].y = ICON_SIZE / 2;
4537 XFillPolygon(dpy, win, gc, p,3,Convex,CoordModeOrigin);
4538 XDrawLines(dpy, win, gc, p,4,CoordModeOrigin);
4542 RImage* wDrawerMakeTile(WScreen *scr, RImage *normalTile)
4544 RImage *tile = RCloneImage(normalTile);
4545 RColor dark;
4546 RColor light;
4548 dark.alpha = 0;
4549 dark.red = dark.green = dark.blue = 60;
4551 light.alpha = 0;
4552 light.red = light.green = light.blue = 80;
4554 /* arrow bevel */
4555 if (!scr->dock || scr->dock->on_right_side) {
4556 ROperateLine(tile, RSubtractOperation, 11, ICON_SIZE / 2 - 7,
4557 4, ICON_SIZE / 2, &dark); /* / */
4558 ROperateLine(tile, RSubtractOperation, 11, ICON_SIZE / 2 + 7,
4559 4, ICON_SIZE / 2, &dark); /* \ */
4560 ROperateLine(tile, RAddOperation, 11, ICON_SIZE / 2 - 7,
4561 11, ICON_SIZE / 2 + 7, &light); /* | */
4563 else {
4564 ROperateLine(tile, RSubtractOperation, ICON_SIZE-1 - 11, ICON_SIZE / 2 - 7,
4565 ICON_SIZE-1 - 4, ICON_SIZE / 2, &dark); /* \ */
4566 ROperateLine(tile, RAddOperation, ICON_SIZE-1 - 11, ICON_SIZE / 2 + 7,
4567 ICON_SIZE-1 - 4, ICON_SIZE / 2, &light); /* / */
4568 ROperateLine(tile, RSubtractOperation, ICON_SIZE-1 - 11, ICON_SIZE / 2 - 7,
4569 ICON_SIZE-1 - 11, ICON_SIZE / 2 + 7, &dark); /* | */
4571 return tile;
4575 static void swapDrawer(WDock *drawer, int new_x)
4577 int i;
4579 drawer->on_right_side = !drawer->on_right_side;
4580 drawer->x_pos = new_x;
4582 for (i = 0; i < drawer->max_icons; i++) {
4583 WAppIcon *ai;
4585 ai = drawer->icon_array[i];
4586 if (ai == NULL)
4587 continue;
4588 ai->xindex *= -1; /* so A B C becomes C B A */
4589 ai->x_pos = new_x + ai->xindex * ICON_SIZE;
4591 /* Update drawer's tile */
4592 if (i == 0) {
4593 wIconUpdate(ai->icon);
4594 wDrawerIconPaint(ai);
4596 XMoveWindow(dpy, ai->icon->core->window, ai->x_pos, ai->y_pos);
4601 static void swapDrawers(WScreen *scr, int new_x)
4603 WDrawerChain *dc;
4605 if (scr->drawer_tile)
4606 RReleaseImage(scr->drawer_tile);
4608 scr->drawer_tile = wDrawerMakeTile(scr, scr->icon_tile);
4610 for (dc = scr->drawers; dc != NULL; dc = dc->next)
4611 swapDrawer(dc->adrawer, new_x);
4615 int wIsADrawer(WAppIcon *aicon)
4617 return aicon && aicon->dock &&
4618 aicon->dock->type == WM_DRAWER && aicon->dock->icon_array[0] == aicon;
4622 static WDock* getDrawer(WScreen *scr, int y_index)
4624 WDrawerChain *dc;
4626 for (dc = scr->drawers; dc != NULL; dc = dc->next) {
4627 if (dc->adrawer->y_pos - scr->dock->y_pos == y_index * ICON_SIZE)
4628 return dc->adrawer;
4630 return NULL;
4635 /* Find the "hole" a moving appicon created when snapped into the
4636 * drawer. redocking is a boolean. If the moving appicon comes from the
4637 * drawer, drawer->icon_count is correct. If not, redocking is then false and
4638 * there are now drawer->icon_count plus one appicons in the drawer. */
4639 static int indexOfHole(WDock *drawer, WAppIcon *moving_aicon, int redocking)
4641 int index_of_hole, i;
4643 /* Classic interview question...
4645 * We have n-1 (n = drawer->icon_count-1 or drawer->icon_count, see
4646 * redocking) appicons, whose xindex are unique in [1..n]. One is missing:
4647 * that's where the ghost of the moving appicon is, that's what the
4648 * function should return.
4650 * We compute 1+2+...+n (this sum is equal to n*(n+1)/2), we substract to
4651 * this sum the xindex of each of the n-1 appicons, and we get the correct
4652 * index! */
4654 if (redocking) {
4655 index_of_hole = (drawer->icon_count - 1) * drawer->icon_count / 2;
4656 } else {
4657 index_of_hole = drawer->icon_count * (drawer->icon_count + 1) / 2;
4659 index_of_hole *= (drawer->on_right_side ? -1 : 1);
4661 for (i = 1; i < drawer->max_icons; i++) {
4662 if (drawer->icon_array[i] && drawer->icon_array[i] != moving_aicon)
4663 index_of_hole -= drawer->icon_array[i]->xindex;
4665 /* wmessage(" Index of the moving appicon is %d (%sredocking)", index_of_hole, (redocking ? "" : "not ")); */
4666 if (abs(index_of_hole) > abs(drawer->icon_count) - (redocking ? 1 : 0))
4667 wwarning(" index_of_hole is too large ! (%d greater than %d)",
4668 index_of_hole, abs(drawer->icon_count) - (redocking ? 1 : 0));
4669 if (index_of_hole == 0)
4670 wwarning(" index_of_hole == 0 (%sredocking, icon_count == %d)", (redocking ? "" : "not "), drawer->icon_count);
4672 return index_of_hole;
4676 void wSlideAppicons(WAppIcon **appicons, int n, int to_the_left)
4678 int i;
4679 int leftmost = -1, min_index = 9999, from_x = -1; // leftmost and from_x initialized to avoid warning
4680 Window wins[n];
4681 WAppIcon *aicon;
4683 if (n < 1)
4684 return;
4686 for (i = 0; i < n; i++) {
4687 aicon = appicons[i];
4688 aicon->xindex += (to_the_left ? -1 : +1);
4689 if (aicon->xindex < min_index) {
4690 min_index = aicon->xindex;
4691 leftmost = i;
4692 from_x = aicon->x_pos;
4694 aicon->x_pos += (to_the_left ? -ICON_SIZE : +ICON_SIZE);
4697 for (i = 0; i < n; i++) {
4698 aicon = appicons[i];
4699 wins[aicon->xindex - min_index] = aicon->icon->core->window;
4701 aicon = appicons[leftmost];
4702 slide_windows(wins, n, from_x, aicon->y_pos, aicon->x_pos, aicon->y_pos);
4706 void wDrawerFillTheGap(WDock *drawer, WAppIcon *aicon, Bool redocking)
4708 int i, j;
4709 int index_of_hole = indexOfHole(drawer, aicon, redocking);
4710 WAppIcon *aicons_to_shift[drawer->icon_count];
4712 j = 0;
4713 for (i = 0; i < drawer->max_icons; i++) {
4714 WAppIcon *ai = drawer->icon_array[i];
4715 if (ai && ai != aicon &&
4716 abs(ai->xindex) > abs(index_of_hole))
4717 aicons_to_shift[j++] = ai;
4719 if (j != drawer->icon_count - abs(index_of_hole) - (redocking ? 1 : 0))
4720 wwarning("Removing aicon at index %d from %s: j=%d but should be %d",
4721 index_of_hole, drawer->icon_array[0]->wm_instance,
4722 j, drawer->icon_count - abs(index_of_hole) - (redocking ? 1 : 0));
4723 wSlideAppicons(aicons_to_shift, j, !drawer->on_right_side);
4727 static void drawerConsolidateIcons(WDock *drawer)
4729 WAppIcon *aicons_to_shift[drawer->icon_count];
4730 int maxRemaining = 0;
4731 int sum = 0;
4732 int i;
4733 for (i = 0; i < drawer->max_icons; i++) {
4734 WAppIcon *ai = drawer->icon_array[i];
4735 if (ai == NULL)
4736 continue;
4737 sum += abs(ai->xindex);
4738 if (abs(ai->xindex) > maxRemaining)
4739 maxRemaining = abs(ai->xindex);
4741 while (sum != maxRemaining * (maxRemaining + 1) / 2) { // while there is a hole
4742 WAppIcon *ai;
4743 int n;
4744 // Look up for the hole at max position
4745 int maxDeleted;
4746 for (maxDeleted = maxRemaining - 1; maxDeleted > 0; maxDeleted--) {
4747 Bool foundAppIconThere = False;
4748 for (i = 0; i < drawer->max_icons; i++) {
4749 WAppIcon *ai = drawer->icon_array[i];
4750 if (ai == NULL)
4751 continue;
4752 if (abs(ai->xindex) == maxDeleted) {
4753 foundAppIconThere = True;
4754 break;
4757 if (!foundAppIconThere)
4758 break;
4760 assert(maxDeleted > 0); // would mean while test is wrong
4761 n = 0;
4762 for (i = 0; i < drawer->max_icons; i++) {
4763 ai = drawer->icon_array[i];
4764 if (ai != NULL && abs(ai->xindex) > maxDeleted)
4765 aicons_to_shift[n++] = ai;
4767 assert(n == maxRemaining - maxDeleted); // for the code review ;-)
4768 wSlideAppicons(aicons_to_shift, n, !drawer->on_right_side);
4769 // Efficient beancounting
4770 maxRemaining -= 1;
4771 sum -= n;
4777 /* similar to wDockRestoreState, but a lot a specific stuff too... */
4778 static WDock * drawerRestoreState(WScreen *scr, WMPropList *drawer_state)
4780 WDock *drawer;
4781 WMPropList *apps, *value, *dock_state;
4782 WAppIcon *aicon;
4783 int count, i;
4785 if (!drawer_state)
4786 return NULL;
4788 make_keys();
4790 WMRetainPropList(drawer_state);
4792 /* Get the instance name, and create a drawer */
4793 value = WMGetFromPLDictionary(drawer_state, dName);
4794 drawer = wDockCreate(scr, WM_DRAWER, WMGetFromPLString(value));
4796 /* restore DnD command and paste command */
4797 #ifdef USE_DOCK_XDND
4798 value = WMGetFromPLDictionary(drawer_state, dDropCommand);
4799 if (value && WMIsPLString(value))
4800 drawer->icon_array[0]->dnd_command = wstrdup(WMGetFromPLString(value));
4801 #endif /* USE_DOCK_XDND */
4803 value = WMGetFromPLDictionary(drawer_state, dPasteCommand);
4804 if (value && WMIsPLString(value))
4805 drawer->icon_array[0]->paste_command = wstrdup(WMGetFromPLString(value));
4807 /* restore position */
4808 value = WMGetFromPLDictionary(drawer_state, dPosition);
4809 if (!value || !WMIsPLString(value))
4810 COMPLAIN("Position");
4811 else {
4812 int x, y, y_index;
4813 if (sscanf(WMGetFromPLString(value), "%i,%i", &x, &y) != 2)
4814 COMPLAIN("Position");
4816 /* check position sanity */
4817 if (x != scr->dock->x_pos) {
4818 x = scr->dock->x_pos;
4820 y_index = (y - scr->dock->y_pos) / ICON_SIZE;
4821 if (y_index >= scr->dock->max_icons) {
4822 /* Here we should do something more intelligent, since it
4823 * can happen even if the user hasn't hand-edited his
4824 * G/D/State file (but uses a lower resolution). */
4825 y_index = scr->dock->max_icons - 1;
4827 y = scr->dock->y_pos + y_index * ICON_SIZE;
4828 moveDock(drawer, x, y);
4831 /* restore dock properties (applist and others) */
4832 dock_state = WMGetFromPLDictionary(drawer_state, dDock);
4834 /* restore lowered/raised state: same as scr->dock, no matter what */
4835 drawer->lowered = scr->dock->lowered;
4836 if (!drawer->lowered)
4837 ChangeStackingLevel(drawer->icon_array[0]->icon->core, WMDockLevel);
4838 else
4839 ChangeStackingLevel(drawer->icon_array[0]->icon->core, WMNormalLevel);
4840 wRaiseFrame(drawer->icon_array[0]->icon->core);
4842 /* restore collapsed state */
4843 drawer->collapsed = 0;
4844 value = WMGetFromPLDictionary(dock_state, dCollapsed);
4845 if (value && strcasecmp(WMGetFromPLString(value), "YES") == 0) {
4846 drawer->collapsed = 1;
4848 /* restore auto-collapsed state */
4849 value = WMGetFromPLDictionary(dock_state, dAutoCollapse);
4850 if (value && strcasecmp(WMGetFromPLString(value), "YES") == 0) {
4851 drawer->auto_collapse = 1;
4852 drawer->collapsed = 1;
4853 } else {
4854 drawer->auto_collapse = 0; // because wDockCreate sets it (drawers only)
4857 /* restore auto-raise/lower state: same as scr->dock, no matter what */
4858 drawer->auto_raise_lower = scr->dock->auto_raise_lower;
4860 /* restore attract icons state */
4861 drawer->attract_icons = 0;
4862 value = WMGetFromPLDictionary(dock_state, dAutoAttractIcons);
4863 if (value && strcasecmp(WMGetFromPLString(value), "YES") == 0) {
4864 drawer->attract_icons = 1;
4865 scr->attracting_drawer = drawer;
4868 /* application list */
4869 apps = WMGetFromPLDictionary(dock_state, dApplications);
4871 if (!apps) {
4872 goto finish;
4875 count = WMGetPropListItemCount(apps);
4877 if (count == 0)
4878 goto finish;
4880 for (i=0; i<count; i++) {
4881 if (drawer->icon_count >= drawer->max_icons) {
4882 wwarning(_("there are too many icons stored in drawer. Ignoring what doesn't fit"));
4883 break;
4886 value = WMGetFromPLArray(apps, i);
4887 aicon = restore_icon_state(scr, value, WM_DRAWER, drawer->icon_count);
4889 drawer->icon_array[drawer->icon_count] = aicon;
4891 if (aicon) {
4892 aicon->dock = drawer;
4893 aicon->x_pos = drawer->x_pos + (aicon->xindex * ICON_SIZE);
4894 aicon->y_pos = drawer->y_pos + (aicon->yindex * ICON_SIZE);
4896 if (!drawer->lowered)
4897 ChangeStackingLevel(aicon->icon->core, WMDockLevel);
4898 else
4899 ChangeStackingLevel(aicon->icon->core, WMNormalLevel);
4901 wCoreConfigure(aicon->icon->core, aicon->x_pos, aicon->y_pos, 0, 0);
4903 if (!drawer->collapsed)
4904 XMapWindow(dpy, aicon->icon->core->window);
4905 wRaiseFrame(aicon->icon->core);
4907 drawer->icon_count++;
4911 finish:
4912 WMReleasePropList(drawer_state);
4914 return drawer;
4918 /* Same kind of comment than for previous function: this function is
4919 * very similar to make_icon_state, but has substential differences as
4920 * well. */
4921 static WMPropList *drawerSaveState(WDock *drawer)
4923 WMPropList *pstr, *drawer_state;
4924 WAppIcon *ai;
4925 char buffer[64];
4927 ai = drawer->icon_array[0];
4928 /* Store its name */
4929 pstr = WMCreatePLString(ai->wm_instance);
4930 drawer_state = WMCreatePLDictionary(dName, pstr, NULL); /* we need this final NULL */
4931 WMReleasePropList(pstr);
4933 /* Store its position */
4934 snprintf(buffer, sizeof(buffer), "%i,%i", ai->x_pos, ai->y_pos);
4935 pstr = WMCreatePLString(buffer);
4936 WMPutInPLDictionary(drawer_state, dPosition, pstr);
4937 WMReleasePropList(pstr);
4939 #ifdef USE_DOCK_XDND
4940 /* Store its DnD command */
4941 if (ai->dnd_command) {
4942 pstr = WMCreatePLString(ai->dnd_command);
4943 WMPutInPLDictionary(drawer_state, dDropCommand, pstr);
4944 WMReleasePropList(pstr);
4946 #endif /* USE_DOCK_XDND */
4948 /* Store its paste command */
4949 if (ai->paste_command) {
4950 pstr = WMCreatePLString(ai->paste_command);
4951 WMPutInPLDictionary(drawer_state, dPasteCommand, pstr);
4952 WMReleasePropList(pstr);
4955 /* Store applications list and other properties */
4956 pstr = dockSaveState(drawer);
4957 WMPutInPLDictionary(drawer_state, dDock, pstr);
4958 WMReleasePropList(pstr);
4960 return drawer_state;
4964 void wDrawersSaveState(WScreen *scr)
4966 WMPropList *all_drawers, *drawer_state;
4967 int i;
4968 WDrawerChain *dc;
4970 make_keys();
4972 all_drawers = WMCreatePLArray(NULL);
4973 for (i=0, dc = scr->drawers;
4974 i < scr->drawer_count;
4975 i++, dc = dc->next) {
4976 drawer_state = drawerSaveState(dc->adrawer);
4977 WMAddToPLArray(all_drawers, drawer_state);
4978 WMReleasePropList(drawer_state);
4980 WMPutInPLDictionary(scr->session_state, dDrawers, all_drawers);
4981 WMReleasePropList(all_drawers);
4985 void wDrawersRestoreState(WScreen *scr)
4987 WMPropList *all_drawers, *drawer_state;
4988 int i;
4990 make_keys();
4992 if (scr->session_state == NULL)
4993 return;
4995 all_drawers = WMGetFromPLDictionary(scr->session_state, dDrawers);
4996 if (!all_drawers)
4997 return;
4999 for (i = 0; i < WMGetPropListItemCount(all_drawers); i++) {
5000 drawer_state = WMGetFromPLArray(all_drawers, i);
5001 drawerRestoreState(scr, drawer_state);
5002 // Note: scr->drawers was updated when the the drawer was created