1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 focus_cycle_popup.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 See the COPYING file for a copy of the GNU General Public License.
20 #include "focus_cycle_popup.h"
28 #include "render/render.h"
33 /* Size of the hilite box around a window's icon */
34 #define HILITE_SIZE 40
35 /* Width of the outer ring around the hilite box */
36 #define HILITE_WIDTH 2
37 /* Space between the outer ring around the hilite box and the icon inside it */
38 #define HILITE_MARGIN 1
39 /* Total distance from the edge of the hilite box to the icon inside it */
40 #define HILITE_OFFSET (HILITE_WIDTH + HILITE_MARGIN)
41 /* Size of the icons, which can appear inside or outside of a hilite box */
42 #define ICON_SIZE (HILITE_SIZE - 2*HILITE_OFFSET)
43 /* Margin area around the outside of the dialog */
44 #define OUTSIDE_BORDER 3
45 /* Margin area around the text */
47 /* Scroll the list-mode list when the cursor gets within this many rows of the
49 #define SCROLL_MARGIN 4
51 typedef struct _ObFocusCyclePopup ObFocusCyclePopup
;
52 typedef struct _ObFocusCyclePopupTarget ObFocusCyclePopupTarget
;
54 struct _ObFocusCyclePopupTarget
59 /* This is used when the popup is in list mode */
63 struct _ObFocusCyclePopup
68 /* This is used when the popup is in icon mode */
69 Window icon_mode_text
;
72 Window list_mode_down
;
77 const ObFocusCyclePopupTarget
*last_target
;
81 /* How are the list is scrolled, in scroll mode */
86 RrAppearance
*a_hilite_text
;
88 RrAppearance
*a_arrow
;
91 ObFocusCyclePopupMode mode
;
94 /*! This popup shows all possible windows */
95 static ObFocusCyclePopup popup
;
96 /*! This popup shows a single window */
97 static ObIconPopup
*single_popup
;
99 static gchar
*popup_get_name (ObClient
*c
);
100 static void popup_setup (ObFocusCyclePopup
*p
,
101 gboolean create_targets
,
102 gboolean iconic_windows
,
103 gboolean all_desktops
,
104 gboolean dock_windows
,
105 gboolean desktop_windows
);
106 static void popup_render (ObFocusCyclePopup
*p
,
109 static Window
create_window(Window parent
, guint bwidth
, gulong mask
,
110 XSetWindowAttributes
*attr
)
112 return XCreateWindow(obt_display
, parent
, 0, 0, 1, 1, bwidth
,
113 RrDepth(ob_rr_inst
), InputOutput
,
114 RrVisual(ob_rr_inst
), mask
, attr
);
117 void focus_cycle_popup_startup(gboolean reconfig
)
119 XSetWindowAttributes attrib
;
122 single_popup
= icon_popup_new();
124 popup
.obwin
.type
= OB_WINDOW_CLASS_INTERNAL
;
125 popup
.a_bg
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_bg
);
126 popup
.a_hilite_text
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_label
);
127 popup
.a_text
= RrAppearanceCopy(ob_rr_theme
->a_unfocused_label
);
128 popup
.a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear
);
129 popup
.a_arrow
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
131 popup
.a_hilite_text
->surface
.parent
= popup
.a_bg
;
132 popup
.a_text
->surface
.parent
= popup
.a_bg
;
133 popup
.a_icon
->surface
.parent
= popup
.a_bg
;
135 popup
.a_text
->texture
[0].data
.text
.justify
= RR_JUSTIFY_LEFT
;
136 popup
.a_hilite_text
->texture
[0].data
.text
.justify
= RR_JUSTIFY_LEFT
;
138 /* 2 textures. texture[0] is the icon. texture[1] is the hilight, and
139 may or may not be used */
140 RrAppearanceAddTextures(popup
.a_icon
, 2);
142 popup
.a_icon
->texture
[0].type
= RR_TEXTURE_RGBA
;
144 popup
.a_arrow
->texture
[0].type
= RR_TEXTURE_MASK
;
145 popup
.a_arrow
->texture
[0].data
.mask
.color
=
146 ob_rr_theme
->osd_color
;
148 attrib
.override_redirect
= True
;
149 attrib
.border_pixel
=RrColorPixel(ob_rr_theme
->osd_border_color
);
150 popup
.bg
= create_window(obt_root(ob_screen
), ob_rr_theme
->obwidth
,
151 CWOverrideRedirect
| CWBorderPixel
, &attrib
);
153 /* create the text window used for the icon-mode popup */
154 popup
.icon_mode_text
= create_window(popup
.bg
, 0, 0, NULL
);
156 /* create the windows for the up and down arrows */
157 popup
.list_mode_up
= create_window(popup
.bg
, 0, 0, NULL
);
158 popup
.list_mode_down
= create_window(popup
.bg
, 0, 0, NULL
);
160 popup
.targets
= NULL
;
162 popup
.last_target
= NULL
;
164 /* set up the hilite texture for the icon */
165 popup
.a_icon
->texture
[1].data
.rgba
.width
= HILITE_SIZE
;
166 popup
.a_icon
->texture
[1].data
.rgba
.height
= HILITE_SIZE
;
167 popup
.a_icon
->texture
[1].data
.rgba
.alpha
= 0xff;
168 p
= g_new(RrPixel32
, HILITE_SIZE
* HILITE_SIZE
);
169 popup
.a_icon
->texture
[1].data
.rgba
.data
= p
;
171 /* create the hilite under the target icon */
176 color
= ((ob_rr_theme
->osd_color
->r
& 0xff) << RrDefaultRedOffset
) +
177 ((ob_rr_theme
->osd_color
->g
& 0xff) << RrDefaultGreenOffset
) +
178 ((ob_rr_theme
->osd_color
->b
& 0xff) << RrDefaultBlueOffset
);
181 for (x
= 0; x
< HILITE_SIZE
; x
++)
182 for (y
= 0; y
< HILITE_SIZE
; y
++) {
185 if (x
< HILITE_WIDTH
||
186 x
>= HILITE_SIZE
- HILITE_WIDTH
||
188 y
>= HILITE_SIZE
- HILITE_WIDTH
)
190 /* the border of the target */
193 /* the background of the target */
197 p
[o
++] = color
+ (a
<< RrDefaultAlphaOffset
);
201 stacking_add(INTERNAL_AS_WINDOW(&popup
));
202 window_add(&popup
.bg
, INTERNAL_AS_WINDOW(&popup
));
205 void focus_cycle_popup_shutdown(gboolean reconfig
)
207 icon_popup_free(single_popup
);
209 window_remove(popup
.bg
);
210 stacking_remove(INTERNAL_AS_WINDOW(&popup
));
212 while(popup
.targets
) {
213 ObFocusCyclePopupTarget
*t
= popup
.targets
->data
;
216 XDestroyWindow(obt_display
, t
->iconwin
);
217 XDestroyWindow(obt_display
, t
->textwin
);
219 popup
.targets
= g_list_delete_link(popup
.targets
, popup
.targets
);
222 g_free(popup
.a_icon
->texture
[1].data
.rgba
.data
);
223 popup
.a_icon
->texture
[1].data
.rgba
.data
= NULL
;
225 XDestroyWindow(obt_display
, popup
.list_mode_up
);
226 XDestroyWindow(obt_display
, popup
.list_mode_down
);
227 XDestroyWindow(obt_display
, popup
.icon_mode_text
);
228 XDestroyWindow(obt_display
, popup
.bg
);
230 RrAppearanceFree(popup
.a_arrow
);
231 RrAppearanceFree(popup
.a_icon
);
232 RrAppearanceFree(popup
.a_hilite_text
);
233 RrAppearanceFree(popup
.a_text
);
234 RrAppearanceFree(popup
.a_bg
);
237 static void popup_setup(ObFocusCyclePopup
*p
, gboolean create_targets
,
238 gboolean iconic_windows
, gboolean all_desktops
,
239 gboolean dock_windows
, gboolean desktop_windows
)
244 g_assert(p
->targets
== NULL
);
245 g_assert(p
->n_targets
== 0);
247 /* make its width to be the width of all the possible titles */
249 /* build a list of all the valid focus targets and measure their strings,
253 for (it
= g_list_last(focus_order
); it
; it
= g_list_previous(it
)) {
254 ObClient
*ft
= it
->data
;
256 if (focus_valid_target(ft
, TRUE
,
262 gchar
*text
= popup_get_name(ft
);
265 p
->a_text
->texture
[0].data
.text
.string
= text
;
266 maxwidth
= MAX(maxwidth
, RrMinWidth(p
->a_text
));
268 if (!create_targets
) {
271 ObFocusCyclePopupTarget
*t
= g_new(ObFocusCyclePopupTarget
, 1);
275 t
->iconwin
= create_window(p
->bg
, 0, 0, NULL
);
276 t
->textwin
= create_window(p
->bg
, 0, 0, NULL
);
278 p
->targets
= g_list_prepend(p
->targets
, t
);
285 p
->maxtextw
= maxwidth
;
288 static gchar
*popup_get_name(ObClient
*c
)
292 const gchar
*desk
= NULL
;
295 /* find our highest direct parent */
296 p
= client_search_top_direct_parent(c
);
298 if (c
->desktop
!= DESKTOP_ALL
&& c
->desktop
!= screen_desktop
)
299 desk
= screen_desktop_names
[c
->desktop
];
301 title
= c
->iconic
? c
->icon_title
: c
->title
;
303 /* use the transient's parent's title/icon if we don't have one */
304 if (p
!= c
&& title
[0] == '\0')
305 title
= p
->iconic
? p
->icon_title
: p
->title
;
308 ret
= g_strdup_printf("%s [%s]", title
, desk
);
310 ret
= g_strdup(title
);
315 static void popup_render(ObFocusCyclePopup
*p
, const ObClient
*c
)
320 Rect
*screen_area
= NULL
;
321 gint rgbax
, rgbay
, rgbaw
, rgbah
;
324 const ObFocusCyclePopupTarget
*newtarget
;
331 /* vars for icon mode */
332 gint icon_mode_textx
;
333 gint icon_mode_texty
;
336 /* vars for list mode */
337 gint list_mode_icon_column_w
= HILITE_SIZE
+ OUTSIDE_BORDER
;
338 gint up_arrow_x
, down_arrow_x
;
339 gint up_arrow_y
, down_arrow_y
;
340 gboolean showing_arrows
= FALSE
;
342 g_assert(p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
||
343 p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
);
345 screen_area
= screen_physical_area_active();
347 /* get the outside margins */
348 RrMargins(p
->a_bg
, &ml
, &mt
, &mr
, &mb
);
350 /* get our outside borders */
351 l
= ml
+ OUTSIDE_BORDER
;
352 r
= mr
+ OUTSIDE_BORDER
;
353 t
= mt
+ OUTSIDE_BORDER
;
354 b
= mb
+ OUTSIDE_BORDER
;
356 /* get the width from the text and keep it within limits */
357 w
= l
+ r
+ p
->maxtextw
;
358 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
359 /* when in list mode, there are icons down the side */
360 w
+= list_mode_icon_column_w
;
361 w
= MIN(w
, MAX(screen_area
->width
/3, POPUP_WIDTH
)); /* max width */
362 w
= MAX(w
, POPUP_WIDTH
); /* min width */
364 /* get the text height */
365 texth
= RrMinHeight(p
->a_hilite_text
);
366 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
367 texth
= MAX(MAX(texth
, RrMinHeight(p
->a_text
)), HILITE_SIZE
);
369 texth
+= TEXT_BORDER
* 2;
371 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
) {
372 /* how many icons will fit in that row? make the width fit that */
374 icons_per_row
= (w
+ HILITE_SIZE
- 1) / HILITE_SIZE
;
375 w
= icons_per_row
* HILITE_SIZE
+ l
+ r
;
377 /* how many rows do we need? */
378 icon_rows
= (p
->n_targets
-1) / icons_per_row
+ 1;
380 /* in list mode, there is one column of icons.. */
382 /* maximum is 80% of the screen height */
383 icon_rows
= MIN(p
->n_targets
,
384 (4*screen_area
->height
/5) /* 80% of the screen */
386 MAX(HILITE_SIZE
, texth
)); /* height of each row */
387 /* but make sure there is always one */
388 icon_rows
= MAX(icon_rows
, 1);
391 /* get the text width */
393 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
394 /* leave space on the side for the icons */
395 textw
-= list_mode_icon_column_w
;
398 /* reset the scrolling when the dialog is first shown */
401 /* find the height of the dialog */
402 h
= t
+ b
+ (icon_rows
* MAX(HILITE_SIZE
, texth
));
403 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
)
404 /* in icon mode the text sits below the icons, so make some space */
405 h
+= OUTSIDE_BORDER
+ texth
;
407 /* find the focused target */
409 for (i
= 0, it
= p
->targets
; it
; ++i
, it
= g_list_next(it
)) {
410 const ObFocusCyclePopupTarget
*target
= it
->data
;
411 if (target
->client
== c
) {
412 /* save the target */
418 g_assert(newtarget
!= NULL
);
420 /* scroll the list if needed */
421 last_scroll
= p
->scroll
;
422 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
) {
423 const gint top
= p
->scroll
+ SCROLL_MARGIN
;
424 const gint bottom
= p
->scroll
+ icon_rows
- SCROLL_MARGIN
;
425 const gint min_scroll
= 0;
426 const gint max_scroll
= p
->n_targets
- icon_rows
;
428 if (top
- selected_pos
>= 0) {
429 p
->scroll
-= top
- selected_pos
+ 1;
430 p
->scroll
= MAX(p
->scroll
, min_scroll
);
431 } else if (selected_pos
- bottom
>= 0) {
432 p
->scroll
+= selected_pos
- bottom
+ 1;
433 p
->scroll
= MIN(p
->scroll
, max_scroll
);
437 /* show the scroll arrows when appropriate */
438 if (p
->scroll
&& p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
) {
439 XMapWindow(obt_display
, p
->list_mode_up
);
440 showing_arrows
= TRUE
;
442 XUnmapWindow(obt_display
, p
->list_mode_up
);
444 if (p
->scroll
< p
->n_targets
- icon_rows
&&
445 p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
447 XMapWindow(obt_display
, p
->list_mode_down
);
448 showing_arrows
= TRUE
;
450 XUnmapWindow(obt_display
, p
->list_mode_down
);
452 /* make space for the arrows */
454 h
+= ob_rr_theme
->up_arrow_mask
->height
+ OUTSIDE_BORDER
455 + ob_rr_theme
->down_arrow_mask
->height
+ OUTSIDE_BORDER
;
457 /* center the icons if there is less than one row */
458 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
&& icon_rows
== 1)
459 icons_center_x
= (w
- p
->n_targets
* HILITE_SIZE
) / 2;
463 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
) {
464 /* get the position of the text */
466 icon_mode_texty
= h
- texth
- b
;
469 /* find the position for the popup (include the outer borders) */
470 x
= screen_area
->x
+ (screen_area
->width
-
471 (w
+ ob_rr_theme
->obwidth
* 2)) / 2;
472 y
= screen_area
->y
+ (screen_area
->height
-
473 (h
+ ob_rr_theme
->obwidth
* 2)) / 2;
475 /* get the dimensions of the target hilite texture */
482 /* position the background but don't draw it */
483 XMoveResizeWindow(obt_display
, p
->bg
, x
, y
, w
, h
);
485 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
) {
486 /* position the text */
487 XMoveResizeWindow(obt_display
, p
->icon_mode_text
,
488 icon_mode_textx
, icon_mode_texty
, textw
, texth
);
489 XMapWindow(obt_display
, popup
.icon_mode_text
);
491 XUnmapWindow(obt_display
, popup
.icon_mode_text
);
493 up_arrow_x
= (w
- ob_rr_theme
->up_arrow_mask
->width
) / 2;
496 down_arrow_x
= (w
- ob_rr_theme
->down_arrow_mask
->width
) / 2;
497 down_arrow_y
= h
- b
- ob_rr_theme
->down_arrow_mask
->height
;
499 /* position the arrows */
500 XMoveResizeWindow(obt_display
, p
->list_mode_up
,
501 up_arrow_x
, up_arrow_y
,
502 ob_rr_theme
->up_arrow_mask
->width
,
503 ob_rr_theme
->up_arrow_mask
->height
);
504 XMoveResizeWindow(obt_display
, p
->list_mode_down
,
505 down_arrow_x
, down_arrow_y
,
506 ob_rr_theme
->down_arrow_mask
->width
,
507 ob_rr_theme
->down_arrow_mask
->height
);
511 /* * * draw everything * * */
513 /* draw the background */
515 RrPaint(p
->a_bg
, p
->bg
, w
, h
);
517 /* draw the scroll arrows */
518 if (!p
->mapped
&& p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
) {
519 p
->a_arrow
->texture
[0].data
.mask
.mask
=
520 ob_rr_theme
->up_arrow_mask
;
521 p
->a_arrow
->surface
.parent
= p
->a_bg
;
522 p
->a_arrow
->surface
.parentx
= up_arrow_x
;
523 p
->a_arrow
->surface
.parenty
= up_arrow_y
;
524 RrPaint(p
->a_arrow
, p
->list_mode_up
,
525 ob_rr_theme
->up_arrow_mask
->width
,
526 ob_rr_theme
->up_arrow_mask
->height
);
528 p
->a_arrow
->texture
[0].data
.mask
.mask
=
529 ob_rr_theme
->down_arrow_mask
;
530 p
->a_arrow
->surface
.parent
= p
->a_bg
;
531 p
->a_arrow
->surface
.parentx
= down_arrow_x
;
532 p
->a_arrow
->surface
.parenty
= down_arrow_y
;
533 RrPaint(p
->a_arrow
, p
->list_mode_down
,
534 ob_rr_theme
->down_arrow_mask
->width
,
535 ob_rr_theme
->down_arrow_mask
->height
);
538 /* draw the icons and text */
539 for (i
= 0, it
= p
->targets
; it
; ++i
, it
= g_list_next(it
)) {
540 const ObFocusCyclePopupTarget
*target
= it
->data
;
542 /* have to redraw the targetted icon and last targetted icon
543 * to update the hilite */
544 if (!p
->mapped
|| newtarget
== target
|| p
->last_target
== target
||
545 last_scroll
!= p
->scroll
)
547 /* row and column start from 0 */
548 const gint row
= i
/ icons_per_row
- p
->scroll
;
549 const gint col
= i
% icons_per_row
;
550 const ObClientIcon
*icon
;
552 gint list_mode_textx
, list_mode_texty
;
555 /* find the coordinates for the icon */
556 iconx
= icons_center_x
+ l
+ (col
* HILITE_SIZE
);
557 icony
= t
+ (showing_arrows
? ob_rr_theme
->up_arrow_mask
->height
560 + (row
* MAX(texth
, HILITE_SIZE
))
561 + MAX(texth
- HILITE_SIZE
, 0) / 2;
563 /* find the dimensions of the text box */
564 list_mode_textx
= iconx
+ HILITE_SIZE
+ TEXT_BORDER
;
565 list_mode_texty
= icony
;
567 /* position the icon */
568 XMoveResizeWindow(obt_display
, target
->iconwin
,
569 iconx
, icony
, HILITE_SIZE
, HILITE_SIZE
);
571 /* position the text */
572 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
573 XMoveResizeWindow(obt_display
, target
->textwin
,
574 list_mode_textx
, list_mode_texty
,
577 /* show/hide the right windows */
578 if (row
>= 0 && row
< icon_rows
) {
579 XMapWindow(obt_display
, target
->iconwin
);
580 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
581 XMapWindow(obt_display
, target
->textwin
);
583 XUnmapWindow(obt_display
, target
->textwin
);
585 XUnmapWindow(obt_display
, target
->textwin
);
586 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
)
587 XUnmapWindow(obt_display
, target
->iconwin
);
589 XMapWindow(obt_display
, target
->iconwin
);
592 /* get the icon from the client */
593 icon
= client_icon(target
->client
, ICON_SIZE
, ICON_SIZE
);
594 p
->a_icon
->texture
[0].data
.rgba
.width
= icon
->width
;
595 p
->a_icon
->texture
[0].data
.rgba
.height
= icon
->height
;
596 p
->a_icon
->texture
[0].data
.rgba
.twidth
= ICON_SIZE
;
597 p
->a_icon
->texture
[0].data
.rgba
.theight
= ICON_SIZE
;
598 p
->a_icon
->texture
[0].data
.rgba
.tx
= HILITE_OFFSET
;
599 p
->a_icon
->texture
[0].data
.rgba
.ty
= HILITE_OFFSET
;
600 p
->a_icon
->texture
[0].data
.rgba
.alpha
=
601 target
->client
->iconic
? OB_ICONIC_ALPHA
: 0xff;
602 p
->a_icon
->texture
[0].data
.rgba
.data
= icon
->data
;
604 /* Draw the hilite? */
605 p
->a_icon
->texture
[1].type
= (target
== newtarget
) ?
606 RR_TEXTURE_RGBA
: RR_TEXTURE_NONE
;
609 p
->a_icon
->surface
.parentx
= iconx
;
610 p
->a_icon
->surface
.parenty
= icony
;
611 RrPaint(p
->a_icon
, target
->iconwin
, HILITE_SIZE
, HILITE_SIZE
);
614 if (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_LIST
||
617 text
= (target
== newtarget
) ? p
->a_hilite_text
: p
->a_text
;
618 text
->texture
[0].data
.text
.string
= target
->text
;
619 text
->surface
.parentx
=
620 p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
?
621 icon_mode_textx
: list_mode_textx
;
622 text
->surface
.parenty
=
623 p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
?
624 icon_mode_texty
: list_mode_texty
;
626 (p
->mode
== OB_FOCUS_CYCLE_POPUP_MODE_ICONS
?
627 p
->icon_mode_text
: target
->textwin
),
633 p
->last_target
= newtarget
;
640 void focus_cycle_popup_show(ObClient
*c
, gboolean iconic_windows
,
641 gboolean all_desktops
, gboolean dock_windows
,
642 gboolean desktop_windows
,
643 ObFocusCyclePopupMode mode
)
647 if (mode
== OB_FOCUS_CYCLE_POPUP_MODE_NONE
) {
648 focus_cycle_popup_hide();
652 /* do this stuff only when the dialog is first showing */
654 popup_setup(&popup
, TRUE
, iconic_windows
, all_desktops
,
655 dock_windows
, desktop_windows
);
656 /* this is fixed once the dialog is shown */
659 g_assert(popup
.targets
!= NULL
);
661 popup_render(&popup
, c
);
664 /* show the dialog */
665 XMapWindow(obt_display
, popup
.bg
);
668 screen_hide_desktop_popup();
672 void focus_cycle_popup_hide(void)
676 ignore_start
= event_start_ignore_all_enters();
678 XUnmapWindow(obt_display
, popup
.bg
);
681 event_end_ignore_all_enters(ignore_start
);
683 popup
.mapped
= FALSE
;
685 while(popup
.targets
) {
686 ObFocusCyclePopupTarget
*t
= popup
.targets
->data
;
689 XDestroyWindow(obt_display
, t
->iconwin
);
690 XDestroyWindow(obt_display
, t
->textwin
);
693 popup
.targets
= g_list_delete_link(popup
.targets
, popup
.targets
);
696 popup
.last_target
= NULL
;
699 void focus_cycle_popup_single_show(struct _ObClient
*c
,
700 gboolean iconic_windows
,
701 gboolean all_desktops
,
702 gboolean dock_windows
,
703 gboolean desktop_windows
)
709 /* do this stuff only when the dialog is first showing */
713 popup_setup(&popup
, FALSE
, iconic_windows
, all_desktops
,
714 dock_windows
, desktop_windows
);
715 g_assert(popup
.targets
== NULL
);
717 /* position the popup */
718 a
= screen_physical_area_active();
719 icon_popup_position(single_popup
, CenterGravity
,
720 a
->x
+ a
->width
/ 2, a
->y
+ a
->height
/ 2);
721 icon_popup_height(single_popup
, POPUP_HEIGHT
);
722 icon_popup_min_width(single_popup
, POPUP_WIDTH
);
723 icon_popup_max_width(single_popup
, MAX(a
->width
/3, POPUP_WIDTH
));
724 icon_popup_text_width(single_popup
, popup
.maxtextw
);
728 text
= popup_get_name(c
);
729 icon_popup_show(single_popup
, text
, client_icon(c
, HILITE_SIZE
,
732 screen_hide_desktop_popup();
735 void focus_cycle_popup_single_hide(void)
737 icon_popup_hide(single_popup
);