Improve dockapp recognition
[wmaker-crm.git] / src / switchpanel.c
blob99401448092bfe3c7bb2a7de00e10653dd01b00b
1 /*
2 * Window Maker window manager
4 * Copyright (c) 1997-2004 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 * USA.
22 #include "wconfig.h"
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/time.h>
28 #include "WindowMaker.h"
29 #include "screen.h"
30 #include "framewin.h"
31 #include "window.h"
32 #include "defaults.h"
33 #include "switchpanel.h"
34 #include "funcs.h"
35 #include "xinerama.h"
36 #include "window.h"
38 extern Atom _XA_WM_IGNORE_FOCUS_EVENTS;
40 #ifdef SHAPE
41 #include <X11/extensions/shape.h>
43 extern Bool wShapeSupported;
44 #endif
46 struct SwitchPanel {
47 WScreen *scr;
48 WMWindow *win;
49 WMFrame *iconBox;
51 WMArray *icons;
52 WMArray *images;
53 WMArray *windows;
54 RImage *bg;
55 int current;
56 int firstVisible;
57 int visibleCount;
59 WMLabel *label;
61 RImage *defIcon;
63 RImage *tileTmp;
64 RImage *tile;
66 WMFont *font;
67 WMColor *white;
70 extern WPreferences wPreferences;
72 #define BORDER_SPACE 10
73 #define ICON_SIZE 48
74 #define ICON_TILE_SIZE 64
75 #define LABEL_HEIGHT 25
76 #define SCREEN_BORDER_SPACING 2*20
77 #define SCROLL_STEPS (ICON_TILE_SIZE/2)
79 static int canReceiveFocus(WWindow * wwin)
81 if (wwin->frame->workspace != wwin->screen_ptr->current_workspace)
82 return 0;
84 if (wPreferences.cycle_active_head_only &&
85 wGetHeadForWindow(wwin) != wGetHeadForPointerLocation(wwin->screen_ptr))
86 return 0;
88 if (!wwin->flags.mapped) {
89 if (!wwin->flags.shaded && !wwin->flags.miniaturized && !wwin->flags.hidden)
90 return 0;
91 else
92 return -1;
94 if (WFLAGP(wwin, no_focusable))
95 return 0;
96 return 1;
99 static void changeImage(WSwitchPanel * panel, int idecks, int selected)
101 WMFrame *icon = WMGetFromArray(panel->icons, idecks);
102 RImage *image = WMGetFromArray(panel->images, idecks);
104 if (!panel->bg && !panel->tile) {
105 if (!selected)
106 WMSetFrameRelief(icon, WRFlat);
109 if (image && icon) {
110 RImage *back;
111 int opaq = 255;
112 RImage *tile;
113 WMPoint pos;
114 Pixmap p;
116 if (canReceiveFocus(WMGetFromArray(panel->windows, idecks)) < 0)
117 opaq = 50;
119 pos = WMGetViewPosition(WMWidgetView(icon));
120 back = panel->tileTmp;
121 if (panel->bg)
122 RCopyArea(back, panel->bg,
123 BORDER_SPACE + pos.x - panel->firstVisible * ICON_TILE_SIZE,
124 BORDER_SPACE + pos.y, back->width, back->height, 0, 0);
125 else {
126 RColor color;
127 WMScreen *wscr = WMWidgetScreen(icon);
128 color.red = 255;
129 color.red = WMRedComponentOfColor(WMGrayColor(wscr)) >> 8;
130 color.green = WMGreenComponentOfColor(WMGrayColor(wscr)) >> 8;
131 color.blue = WMBlueComponentOfColor(WMGrayColor(wscr)) >> 8;
132 RFillImage(back, &color);
134 if (selected) {
135 tile = panel->tile;
136 RCombineArea(back, tile, 0, 0, tile->width, tile->height,
137 (back->width - tile->width) / 2, (back->height - tile->height) / 2);
139 RCombineAreaWithOpaqueness(back, image, 0, 0, image->width, image->height,
140 (back->width - image->width) / 2, (back->height - image->height) / 2,
141 opaq);
143 RConvertImage(panel->scr->rcontext, back, &p);
144 XSetWindowBackgroundPixmap(dpy, WMWidgetXID(icon), p);
145 XClearWindow(dpy, WMWidgetXID(icon));
146 XFreePixmap(dpy, p);
149 if (!panel->bg && !panel->tile) {
150 if (selected)
151 WMSetFrameRelief(icon, WRSimple);
155 static RImage *scaleDownIfNeeded(RImage * image)
157 if (image && ((image->width - ICON_SIZE) > 2 || (image->height - ICON_SIZE) > 2)) {
158 RImage *nimage;
159 nimage = RScaleImage(image, ICON_SIZE, (image->height * ICON_SIZE / image->width));
160 RReleaseImage(image);
161 image = nimage;
163 return image;
166 static void addIconForWindow(WSwitchPanel * panel, WMWidget * parent, WWindow * wwin, int x, int y)
168 WMFrame *icon = WMCreateFrame(parent);
169 RImage *image = NULL;
171 WMSetFrameRelief(icon, WRFlat);
172 WMResizeWidget(icon, ICON_TILE_SIZE, ICON_TILE_SIZE);
173 WMMoveWidget(icon, x, y);
175 if (!WFLAGP(wwin, always_user_icon) && wwin->net_icon_image)
176 image = RRetainImage(wwin->net_icon_image);
178 // Make this use a caching thing. When there are many windows,
179 // it's very likely that most of them are instances of the same thing,
180 // so caching them should get performance acceptable in these cases.
181 if (!image)
182 image = wDefaultGetImage(panel->scr, wwin->wm_instance, wwin->wm_class);
184 if (!image && !panel->defIcon) {
185 char *file = wDefaultGetIconFile(panel->scr, NULL, NULL, False);
186 if (file) {
187 char *path = FindImage(wPreferences.icon_path, file);
188 if (path) {
189 image = RLoadImage(panel->scr->rcontext, path, 0);
190 wfree(path);
193 if (image)
194 panel->defIcon = scaleDownIfNeeded(image);
195 image = NULL;
197 if (!image && panel->defIcon)
198 image = RRetainImage(panel->defIcon);
200 image = scaleDownIfNeeded(image);
202 WMAddToArray(panel->images, image);
203 WMAddToArray(panel->icons, icon);
206 static void scrollIcons(WSwitchPanel * panel, int delta)
208 int nfirst = panel->firstVisible + delta;
209 int i;
210 int count = WMGetArrayItemCount(panel->windows);
211 // int nx, ox;
212 // struct timeval tv1, tv2;
214 if (count <= panel->visibleCount)
215 return;
217 if (nfirst < 0)
218 nfirst = 0;
219 else if (nfirst >= count - panel->visibleCount)
220 nfirst = count - panel->visibleCount;
222 if (nfirst == panel->firstVisible)
223 return;
225 ox = -panel->firstVisible * ICON_TILE_SIZE;
226 nx = -nfirst * ICON_TILE_SIZE;
227 for (i= 0; i < SCROLL_STEPS; i++) {
228 unsigned int diff;
229 gettimeofday(&tv1, NULL);
230 WMMoveWidget(panel->iconBox, (nx*i + ox*(SCROLL_STEPS-i))/(SCROLL_STEPS-1), 0);
231 XSync(dpy, False);
232 gettimeofday(&tv2, NULL);
233 diff = (tv2.tv_sec-tv1.tv_sec)*10000+(tv2.tv_usec-tv1.tv_usec)/100;
234 if (diff < 200)
235 wusleep(300-diff);
238 WMMoveWidget(panel->iconBox, -nfirst * ICON_TILE_SIZE, 0);
240 panel->firstVisible = nfirst;
242 for (i = panel->firstVisible; i < panel->firstVisible + panel->visibleCount; i++) {
243 changeImage(panel, i, i == panel->current);
248 * 0 1 2
249 * 3 4 5
250 * 6 7 8
252 static RImage *assemblePuzzleImage(RImage ** images, int width, int height)
254 RImage *img = RCreateImage(width, height, 1);
255 RImage *tmp;
256 int tw, th;
257 RColor color;
258 if (!img)
259 return NULL;
261 color.red = 0;
262 color.green = 0;
263 color.blue = 0;
264 color.alpha = 255;
266 RFillImage(img, &color);
268 tw = width - images[0]->width - images[2]->width;
269 th = height - images[0]->height - images[6]->height;
271 if (tw <= 0 || th <= 0) {
272 //XXX
273 return NULL;
276 /* top */
277 if (tw > 0) {
278 tmp = RSmoothScaleImage(images[1], tw, images[1]->height);
279 RCopyArea(img, tmp, 0, 0, tmp->width, tmp->height, images[0]->width, 0);
280 RReleaseImage(tmp);
282 /* bottom */
283 if (tw > 0) {
284 tmp = RSmoothScaleImage(images[7], tw, images[7]->height);
285 RCopyArea(img, tmp, 0, 0, tmp->width, tmp->height, images[6]->width, height - images[6]->height);
286 RReleaseImage(tmp);
288 /* left */
289 if (th > 0) {
290 tmp = RSmoothScaleImage(images[3], images[3]->width, th);
291 RCopyArea(img, tmp, 0, 0, tmp->width, tmp->height, 0, images[0]->height);
292 RReleaseImage(tmp);
294 /* right */
295 if (th > 0) {
296 tmp = RSmoothScaleImage(images[5], images[5]->width, th);
297 RCopyArea(img, tmp, 0, 0, tmp->width, tmp->height, width - images[5]->width, images[2]->height);
298 RReleaseImage(tmp);
300 /* center */
301 if (tw > 0 && th > 0) {
302 tmp = RSmoothScaleImage(images[4], tw, th);
303 RCopyArea(img, tmp, 0, 0, tmp->width, tmp->height, images[0]->width, images[0]->height);
304 RReleaseImage(tmp);
307 /* corners */
308 RCopyArea(img, images[0], 0, 0, images[0]->width, images[0]->height, 0, 0);
310 RCopyArea(img, images[2], 0, 0, images[2]->width, images[2]->height, width - images[2]->width, 0);
312 RCopyArea(img, images[6], 0, 0, images[6]->width, images[6]->height, 0, height - images[6]->height);
314 RCopyArea(img, images[8], 0, 0, images[8]->width, images[8]->height,
315 width - images[8]->width, height - images[8]->height);
317 return img;
320 static RImage *createBackImage(int width, int height)
322 return assemblePuzzleImage(wPreferences.swbackImage, width, height);
325 static RImage *getTile(void)
327 RImage *stile;
329 if (!wPreferences.swtileImage)
330 return NULL;
332 stile = RScaleImage(wPreferences.swtileImage, ICON_TILE_SIZE, ICON_TILE_SIZE);
333 if (!stile)
334 return wPreferences.swtileImage;
336 return stile;
339 static void drawTitle(WSwitchPanel * panel, int idecks, char *title)
341 char *ntitle;
342 int width = WMWidgetWidth(panel->win);
343 int x;
345 if (title)
346 ntitle = ShrinkString(panel->font, title, width - 2 * BORDER_SPACE);
347 else
348 ntitle = NULL;
350 if (panel->bg) {
351 if (ntitle) {
352 if (strcmp(ntitle, title) != 0)
353 x = BORDER_SPACE;
354 else {
355 int w = WMWidthOfString(panel->font, ntitle, strlen(ntitle));
357 x = BORDER_SPACE + (idecks - panel->firstVisible) * ICON_TILE_SIZE +
358 ICON_TILE_SIZE / 2 - w / 2;
359 if (x < BORDER_SPACE)
360 x = BORDER_SPACE;
361 else if (x + w > width - BORDER_SPACE)
362 x = width - BORDER_SPACE - w;
365 XClearWindow(dpy, WMWidgetXID(panel->win));
366 if (ntitle)
367 WMDrawString(panel->scr->wmscreen,
368 WMWidgetXID(panel->win),
369 panel->white, panel->font,
371 WMWidgetHeight(panel->win) - BORDER_SPACE - LABEL_HEIGHT +
372 WMFontHeight(panel->font) / 2, ntitle, strlen(ntitle));
373 } else {
374 if (ntitle)
375 WMSetLabelText(panel->label, ntitle);
377 if (ntitle)
378 free(ntitle);
381 static WMArray *makeWindowListArray(WWindow *curwin, int include_unmapped, Bool class_only)
383 WMArray *windows = WMCreateArray(10);
384 int fl;
385 WWindow *wwin;
387 for (fl = 0; fl < 2; fl++) {
388 for (wwin = curwin; wwin; wwin = wwin->prev) {
389 if (((!fl && canReceiveFocus(wwin) > 0) || (fl && canReceiveFocus(wwin) < 0)) &&
390 (wwin->flags.mapped || include_unmapped)) {
391 if (class_only) {
392 if (!wwin->wm_class || !curwin->wm_class)
393 continue;
394 if (strcmp(wwin->wm_class, curwin->wm_class))
395 continue;
397 WMAddToArray(windows, wwin);
400 wwin = curwin;
401 /* start over from the beginning of the list */
402 while (wwin->next)
403 wwin = wwin->next;
405 for (wwin = curwin; wwin && wwin != curwin; wwin = wwin->prev) {
406 if (((!fl && canReceiveFocus(wwin) > 0) || (fl && canReceiveFocus(wwin) < 0)) &&
407 (wwin->flags.mapped || include_unmapped)) {
408 if (class_only) {
409 if (!wwin->wm_class || !curwin->wm_class)
410 continue;
411 if (strcmp(wwin->wm_class, curwin->wm_class))
412 continue;
414 WMAddToArray(windows, wwin);
419 return windows;
422 WSwitchPanel *wInitSwitchPanel(WScreen * scr, WWindow * curwin, Bool class_only)
424 WWindow *wwin;
425 WSwitchPanel *panel = wmalloc(sizeof(WSwitchPanel));
426 WMFrame *viewport;
427 int i;
428 int width, height;
429 int iconsThatFitCount;
430 int count;
431 WMRect rect;
432 rect = wGetRectForHead(scr, wGetHeadForPointerLocation(scr));
434 memset(panel, 0, sizeof(WSwitchPanel));
436 panel->scr = scr;
438 panel->windows = makeWindowListArray(curwin, wPreferences.swtileImage != NULL, class_only);
439 count = WMGetArrayItemCount(panel->windows);
441 if (count == 0) {
442 WMFreeArray(panel->windows);
443 wfree(panel);
444 return NULL;
447 width = ICON_TILE_SIZE * count;
448 iconsThatFitCount = count;
450 if (width > rect.size.width) {
451 iconsThatFitCount = (rect.size.width - SCREEN_BORDER_SPACING) / ICON_TILE_SIZE;
452 width = iconsThatFitCount * ICON_TILE_SIZE;
455 panel->visibleCount = iconsThatFitCount;
457 if (!wPreferences.swtileImage)
458 return panel;
460 height = LABEL_HEIGHT + ICON_TILE_SIZE;
462 panel->tileTmp = RCreateImage(ICON_TILE_SIZE, ICON_TILE_SIZE, 1);
463 panel->tile = getTile();
464 if (panel->tile && wPreferences.swbackImage[8]) {
465 panel->bg = createBackImage(width + 2 * BORDER_SPACE, height + 2 * BORDER_SPACE);
467 if (!panel->tileTmp || !panel->tile) {
468 if (panel->bg)
469 RReleaseImage(panel->bg);
470 panel->bg = NULL;
471 if (panel->tile)
472 RReleaseImage(panel->tile);
473 panel->tile = NULL;
474 if (panel->tileTmp)
475 RReleaseImage(panel->tileTmp);
476 panel->tileTmp = NULL;
479 panel->white = WMWhiteColor(scr->wmscreen);
480 panel->font = WMBoldSystemFontOfSize(scr->wmscreen, 12);
481 panel->icons = WMCreateArray(count);
482 panel->images = WMCreateArray(count);
484 panel->win = WMCreateWindow(scr->wmscreen, "");
486 if (!panel->bg) {
487 WMFrame *frame = WMCreateFrame(panel->win);
488 WMColor *darkGray = WMDarkGrayColor(scr->wmscreen);
489 WMSetFrameRelief(frame, WRSimple);
490 WMSetViewExpandsToParent(WMWidgetView(frame), 0, 0, 0, 0);
492 panel->label = WMCreateLabel(panel->win);
493 WMResizeWidget(panel->label, width, LABEL_HEIGHT);
494 WMMoveWidget(panel->label, BORDER_SPACE, BORDER_SPACE + ICON_TILE_SIZE + 5);
495 WMSetLabelRelief(panel->label, WRSimple);
496 WMSetWidgetBackgroundColor(panel->label, darkGray);
497 WMSetLabelFont(panel->label, panel->font);
498 WMSetLabelTextColor(panel->label, panel->white);
500 WMReleaseColor(darkGray);
501 height += 5;
504 WMResizeWidget(panel->win, width + 2 * BORDER_SPACE, height + 2 * BORDER_SPACE);
506 viewport = WMCreateFrame(panel->win);
507 WMResizeWidget(viewport, width, ICON_TILE_SIZE);
508 WMMoveWidget(viewport, BORDER_SPACE, BORDER_SPACE);
509 WMSetFrameRelief(viewport, WRFlat);
511 panel->iconBox = WMCreateFrame(viewport);
512 WMMoveWidget(panel->iconBox, 0, 0);
513 WMResizeWidget(panel->iconBox, ICON_TILE_SIZE * count, ICON_TILE_SIZE);
514 WMSetFrameRelief(panel->iconBox, WRFlat);
516 WM_ITERATE_ARRAY(panel->windows, wwin, i) {
517 addIconForWindow(panel, panel->iconBox, wwin, i * ICON_TILE_SIZE, 0);
520 WMMapSubwidgets(panel->win);
521 WMRealizeWidget(panel->win);
523 WM_ITERATE_ARRAY(panel->windows, wwin, i) {
524 changeImage(panel, i, 0);
527 if (panel->bg) {
528 Pixmap pixmap, mask;
530 RConvertImageMask(scr->rcontext, panel->bg, &pixmap, &mask, 250);
532 XSetWindowBackgroundPixmap(dpy, WMWidgetXID(panel->win), pixmap);
534 #ifdef SHAPE
535 if (mask && wShapeSupported)
536 XShapeCombineMask(dpy, WMWidgetXID(panel->win), ShapeBounding, 0, 0, mask, ShapeSet);
537 #endif
539 if (pixmap)
540 XFreePixmap(dpy, pixmap);
541 if (mask)
542 XFreePixmap(dpy, mask);
546 WMPoint center;
547 center = wGetPointToCenterRectInHead(scr, wGetHeadForPointerLocation(scr),
548 width + 2 * BORDER_SPACE, height + 2 * BORDER_SPACE);
549 WMMoveWidget(panel->win, center.x, center.y);
552 panel->current = WMGetFirstInArray(panel->windows, curwin);
553 if (panel->current >= 0)
554 changeImage(panel, panel->current, 1);
556 WMMapWidget(panel->win);
558 return panel;
561 void wSwitchPanelDestroy(WSwitchPanel * panel)
563 int i;
564 RImage *image;
566 if (panel->win) {
567 Window info_win = panel->scr->info_window;
568 XEvent ev;
569 ev.xclient.type = ClientMessage;
570 ev.xclient.message_type = _XA_WM_IGNORE_FOCUS_EVENTS;
571 ev.xclient.format = 32;
572 ev.xclient.data.l[0] = True;
574 XSendEvent(dpy, info_win, True, EnterWindowMask, &ev);
575 WMUnmapWidget(panel->win);
577 ev.xclient.data.l[0] = False;
578 XSendEvent(dpy, info_win, True, EnterWindowMask, &ev);
581 if (panel->images) {
582 WM_ITERATE_ARRAY(panel->images, image, i) {
583 if (image)
584 RReleaseImage(image);
586 WMFreeArray(panel->images);
588 if (panel->win)
589 WMDestroyWidget(panel->win);
590 if (panel->icons)
591 WMFreeArray(panel->icons);
592 WMFreeArray(panel->windows);
593 if (panel->defIcon)
594 RReleaseImage(panel->defIcon);
595 if (panel->tile)
596 RReleaseImage(panel->tile);
597 if (panel->tileTmp)
598 RReleaseImage(panel->tileTmp);
599 if (panel->bg)
600 RReleaseImage(panel->bg);
601 if (panel->font)
602 WMReleaseFont(panel->font);
603 if (panel->white)
604 WMReleaseColor(panel->white);
605 wfree(panel);
608 WWindow *wSwitchPanelSelectNext(WSwitchPanel * panel, int back)
610 WWindow *wwin;
611 int count = WMGetArrayItemCount(panel->windows);
613 if (count == 0)
614 return NULL;
616 if (panel->win)
617 changeImage(panel, panel->current, 0);
619 if (back)
620 panel->current--;
621 else
622 panel->current++;
624 wwin = WMGetFromArray(panel->windows, (count + panel->current) % count);
626 if (back) {
627 if (panel->current < 0)
628 scrollIcons(panel, count);
629 else if (panel->current < panel->firstVisible)
630 scrollIcons(panel, -1);
631 } else {
632 if (panel->current >= count)
633 scrollIcons(panel, -count);
634 else if (panel->current - panel->firstVisible >= panel->visibleCount)
635 scrollIcons(panel, 1);
638 panel->current = (count + panel->current) % count;
640 if (panel->win) {
641 drawTitle(panel, panel->current, wwin->frame->title);
643 changeImage(panel, panel->current, 1);
646 return wwin;
649 WWindow *wSwitchPanelSelectFirst(WSwitchPanel * panel, int back)
651 WWindow *wwin;
652 int count = WMGetArrayItemCount(panel->windows);
654 if (count == 0)
655 return NULL;
657 if (panel->win)
658 changeImage(panel, panel->current, 0);
660 if (back) {
661 panel->current = count - 1;
662 scrollIcons(panel, count);
663 } else {
664 panel->current = 0;
665 scrollIcons(panel, -count);
668 wwin = WMGetFromArray(panel->windows, panel->current);
670 if (panel->win) {
671 drawTitle(panel, panel->current, wwin->frame->title);
673 changeImage(panel, panel->current, 1);
675 return wwin;
678 WWindow *wSwitchPanelHandleEvent(WSwitchPanel * panel, XEvent * event)
680 WMFrame *icon;
681 int i;
682 int focus = -1;
684 if (!panel->win)
685 return NULL;
687 /* if (event->type == LeaveNotify) {
688 if (event->xcrossing.window == WMWidgetXID(panel->win))
689 focus= 0;
690 } else */ if (event->type == MotionNotify) {
692 WM_ITERATE_ARRAY(panel->icons, icon, i) {
693 if (WMWidgetXID(icon) == event->xmotion.window) {
694 focus = i;
695 break;
699 if (focus >= 0 && panel->current != focus) {
700 WWindow *wwin;
702 changeImage(panel, panel->current, 0);
703 changeImage(panel, focus, 1);
704 panel->current = focus;
706 wwin = WMGetFromArray(panel->windows, focus);
708 drawTitle(panel, panel->current, wwin->frame->title);
710 return wwin;
713 return NULL;
716 Window wSwitchPanelGetWindow(WSwitchPanel * swpanel)
718 if (!swpanel->win)
719 return None;
720 return WMWidgetXID(swpanel->win);