2a0b24dcd2d0b11690f176cf1f3f8ffd978d0472
[mikachu/openbox.git] / openbox / focus_cycle_popup.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    focus_cycle_popup.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
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.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "focus_cycle_popup.h"
21 #include "popup.h"
22 #include "client.h"
23 #include "screen.h"
24 #include "focus.h"
25 #include "openbox.h"
26 #include "window.h"
27 #include "event.h"
28 #include "render/render.h"
29
30 #include <X11/Xlib.h>
31 #include <glib.h>
32
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 */
46 #define TEXT_BORDER 2
47 /* Scroll the list-mode list when the cursor gets within this many rows of the
48    top or bottom */
49 #define SCROLL_MARGIN 4
50
51 typedef struct _ObFocusCyclePopup       ObFocusCyclePopup;
52 typedef struct _ObFocusCyclePopupTarget ObFocusCyclePopupTarget;
53
54 struct _ObFocusCyclePopupTarget
55 {
56     ObClient *client;
57     gchar *text;
58     Window iconwin;
59     /* This is used when the popup is in list mode */
60     Window textwin;
61 };
62
63 struct _ObFocusCyclePopup
64 {
65     ObWindow obwin;
66     Window bg;
67
68     /* This is used when the popup is in icon mode */
69     Window icon_mode_text;
70
71     Window list_mode_up;
72     Window list_mode_down;
73
74     GList *targets;
75     gint n_targets;
76
77     const ObFocusCyclePopupTarget *last_target;
78
79     gint maxtextw;
80
81     /* How are the list is scrolled, in scroll mode */
82     gint scroll;
83
84     RrAppearance *a_bg;
85     RrAppearance *a_text;
86     RrAppearance *a_hilite_text;
87     RrAppearance *a_icon;
88     RrAppearance *a_arrow;
89
90     gboolean mapped;
91     ObFocusCyclePopupMode mode;
92 };
93
94 /*! This popup shows all possible windows */
95 static ObFocusCyclePopup popup;
96 /*! This popup shows a single window */
97 static ObIconPopup *single_popup;
98
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,
107                               const ObClient *c);
108
109 static Window create_window(Window parent, guint bwidth, gulong mask,
110                             XSetWindowAttributes *attr)
111 {
112     return XCreateWindow(obt_display, parent, 0, 0, 1, 1, bwidth,
113                          RrDepth(ob_rr_inst), InputOutput,
114                          RrVisual(ob_rr_inst), mask, attr);
115 }
116
117 void focus_cycle_popup_startup(gboolean reconfig)
118 {
119     XSetWindowAttributes attrib;
120     RrPixel32 *p;
121
122     single_popup = icon_popup_new();
123
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);
130
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;
134
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;
137
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);
141
142     popup.a_icon->texture[0].type = RR_TEXTURE_RGBA;
143
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;
147
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);
152
153     /* create the text window used for the icon-mode popup */
154     popup.icon_mode_text = create_window(popup.bg, 0, 0, NULL);
155
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);
159
160     popup.targets = NULL;
161     popup.n_targets = 0;
162     popup.last_target = NULL;
163
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;
170
171     /* create the hilite under the target icon */
172     {
173         RrPixel32 color;
174         gint x, y, o;
175
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);
179
180         o = 0;
181         for (x = 0; x < HILITE_SIZE; x++)
182             for (y = 0; y < HILITE_SIZE; y++) {
183                 guchar a;
184
185                 if (x < HILITE_WIDTH ||
186                     x >= HILITE_SIZE - HILITE_WIDTH ||
187                     y < HILITE_WIDTH ||
188                     y >= HILITE_SIZE - HILITE_WIDTH)
189                 {
190                     /* the border of the target */
191                     a = 0x88;
192                 } else {
193                     /* the background of the target */
194                     a = 0x22;
195                 }
196
197                 p[o++] = color + (a << RrDefaultAlphaOffset);
198             }
199     }
200
201     stacking_add(INTERNAL_AS_WINDOW(&popup));
202     window_add(&popup.bg, INTERNAL_AS_WINDOW(&popup));
203 }
204
205 void focus_cycle_popup_shutdown(gboolean reconfig)
206 {
207     icon_popup_free(single_popup);
208
209     window_remove(popup.bg);
210     stacking_remove(INTERNAL_AS_WINDOW(&popup));
211
212     while(popup.targets) {
213         ObFocusCyclePopupTarget *t = popup.targets->data;
214
215         g_free(t->text);
216         XDestroyWindow(obt_display, t->iconwin);
217         XDestroyWindow(obt_display, t->textwin);
218
219         popup.targets = g_list_delete_link(popup.targets, popup.targets);
220     }
221
222     g_free(popup.a_icon->texture[1].data.rgba.data);
223     popup.a_icon->texture[1].data.rgba.data = NULL;
224
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);
229
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);
235 }
236
237 static void popup_setup(ObFocusCyclePopup *p, gboolean create_targets,
238                         gboolean iconic_windows, gboolean all_desktops,
239                         gboolean dock_windows, gboolean desktop_windows)
240 {
241     gint maxwidth, n;
242     GList *it;
243
244     g_assert(p->targets == NULL);
245     g_assert(p->n_targets == 0);
246
247     /* make its width to be the width of all the possible titles */
248
249     /* build a list of all the valid focus targets and measure their strings,
250        and count them */
251     maxwidth = 0;
252     n = 0;
253     for (it = g_list_last(focus_order); it; it = g_list_previous(it)) {
254         ObClient *ft = it->data;
255
256         if (focus_valid_target(ft, TRUE,
257                                iconic_windows,
258                                all_desktops,
259                                dock_windows,
260                                desktop_windows))
261         {
262             gchar *text = popup_get_name(ft);
263
264             /* measure */
265             p->a_text->texture[0].data.text.string = text;
266             maxwidth = MAX(maxwidth, RrMinWidth(p->a_text));
267
268             if (!create_targets) {
269                 g_free(text);
270             } else {
271                 ObFocusCyclePopupTarget *t = g_new(ObFocusCyclePopupTarget, 1);
272
273                 t->client = ft;
274                 t->text = text;
275                 t->iconwin = create_window(p->bg, 0, 0, NULL);
276                 t->textwin = create_window(p->bg, 0, 0, NULL);
277
278                 p->targets = g_list_prepend(p->targets, t);
279                 ++n;
280             }
281         }
282     }
283
284     p->n_targets = n;
285     p->maxtextw = maxwidth;
286 }
287
288 static gchar *popup_get_name(ObClient *c)
289 {
290     ObClient *p;
291     gchar *title;
292     const gchar *desk = NULL;
293     gchar *ret;
294
295     /* find our highest direct parent */
296     p = client_search_top_direct_parent(c);
297
298     if (c->desktop != DESKTOP_ALL && c->desktop != screen_desktop)
299         desk = screen_desktop_names[c->desktop];
300
301     title = c->iconic ? c->icon_title : c->title;
302
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;
306
307     if (desk)
308         ret = g_strdup_printf("%s [%s]", title, desk);
309     else
310         ret = g_strdup(title);
311
312     return ret;
313 }
314
315 static void popup_render(ObFocusCyclePopup *p, const ObClient *c)
316 {
317     gint ml, mt, mr, mb;
318     gint l, t, r, b;
319     gint x, y, w, h;
320     Rect *screen_area = NULL;
321     gint rgbax, rgbay, rgbaw, rgbah;
322     gint i;
323     GList *it;
324     const ObFocusCyclePopupTarget *newtarget;
325     gint icons_per_row;
326     gint icon_rows;
327     gint textw, texth;
328     gint selected_pos;
329     gint last_scroll;
330
331     /* vars for icon mode */
332     gint icon_mode_textx;
333     gint icon_mode_texty;
334     gint icons_center_x;
335
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;
341
342     g_assert(p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS ||
343              p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST);
344
345     screen_area = screen_physical_area_active();
346
347     /* get the outside margins */
348     RrMargins(p->a_bg, &ml, &mt, &mr, &mb);
349
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;
355
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 */
363
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)), ICON_SIZE);
368     else
369         texth += TEXT_BORDER * 2;
370
371     if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS) {
372         /* how many icons will fit in that row? make the width fit that */
373         w -= l + r;
374         icons_per_row = (w + HILITE_SIZE - 1) / HILITE_SIZE;
375         w = icons_per_row * HILITE_SIZE + l + r;
376
377         /* how many rows do we need? */
378         icon_rows = (p->n_targets-1) / icons_per_row + 1;
379     } else {
380         /* in list mode, there is one column of icons.. */
381         icons_per_row = 1;
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 */
385                         /
386                         MAX(HILITE_SIZE, texth)); /* height of each row */
387         /* but make sure there is always one */
388         icon_rows = MAX(icon_rows, 1);
389     }
390
391     /* get the text width */
392     textw = w - l - r;
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;
396
397     if (!p->mapped)
398         /* reset the scrolling when the dialog is first shown */
399         p->scroll = 0;
400
401     /* show the scroll arrows when appropriate */
402     if (p->scroll && p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST) {
403         XMapWindow(obt_display, p->list_mode_up);
404         showing_arrows = TRUE;
405     } else
406         XUnmapWindow(obt_display, p->list_mode_up);
407
408     if (p->scroll < p->n_targets - icon_rows &&
409         p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST)
410     {
411         XMapWindow(obt_display, p->list_mode_down);
412         showing_arrows = TRUE;
413     } else
414         XUnmapWindow(obt_display, p->list_mode_down);
415
416     /* find the height of the dialog */
417     h = t + b + (icon_rows * MAX(HILITE_SIZE, texth));
418     if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS)
419         /* in icon mode the text sits below the icons, so make some space */
420         h += OUTSIDE_BORDER + texth;
421     else if (showing_arrows)
422         h += ob_rr_theme->up_arrow_mask->height + OUTSIDE_BORDER
423             + ob_rr_theme->down_arrow_mask->height + OUTSIDE_BORDER;
424
425     /* center the icons if there is less than one row */
426     if (icon_rows == 1)
427         icons_center_x = (w - p->n_targets * HILITE_SIZE) / 2;
428     else
429         icons_center_x = 0;
430
431     if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS) {
432         /* get the position of the text */
433         icon_mode_textx = l;
434         icon_mode_texty = h - texth - b;
435     }
436
437     /* find the position for the popup (include the outer borders) */
438     x = screen_area->x + (screen_area->width -
439                           (w + ob_rr_theme->obwidth * 2)) / 2;
440     y = screen_area->y + (screen_area->height -
441                           (h + ob_rr_theme->obwidth * 2)) / 2;
442
443     /* get the dimensions of the target hilite texture */
444     rgbax = ml;
445     rgbay = mt;
446     rgbaw = w - ml - mr;
447     rgbah = h - mt - mb;
448
449     if (!p->mapped) {
450         /* position the background but don't draw it */
451         XMoveResizeWindow(obt_display, p->bg, x, y, w, h);
452
453         if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS) {
454             /* position the text */
455             XMoveResizeWindow(obt_display, p->icon_mode_text,
456                               icon_mode_textx, icon_mode_texty, textw, texth);
457             XMapWindow(obt_display, popup.icon_mode_text);
458         } else {
459             XUnmapWindow(obt_display, popup.icon_mode_text);
460
461             up_arrow_x = (w - ob_rr_theme->up_arrow_mask->width) / 2;
462             up_arrow_y = t;
463
464             down_arrow_x = (w - ob_rr_theme->down_arrow_mask->width) / 2;
465             down_arrow_y = h - b - ob_rr_theme->down_arrow_mask->height;
466
467             /* position the arrows */
468             XMoveResizeWindow(obt_display, p->list_mode_up,
469                               up_arrow_x, up_arrow_y,
470                               ob_rr_theme->up_arrow_mask->width,
471                               ob_rr_theme->up_arrow_mask->height);
472             XMoveResizeWindow(obt_display, p->list_mode_down,
473                               down_arrow_x, down_arrow_y,
474                               ob_rr_theme->down_arrow_mask->width,
475                               ob_rr_theme->down_arrow_mask->height);
476         }
477     }
478
479     /* find the focused target */
480     newtarget = NULL;
481     for (i = 0, it = p->targets; it; ++i, it = g_list_next(it)) {
482         const ObFocusCyclePopupTarget *target = it->data;
483         if (target->client == c) {
484             /* save the target */
485             newtarget = target;
486             break;
487         }
488     }
489     selected_pos = i;
490
491     /* scroll the list if needed */
492     last_scroll = p->scroll;
493     if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST) {
494         const gint top = p->scroll + SCROLL_MARGIN;
495         const gint bottom = p->scroll + icon_rows - SCROLL_MARGIN;
496         const gint min_scroll = 0;
497         const gint max_scroll = p->n_targets - icon_rows;
498
499         if (top - selected_pos >= 0) {
500             p->scroll -= top - selected_pos + 1;
501             p->scroll = MAX(p->scroll, min_scroll);
502         } else if (selected_pos - bottom >= 0) {
503             p->scroll += selected_pos - bottom + 1;
504             p->scroll = MIN(p->scroll, max_scroll);
505         }
506     }
507
508     g_assert(newtarget != NULL);
509
510     /* * * draw everything * * */
511
512     /* draw the background */
513     if (!p->mapped)
514         RrPaint(p->a_bg, p->bg, w, h);
515
516     /* draw the scroll arrows */
517     if (!p->mapped && p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST) {
518         p->a_arrow->texture[0].data.mask.mask =
519             ob_rr_theme->up_arrow_mask;
520         p->a_arrow->surface.parent = p->a_bg;
521         p->a_arrow->surface.parentx = up_arrow_x;
522         p->a_arrow->surface.parenty = up_arrow_y;
523         RrPaint(p->a_arrow, p->list_mode_up, 
524                 ob_rr_theme->up_arrow_mask->width,
525                 ob_rr_theme->up_arrow_mask->height);
526
527         p->a_arrow->texture[0].data.mask.mask =
528             ob_rr_theme->down_arrow_mask;
529         p->a_arrow->surface.parent = p->a_bg;
530         p->a_arrow->surface.parentx = down_arrow_x;
531         p->a_arrow->surface.parenty = down_arrow_y;
532         RrPaint(p->a_arrow, p->list_mode_down, 
533                 ob_rr_theme->down_arrow_mask->width,
534                 ob_rr_theme->down_arrow_mask->height);
535     }
536
537     /* draw the icons and text */
538     for (i = 0, it = p->targets; it; ++i, it = g_list_next(it)) {
539         const ObFocusCyclePopupTarget *target = it->data;
540
541         /* have to redraw the targetted icon and last targetted icon
542          * to update the hilite */
543         if (!p->mapped || newtarget == target || p->last_target == target ||
544             last_scroll != p->scroll)
545         {
546             /* row and column start from 0 */
547             const gint row = i / icons_per_row - p->scroll;
548             const gint col = i % icons_per_row;
549             const ObClientIcon *icon;
550             gint iconx, icony;
551             gint list_mode_textx, list_mode_texty;
552             RrAppearance *text;
553
554             /* find the coordinates for the icon */
555             iconx = icons_center_x + l + (col * HILITE_SIZE);
556             icony = t + (showing_arrows ? ob_rr_theme->up_arrow_mask->height
557                                           + OUTSIDE_BORDER
558                          : 0)
559                 + (row * MAX(texth, HILITE_SIZE))
560                 + MAX(texth - HILITE_SIZE, 0) / 2;
561
562             /* find the dimensions of the text box */
563             list_mode_textx = iconx + HILITE_SIZE + TEXT_BORDER;
564             list_mode_texty = icony + HILITE_OFFSET;
565
566             /* position the icon */
567             XMoveResizeWindow(obt_display, target->iconwin,
568                               iconx, icony, HILITE_SIZE, HILITE_SIZE);
569
570             /* position the text */
571             if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST)
572                 XMoveResizeWindow(obt_display, target->textwin,
573                                   list_mode_textx, list_mode_texty,
574                                   textw, texth);
575
576             /* show/hide the right windows */
577             if (row >= 0 && row < icon_rows) {
578                 XMapWindow(obt_display, target->iconwin);
579                 if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST)
580                     XMapWindow(obt_display, target->textwin);
581                 else
582                     XUnmapWindow(obt_display, target->textwin);
583             } else {
584                 XUnmapWindow(obt_display, target->textwin);
585                 if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST)
586                     XUnmapWindow(obt_display, target->iconwin);
587                 else
588                     XMapWindow(obt_display, target->iconwin);
589             }
590
591             /* get the icon from the client */
592             icon = client_icon(target->client, ICON_SIZE, ICON_SIZE);
593             p->a_icon->texture[0].data.rgba.width = icon->width;
594             p->a_icon->texture[0].data.rgba.height = icon->height;
595             p->a_icon->texture[0].data.rgba.twidth = ICON_SIZE;
596             p->a_icon->texture[0].data.rgba.theight = ICON_SIZE;
597             p->a_icon->texture[0].data.rgba.tx = HILITE_OFFSET;
598             p->a_icon->texture[0].data.rgba.ty = HILITE_OFFSET;
599             p->a_icon->texture[0].data.rgba.alpha =
600                 target->client->iconic ? OB_ICONIC_ALPHA : 0xff;
601             p->a_icon->texture[0].data.rgba.data = icon->data;
602
603             /* Draw the hilite? */
604             p->a_icon->texture[1].type = (target == newtarget) ?
605                 RR_TEXTURE_RGBA : RR_TEXTURE_NONE;
606
607             /* draw the icon */
608             p->a_icon->surface.parentx = iconx;
609             p->a_icon->surface.parenty = icony;
610             RrPaint(p->a_icon, target->iconwin, HILITE_SIZE, HILITE_SIZE);
611
612             /* draw the text */
613             if (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_LIST ||
614                 target == newtarget)
615             {
616                 text = (target == newtarget) ? p->a_hilite_text : p->a_text;
617                 text->texture[0].data.text.string = target->text;
618                 text->surface.parentx =
619                     p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS ?
620                     icon_mode_textx : list_mode_textx;
621                 text->surface.parenty =
622                     p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS ?
623                     icon_mode_texty : list_mode_texty;
624                 RrPaint(text,
625                         (p->mode == OB_FOCUS_CYCLE_POPUP_MODE_ICONS ?
626                          p->icon_mode_text : target->textwin),
627                         textw, texth);
628             }
629         }
630     }
631
632     p->last_target = newtarget;
633
634     g_free(screen_area);
635
636     XFlush(obt_display);
637 }
638
639 void focus_cycle_popup_show(ObClient *c, gboolean iconic_windows,
640                             gboolean all_desktops, gboolean dock_windows,
641                             gboolean desktop_windows,
642                             ObFocusCyclePopupMode mode)
643 {
644     g_assert(c != NULL);
645
646     if (mode == OB_FOCUS_CYCLE_POPUP_MODE_NONE) {
647         focus_cycle_popup_hide();
648         return;
649     }
650
651     /* do this stuff only when the dialog is first showing */
652     if (!popup.mapped) {
653         popup_setup(&popup, TRUE, iconic_windows, all_desktops, 
654                     dock_windows, desktop_windows);
655         /* this is fixed once the dialog is shown */
656         popup.mode = mode;
657     }
658     g_assert(popup.targets != NULL);
659
660     popup_render(&popup, c);
661
662     if (!popup.mapped) {
663         /* show the dialog */
664         XMapWindow(obt_display, popup.bg);
665         XFlush(obt_display);
666         popup.mapped = TRUE;
667         screen_hide_desktop_popup();
668     }
669 }
670
671 void focus_cycle_popup_hide(void)
672 {
673     gulong ignore_start;
674
675     ignore_start = event_start_ignore_all_enters();
676
677     XUnmapWindow(obt_display, popup.bg);
678     XFlush(obt_display);
679
680     event_end_ignore_all_enters(ignore_start);
681
682     popup.mapped = FALSE;
683
684     while(popup.targets) {
685         ObFocusCyclePopupTarget *t = popup.targets->data;
686
687         g_free(t->text);
688         XDestroyWindow(obt_display, t->iconwin);
689         XDestroyWindow(obt_display, t->textwin);
690         g_free(t);
691
692         popup.targets = g_list_delete_link(popup.targets, popup.targets);
693     }
694     popup.n_targets = 0;
695     popup.last_target = NULL;
696 }
697
698 void focus_cycle_popup_single_show(struct _ObClient *c,
699                                    gboolean iconic_windows,
700                                    gboolean all_desktops,
701                                    gboolean dock_windows,
702                                    gboolean desktop_windows)
703 {
704     gchar *text;
705
706     g_assert(c != NULL);
707
708     /* do this stuff only when the dialog is first showing */
709     if (!popup.mapped) {
710         Rect *a;
711
712         popup_setup(&popup, FALSE, iconic_windows, all_desktops,
713                     dock_windows, desktop_windows);
714         g_assert(popup.targets == NULL);
715
716         /* position the popup */
717         a = screen_physical_area_active();
718         icon_popup_position(single_popup, CenterGravity,
719                             a->x + a->width / 2, a->y + a->height / 2);
720         icon_popup_height(single_popup, POPUP_HEIGHT);
721         icon_popup_min_width(single_popup, POPUP_WIDTH);
722         icon_popup_max_width(single_popup, MAX(a->width/3, POPUP_WIDTH));
723         icon_popup_text_width(single_popup, popup.maxtextw);
724         g_free(a);
725     }
726
727     text = popup_get_name(c);
728     icon_popup_show(single_popup, text, client_icon(c, HILITE_SIZE,
729                                                     HILITE_SIZE));
730     g_free(text);
731     screen_hide_desktop_popup();
732 }
733
734 void focus_cycle_popup_single_hide(void)
735 {
736     icon_popup_hide(single_popup);
737 }