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 along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "WindowMaker.h"
34 #include "switchpanel.h"
40 #include <X11/extensions/shape.h>
66 #define BORDER_SPACE 10
68 #define ICON_TILE_SIZE 64
69 #define LABEL_HEIGHT 25
70 #define SCREEN_BORDER_SPACING 2*20
71 #define SCROLL_STEPS (ICON_TILE_SIZE/2)
73 #define ICON_SELECTED (1<<1)
74 #define ICON_DIM (1<<2)
76 static int canReceiveFocus(WWindow
*wwin
)
78 if (wwin
->frame
->workspace
!= w_global
.workspace
.current
)
81 if (wPreferences
.cycle_active_head_only
&&
82 wGetHeadForWindow(wwin
) != wGetHeadForPointerLocation(wwin
->screen_ptr
))
85 if (WFLAGP(wwin
, no_focusable
))
88 if (!wwin
->flags
.mapped
) {
89 if (!wwin
->flags
.shaded
&& !wwin
->flags
.miniaturized
&& !wwin
->flags
.hidden
)
98 static Bool
sameWindowClass(WWindow
*wwin
, WWindow
*curwin
)
100 if (!wwin
->wm_class
|| !curwin
->wm_class
)
102 if (strcmp(wwin
->wm_class
, curwin
->wm_class
))
108 static void changeImage(WSwitchPanel
*panel
, int idecks
, int selected
, Bool dim
, Bool force
)
110 WMFrame
*icon
= NULL
;
111 RImage
*image
= NULL
;
115 /* This whole function is a no-op if we aren't drawing the panel */
116 if (!wPreferences
.swtileImage
)
119 icon
= WMGetFromArray(panel
->icons
, idecks
);
120 image
= WMGetFromArray(panel
->images
, idecks
);
121 flags
= (int) (uintptr_t) WMGetFromArray(panel
->flags
, idecks
);
124 desired
|= ICON_SELECTED
;
128 if (flags
== desired
&& !force
)
131 WMReplaceInArray(panel
->flags
, idecks
, (void *) (uintptr_t) desired
);
133 if (!panel
->bg
&& !panel
->tile
&& !selected
)
134 WMSetFrameRelief(icon
, WRFlat
);
138 int opaq
= (dim
) ? 75 : 255;
143 if (canReceiveFocus(WMGetFromArray(panel
->windows
, idecks
)) < 0)
146 pos
= WMGetViewPosition(WMWidgetView(icon
));
147 back
= panel
->tileTmp
;
149 RCopyArea(back
, panel
->bg
,
150 BORDER_SPACE
+ pos
.x
- panel
->firstVisible
* ICON_TILE_SIZE
,
151 BORDER_SPACE
+ pos
.y
, back
->width
, back
->height
, 0, 0);
154 WMScreen
*wscr
= WMWidgetScreen(icon
);
156 color
.red
= WMRedComponentOfColor(WMGrayColor(wscr
)) >> 8;
157 color
.green
= WMGreenComponentOfColor(WMGrayColor(wscr
)) >> 8;
158 color
.blue
= WMBlueComponentOfColor(WMGrayColor(wscr
)) >> 8;
159 RFillImage(back
, &color
);
164 RCombineArea(back
, tile
, 0, 0, tile
->width
, tile
->height
,
165 (back
->width
- tile
->width
) / 2, (back
->height
- tile
->height
) / 2);
168 RCombineAreaWithOpaqueness(back
, image
, 0, 0, image
->width
, image
->height
,
169 (back
->width
- image
->width
) / 2, (back
->height
- image
->height
) / 2,
172 RConvertImage(panel
->scr
->rcontext
, back
, &p
);
173 XSetWindowBackgroundPixmap(dpy
, WMWidgetXID(icon
), p
);
174 XClearWindow(dpy
, WMWidgetXID(icon
));
178 if (!panel
->bg
&& !panel
->tile
&& selected
)
179 WMSetFrameRelief(icon
, WRSimple
);
182 static void addIconForWindow(WSwitchPanel
*panel
, WMWidget
*parent
, WWindow
*wwin
, int x
, int y
)
184 WMFrame
*icon
= WMCreateFrame(parent
);
185 RImage
*image
= NULL
;
187 WMSetFrameRelief(icon
, WRFlat
);
188 WMResizeWidget(icon
, ICON_TILE_SIZE
, ICON_TILE_SIZE
);
189 WMMoveWidget(icon
, x
, y
);
191 if (!WFLAGP(wwin
, always_user_icon
) && wwin
->net_icon_image
)
192 image
= RRetainImage(wwin
->net_icon_image
);
194 /* get_icon_image() includes the default icon image */
196 image
= get_icon_image(panel
->scr
, wwin
->wm_instance
, wwin
->wm_class
, ICON_TILE_SIZE
);
198 /* We must resize the icon size (~64) to the switchpanel icon size (~48) */
199 image
= wIconValidateIconSize(image
, ICON_SIZE
);
201 WMAddToArray(panel
->images
, image
);
202 WMAddToArray(panel
->icons
, icon
);
205 static void scrollIcons(WSwitchPanel
*panel
, int delta
)
207 int nfirst
= panel
->firstVisible
+ delta
;
209 int count
= WMGetArrayItemCount(panel
->windows
);
212 if (count
<= panel
->visibleCount
)
217 else if (nfirst
>= count
- panel
->visibleCount
)
218 nfirst
= count
- panel
->visibleCount
;
220 if (nfirst
== panel
->firstVisible
)
223 WMMoveWidget(panel
->iconBox
, -nfirst
* ICON_TILE_SIZE
, 0);
225 panel
->firstVisible
= nfirst
;
227 for (i
= panel
->firstVisible
; i
< panel
->firstVisible
+ panel
->visibleCount
; i
++) {
228 if (i
== panel
->current
)
230 dim
= ((int) (uintptr_t) WMGetFromArray(panel
->flags
, i
) & ICON_DIM
);
231 changeImage(panel
, i
, 0, dim
, True
);
240 static RImage
*assemblePuzzleImage(RImage
**images
, int width
, int height
)
242 RImage
*img
= RCreateImage(width
, height
, 1);
254 RFillImage(img
, &color
);
256 tw
= width
- images
[0]->width
- images
[2]->width
;
257 th
= height
- images
[0]->height
- images
[6]->height
;
259 if (tw
<= 0 || th
<= 0)
264 tmp
= RSmoothScaleImage(images
[1], tw
, images
[1]->height
);
265 RCopyArea(img
, tmp
, 0, 0, tmp
->width
, tmp
->height
, images
[0]->width
, 0);
270 tmp
= RSmoothScaleImage(images
[7], tw
, images
[7]->height
);
271 RCopyArea(img
, tmp
, 0, 0, tmp
->width
, tmp
->height
, images
[6]->width
, height
- images
[6]->height
);
276 tmp
= RSmoothScaleImage(images
[3], images
[3]->width
, th
);
277 RCopyArea(img
, tmp
, 0, 0, tmp
->width
, tmp
->height
, 0, images
[0]->height
);
282 tmp
= RSmoothScaleImage(images
[5], images
[5]->width
, th
);
283 RCopyArea(img
, tmp
, 0, 0, tmp
->width
, tmp
->height
, width
- images
[5]->width
, images
[2]->height
);
287 if (tw
> 0 && th
> 0) {
288 tmp
= RSmoothScaleImage(images
[4], tw
, th
);
289 RCopyArea(img
, tmp
, 0, 0, tmp
->width
, tmp
->height
, images
[0]->width
, images
[0]->height
);
294 RCopyArea(img
, images
[0], 0, 0, images
[0]->width
, images
[0]->height
, 0, 0);
295 RCopyArea(img
, images
[2], 0, 0, images
[2]->width
, images
[2]->height
, width
- images
[2]->width
, 0);
296 RCopyArea(img
, images
[6], 0, 0, images
[6]->width
, images
[6]->height
, 0, height
- images
[6]->height
);
297 RCopyArea(img
, images
[8], 0, 0, images
[8]->width
, images
[8]->height
,
298 width
- images
[8]->width
, height
- images
[8]->height
);
303 static RImage
*createBackImage(int width
, int height
)
305 return assemblePuzzleImage(wPreferences
.swbackImage
, width
, height
);
308 static RImage
*getTile(void)
312 if (!wPreferences
.swtileImage
)
315 stile
= RScaleImage(wPreferences
.swtileImage
, ICON_TILE_SIZE
, ICON_TILE_SIZE
);
317 return wPreferences
.swtileImage
;
322 static void drawTitle(WSwitchPanel
*panel
, int idecks
, const char *title
)
325 int width
= WMWidgetWidth(panel
->win
);
329 ntitle
= ShrinkString(panel
->font
, title
, width
- 2 * BORDER_SPACE
);
335 if (strcmp(ntitle
, title
) != 0) {
338 int w
= WMWidthOfString(panel
->font
, ntitle
, strlen(ntitle
));
340 x
= BORDER_SPACE
+ (idecks
- panel
->firstVisible
) * ICON_TILE_SIZE
+
341 ICON_TILE_SIZE
/ 2 - w
/ 2;
342 if (x
< BORDER_SPACE
)
344 else if (x
+ w
> width
- BORDER_SPACE
)
345 x
= width
- BORDER_SPACE
- w
;
349 XClearWindow(dpy
, WMWidgetXID(panel
->win
));
351 WMDrawString(panel
->scr
->wmscreen
,
352 WMWidgetXID(panel
->win
),
353 panel
->white
, panel
->font
,
355 WMWidgetHeight(panel
->win
) - BORDER_SPACE
- LABEL_HEIGHT
+
356 WMFontHeight(panel
->font
) / 2, ntitle
, strlen(ntitle
));
359 WMSetLabelText(panel
->label
, ntitle
);
366 static WMArray
*makeWindowListArray(WWindow
*curwin
, int include_unmapped
, Bool class_only
)
368 WMArray
*windows
= WMCreateArray(10);
372 for (fl
= 0; fl
< 2; fl
++) {
373 for (wwin
= curwin
; wwin
; wwin
= wwin
->prev
) {
374 if (((!fl
&& canReceiveFocus(wwin
) > 0) || (fl
&& canReceiveFocus(wwin
) < 0)) &&
375 (wwin
->flags
.mapped
|| include_unmapped
)) {
377 if (!sameWindowClass(wwin
, curwin
))
380 if (!WFLAGP(wwin
, skip_switchpanel
))
381 WMAddToArray(windows
, wwin
);
385 /* start over from the beginning of the list */
389 for (wwin
= curwin
; wwin
&& wwin
!= curwin
; wwin
= wwin
->prev
) {
390 if (((!fl
&& canReceiveFocus(wwin
) > 0) || (fl
&& canReceiveFocus(wwin
) < 0)) &&
391 (wwin
->flags
.mapped
|| include_unmapped
)) {
393 if (!sameWindowClass(wwin
, curwin
))
395 if (!WFLAGP(wwin
, skip_switchpanel
))
396 WMAddToArray(windows
, wwin
);
404 static WMArray
*makeWindowFlagsArray(int count
)
406 WMArray
*flags
= WMCreateArray(count
);
409 for (i
= 0; i
< count
; i
++)
410 WMAddToArray(flags
, (void *) 0);
415 WSwitchPanel
*wInitSwitchPanel(WScreen
*scr
, WWindow
*curwin
, Bool class_only
)
418 WSwitchPanel
*panel
= wmalloc(sizeof(WSwitchPanel
));
420 int i
, width
, height
, iconsThatFitCount
, count
;
421 WMRect rect
= wGetRectForHead(scr
, wGetHeadForPointerLocation(scr
));
424 panel
->windows
= makeWindowListArray(curwin
, wPreferences
.swtileImage
!= NULL
, class_only
);
425 count
= WMGetArrayItemCount(panel
->windows
);
427 panel
->flags
= makeWindowFlagsArray(count
);
430 WMFreeArray(panel
->windows
);
435 width
= ICON_TILE_SIZE
* count
;
436 iconsThatFitCount
= count
;
438 if (width
> rect
.size
.width
) {
439 iconsThatFitCount
= (rect
.size
.width
- SCREEN_BORDER_SPACING
) / ICON_TILE_SIZE
;
440 width
= iconsThatFitCount
* ICON_TILE_SIZE
;
443 panel
->visibleCount
= iconsThatFitCount
;
445 if (!wPreferences
.swtileImage
)
448 height
= LABEL_HEIGHT
+ ICON_TILE_SIZE
;
450 panel
->tileTmp
= RCreateImage(ICON_TILE_SIZE
, ICON_TILE_SIZE
, 1);
451 panel
->tile
= getTile();
452 if (panel
->tile
&& wPreferences
.swbackImage
[8])
453 panel
->bg
= createBackImage(width
+ 2 * BORDER_SPACE
, height
+ 2 * BORDER_SPACE
);
455 if (!panel
->tileTmp
|| !panel
->tile
) {
457 RReleaseImage(panel
->bg
);
460 RReleaseImage(panel
->tile
);
463 RReleaseImage(panel
->tileTmp
);
464 panel
->tileTmp
= NULL
;
467 panel
->white
= WMWhiteColor(scr
->wmscreen
);
468 panel
->font
= WMBoldSystemFontOfSize(scr
->wmscreen
, 12);
469 panel
->icons
= WMCreateArray(count
);
470 panel
->images
= WMCreateArray(count
);
472 panel
->win
= WMCreateWindow(scr
->wmscreen
, "");
475 WMFrame
*frame
= WMCreateFrame(panel
->win
);
476 WMColor
*darkGray
= WMDarkGrayColor(scr
->wmscreen
);
477 WMSetFrameRelief(frame
, WRSimple
);
478 WMSetViewExpandsToParent(WMWidgetView(frame
), 0, 0, 0, 0);
480 panel
->label
= WMCreateLabel(panel
->win
);
481 WMResizeWidget(panel
->label
, width
, LABEL_HEIGHT
);
482 WMMoveWidget(panel
->label
, BORDER_SPACE
, BORDER_SPACE
+ ICON_TILE_SIZE
+ 5);
483 WMSetLabelRelief(panel
->label
, WRSimple
);
484 WMSetWidgetBackgroundColor(panel
->label
, darkGray
);
485 WMSetLabelFont(panel
->label
, panel
->font
);
486 WMSetLabelTextColor(panel
->label
, panel
->white
);
488 WMReleaseColor(darkGray
);
492 WMResizeWidget(panel
->win
, width
+ 2 * BORDER_SPACE
, height
+ 2 * BORDER_SPACE
);
494 viewport
= WMCreateFrame(panel
->win
);
495 WMResizeWidget(viewport
, width
, ICON_TILE_SIZE
);
496 WMMoveWidget(viewport
, BORDER_SPACE
, BORDER_SPACE
);
497 WMSetFrameRelief(viewport
, WRFlat
);
499 panel
->iconBox
= WMCreateFrame(viewport
);
500 WMMoveWidget(panel
->iconBox
, 0, 0);
501 WMResizeWidget(panel
->iconBox
, ICON_TILE_SIZE
* count
, ICON_TILE_SIZE
);
502 WMSetFrameRelief(panel
->iconBox
, WRFlat
);
504 WM_ITERATE_ARRAY(panel
->windows
, wwin
, i
) {
505 addIconForWindow(panel
, panel
->iconBox
, wwin
, i
* ICON_TILE_SIZE
, 0);
508 WMMapSubwidgets(panel
->win
);
509 WMRealizeWidget(panel
->win
);
511 WM_ITERATE_ARRAY(panel
->windows
, wwin
, i
) {
512 changeImage(panel
, i
, 0, False
, True
);
518 RConvertImageMask(scr
->rcontext
, panel
->bg
, &pixmap
, &mask
, 250);
520 XSetWindowBackgroundPixmap(dpy
, WMWidgetXID(panel
->win
), pixmap
);
523 if (mask
&& w_global
.xext
.shape
.supported
)
524 XShapeCombineMask(dpy
, WMWidgetXID(panel
->win
), ShapeBounding
, 0, 0, mask
, ShapeSet
);
527 XFreePixmap(dpy
, pixmap
);
530 XFreePixmap(dpy
, mask
);
535 center
= wGetPointToCenterRectInHead(scr
, wGetHeadForPointerLocation(scr
),
536 width
+ 2 * BORDER_SPACE
, height
+ 2 * BORDER_SPACE
);
537 WMMoveWidget(panel
->win
, center
.x
, center
.y
);
540 panel
->current
= WMGetFirstInArray(panel
->windows
, curwin
);
541 if (panel
->current
>= 0)
542 changeImage(panel
, panel
->current
, 1, False
, False
);
544 WMMapWidget(panel
->win
);
549 void wSwitchPanelDestroy(WSwitchPanel
*panel
)
555 Window info_win
= panel
->scr
->info_window
;
557 ev
.xclient
.type
= ClientMessage
;
558 ev
.xclient
.message_type
= w_global
.atom
.wm
.ignore_focus_events
;
559 ev
.xclient
.format
= 32;
560 ev
.xclient
.data
.l
[0] = True
;
562 XSendEvent(dpy
, info_win
, True
, EnterWindowMask
, &ev
);
563 WMUnmapWidget(panel
->win
);
565 ev
.xclient
.data
.l
[0] = False
;
566 XSendEvent(dpy
, info_win
, True
, EnterWindowMask
, &ev
);
570 WM_ITERATE_ARRAY(panel
->images
, image
, i
) {
572 RReleaseImage(image
);
574 WMFreeArray(panel
->images
);
578 WMDestroyWidget(panel
->win
);
581 WMFreeArray(panel
->icons
);
584 WMFreeArray(panel
->flags
);
586 WMFreeArray(panel
->windows
);
589 RReleaseImage(panel
->tile
);
592 RReleaseImage(panel
->tileTmp
);
595 RReleaseImage(panel
->bg
);
598 WMReleaseFont(panel
->font
);
601 WMReleaseColor(panel
->white
);
606 WWindow
*wSwitchPanelSelectNext(WSwitchPanel
*panel
, int back
, int ignore_minimized
, Bool class_only
)
608 WWindow
*wwin
, *curwin
, *tmpwin
;
609 int count
= WMGetArrayItemCount(panel
->windows
);
610 int orig
= panel
->current
;
617 if (!wPreferences
.cycle_ignore_minimized
)
618 ignore_minimized
= False
;
620 if (ignore_minimized
&& canReceiveFocus(WMGetFromArray(panel
->windows
, (count
+ panel
->current
) % count
)) < 0)
621 ignore_minimized
= False
;
623 curwin
= WMGetFromArray(panel
->windows
, orig
);
631 panel
->current
= (count
+ panel
->current
) % count
;
632 wwin
= WMGetFromArray(panel
->windows
, panel
->current
);
636 if (panel
->current
== orig
)
638 } while (!sameWindowClass(wwin
, curwin
));
639 } while (ignore_minimized
&& panel
->current
!= orig
&& canReceiveFocus(wwin
) < 0);
641 WM_ITERATE_ARRAY(panel
->windows
, tmpwin
, i
) {
642 if (i
== panel
->current
)
644 if (!class_only
|| sameWindowClass(tmpwin
, curwin
))
645 changeImage(panel
, i
, 0, False
, False
);
649 changeImage(panel
, i
, 0, True
, False
);
654 if (panel
->current
< panel
->firstVisible
)
655 scrollIcons(panel
, panel
->current
- panel
->firstVisible
);
656 else if (panel
->current
- panel
->firstVisible
>= panel
->visibleCount
)
657 scrollIcons(panel
, panel
->current
- panel
->firstVisible
- panel
->visibleCount
+ 1);
660 drawTitle(panel
, panel
->current
, wwin
->frame
->title
);
661 if (panel
->current
!= orig
)
662 changeImage(panel
, orig
, 0, dim
, False
);
663 changeImage(panel
, panel
->current
, 1, False
, False
);
669 WWindow
*wSwitchPanelSelectFirst(WSwitchPanel
*panel
, int back
)
672 int count
= WMGetArrayItemCount(panel
->windows
);
680 panel
->current
= count
- 1;
681 scrollIcons(panel
, count
);
684 scrollIcons(panel
, -count
);
687 wwin
= WMGetFromArray(panel
->windows
, panel
->current
);
688 title
= wwin
->frame
->title
;
691 for (WMArrayFirst(panel
->windows
, &(i
)); (i
) != WANotFound
; WMArrayNext(panel
->windows
, &(i
)))
692 changeImage(panel
, i
, i
== panel
->current
, False
, False
);
694 drawTitle(panel
, panel
->current
, title
);
700 WWindow
*wSwitchPanelHandleEvent(WSwitchPanel
*panel
, XEvent
*event
)
709 if (event
->type
== MotionNotify
) {
710 WM_ITERATE_ARRAY(panel
->icons
, icon
, i
) {
711 if (WMWidgetXID(icon
) == event
->xmotion
.window
) {
718 if (focus
>= 0 && panel
->current
!= focus
) {
721 WM_ITERATE_ARRAY(panel
->windows
, wwin
, i
) {
722 changeImage(panel
, i
, i
== focus
, False
, False
);
724 panel
->current
= focus
;
726 wwin
= WMGetFromArray(panel
->windows
, focus
);
728 drawTitle(panel
, panel
->current
, wwin
->frame
->title
);
736 Window
wSwitchPanelGetWindow(WSwitchPanel
*swpanel
)
741 return WMWidgetXID(swpanel
->win
);