1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 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.
28 #include "obrender/render.h"
29 #include "obrender/theme.h"
31 ObPopup
*popup_new(void)
33 XSetWindowAttributes attrib
;
34 ObPopup
*self
= g_slice_new0(ObPopup
);
36 self
->obwin
.type
= OB_WINDOW_CLASS_INTERNAL
;
37 self
->gravity
= NorthWestGravity
;
38 self
->x
= self
->y
= self
->textw
= self
->h
= 0;
39 self
->a_bg
= RrAppearanceCopy(ob_rr_theme
->osd_bg
);
40 self
->a_text
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_label
);
41 self
->iconwm
= self
->iconhm
= 1;
43 attrib
.override_redirect
= True
;
44 self
->bg
= XCreateWindow(obt_display
, obt_root(ob_screen
),
45 0, 0, 1, 1, 0, RrDepth(ob_rr_inst
),
46 InputOutput
, RrVisual(ob_rr_inst
),
47 CWOverrideRedirect
, &attrib
);
49 self
->text
= XCreateWindow(obt_display
, self
->bg
,
50 0, 0, 1, 1, 0, RrDepth(ob_rr_inst
),
51 InputOutput
, RrVisual(ob_rr_inst
), 0, NULL
);
53 XSetWindowBorderWidth(obt_display
, self
->bg
, ob_rr_theme
->obwidth
);
54 XSetWindowBorder(obt_display
, self
->bg
,
55 RrColorPixel(ob_rr_theme
->osd_border_color
));
57 XMapWindow(obt_display
, self
->text
);
59 stacking_add(INTERNAL_AS_WINDOW(self
));
60 window_add(&self
->bg
, INTERNAL_AS_WINDOW(self
));
64 void popup_free(ObPopup
*self
)
67 popup_hide(self
); /* make sure it's not showing or is being delayed and
69 XDestroyWindow(obt_display
, self
->bg
);
70 XDestroyWindow(obt_display
, self
->text
);
71 RrAppearanceFree(self
->a_bg
);
72 RrAppearanceFree(self
->a_text
);
73 window_remove(self
->bg
);
74 stacking_remove(self
);
75 g_slice_free(ObPopup
, self
);
79 void popup_position(ObPopup
*self
, gint gravity
, gint x
, gint y
)
81 self
->gravity
= gravity
;
86 void popup_text_width(ObPopup
*self
, gint w
)
91 void popup_min_width(ObPopup
*self
, gint minw
)
96 void popup_max_width(ObPopup
*self
, gint maxw
)
101 void popup_height(ObPopup
*self
, gint h
)
105 /* don't let the height be smaller than the text */
106 texth
= RrMinHeight(self
->a_text
) + ob_rr_theme
->paddingy
* 2;
107 self
->h
= MAX(h
, texth
);
110 void popup_text_width_to_string(ObPopup
*self
, gchar
*text
)
112 if (text
[0] != '\0') {
113 self
->a_text
->texture
[0].data
.text
.string
= text
;
114 self
->textw
= RrMinWidth(self
->a_text
);
119 void popup_height_to_string(ObPopup
*self
, gchar
*text
)
121 self
->h
= RrMinHeight(self
->a_text
) + ob_rr_theme
->paddingy
* 2;
124 void popup_text_width_to_strings(ObPopup
*self
, gchar
**strings
, gint num
)
129 for (i
= 0; i
< num
; ++i
) {
130 popup_text_width_to_string(self
, strings
[i
]);
131 maxw
= MAX(maxw
, self
->textw
);
136 void popup_set_text_align(ObPopup
*self
, RrJustify align
)
138 self
->a_text
->texture
[0].data
.text
.justify
= align
;
141 static gboolean
popup_show_timeout(gpointer data
)
143 ObPopup
*self
= data
;
145 XMapWindow(obt_display
, self
->bg
);
146 stacking_raise(INTERNAL_AS_WINDOW(self
));
148 self
->delay_mapped
= FALSE
;
149 self
->delay_timer
= 0;
151 return FALSE
; /* don't repeat */
154 void popup_delay_show(ObPopup
*self
, gulong msec
, gchar
*text
)
159 gint emptyx
, emptyy
; /* empty space between elements */
160 gint textx
, texty
, textw
, texth
;
161 gint iconx
, icony
, iconw
, iconh
;
164 gboolean hasicon
= self
->hasicon
;
166 /* when there is no icon and the text is not parent relative, then
167 fill the whole dialog with the text appearance, don't use the bg at all
169 if (hasicon
|| self
->a_text
->surface
.grad
== RR_SURFACE_PARENTREL
)
170 RrMargins(self
->a_bg
, &l
, &t
, &r
, &b
);
174 /* set up the textures */
175 self
->a_text
->texture
[0].data
.text
.string
= text
;
177 /* measure the text out */
178 if (text
[0] != '\0') {
179 RrMinSize(self
->a_text
, &textw
, &texth
);
182 texth
= RrMinHeight(self
->a_text
);
185 /* get the height, which is also used for the icon width */
186 emptyy
= t
+ b
+ ob_rr_theme
->paddingy
* 2;
188 texth
= self
->h
- emptyy
;
189 h
= texth
* self
->iconhm
+ emptyy
;
194 iconx
= textx
= l
+ ob_rr_theme
->paddingx
;
196 emptyx
= l
+ r
+ ob_rr_theme
->paddingx
* 2;
198 iconw
= texth
* self
->iconwm
;
199 iconh
= texth
* self
->iconhm
;
200 textx
+= iconw
+ ob_rr_theme
->paddingx
;
202 emptyx
+= ob_rr_theme
->paddingx
; /* between the icon and text */
203 icony
= (h
- iconh
- emptyy
) / 2 + t
+ ob_rr_theme
->paddingy
;
207 texty
= (h
- texth
- emptyy
) / 2 + t
+ ob_rr_theme
->paddingy
;
209 /* when there is no icon, then fill the whole dialog with the text
220 if (texth
> textw
) textw
= texth
;
221 popup_set_text_align(self
, RR_JUSTIFY_CENTER
);
223 w
= textw
+ emptyx
+ iconw
;
224 /* cap it at maxw/minw */
225 if (self
->maxw
) w
= MIN(w
, self
->maxw
);
226 if (self
->minw
) w
= MAX(w
, self
->minw
);
227 textw
= w
- emptyx
- iconw
;
229 /* sanity checks to avoid crashes! */
232 if (texth
< 1) texth
= 1;
234 /* set up the x coord */
236 switch (self
->gravity
) {
237 case NorthGravity
: case CenterGravity
: case SouthGravity
:
240 case NorthEastGravity
: case EastGravity
: case SouthEastGravity
:
245 /* set up the y coord */
247 switch (self
->gravity
) {
248 case WestGravity
: case CenterGravity
: case EastGravity
:
251 case SouthWestGravity
: case SouthGravity
: case SouthEastGravity
:
256 /* If the popup belongs to a client (eg, the moveresize popup), get
257 * the monitor for that client, otherwise do other stuff */
259 m
= client_monitor(self
->client
);
261 /* Find the monitor which contains the biggest part of the popup.
262 * If the popup is completely off screen, limit it to the intersection
263 * of all monitors and then try again. If it's still off screen, put it
265 RECT_SET(mon
, x
, y
, w
, h
);
266 m
= screen_find_monitor(&mon
);
268 area
= screen_physical_area_monitor(m
);
270 x
= MAX(MIN(x
, area
->x
+area
->width
-w
), area
->x
);
271 y
= MAX(MIN(y
, area
->y
+area
->height
-h
), area
->y
);
273 if (m
== screen_num_monitors
) {
274 RECT_SET(mon
, x
, y
, w
, h
);
275 m
= screen_find_monitor(&mon
);
276 if (m
== screen_num_monitors
)
278 area
= screen_physical_area_monitor(m
);
280 x
= MAX(MIN(x
, area
->x
+area
->width
-w
), area
->x
);
281 y
= MAX(MIN(y
, area
->y
+area
->height
-h
), area
->y
);
284 /* set the windows/appearances up */
285 XMoveResizeWindow(obt_display
, self
->bg
, x
, y
, w
, h
);
286 /* when there is no icon and the text is not parent relative, then
287 fill the whole dialog with the text appearance, don't use the bg at all
289 if (hasicon
|| self
->a_text
->surface
.grad
== RR_SURFACE_PARENTREL
)
290 RrPaint(self
->a_bg
, self
->bg
, w
, h
);
293 self
->a_text
->surface
.parent
= self
->a_bg
;
294 self
->a_text
->surface
.parentx
= textx
;
295 self
->a_text
->surface
.parenty
= texty
;
296 XMoveResizeWindow(obt_display
, self
->text
, textx
, texty
, textw
, texth
);
297 RrPaint(self
->a_text
, self
->text
, textw
, texth
);
301 self
->draw_icon(iconx
, icony
, iconw
, iconh
, self
->draw_icon_data
);
303 /* do the actual showing */
306 /* don't kill previous show timers */
307 if (!self
->delay_mapped
) {
309 g_timeout_add(msec
, popup_show_timeout
, self
);
310 self
->delay_mapped
= TRUE
;
313 popup_show_timeout(self
);
318 void popup_hide(ObPopup
*self
)
323 /* kill enter events cause by this unmapping */
324 ignore_start
= event_start_ignore_all_enters();
326 XUnmapWindow(obt_display
, self
->bg
);
327 self
->mapped
= FALSE
;
329 event_end_ignore_all_enters(ignore_start
);
330 } else if (self
->delay_mapped
) {
331 g_source_remove(self
->delay_timer
);
332 self
->delay_timer
= 0;
333 self
->delay_mapped
= FALSE
;
337 static void icon_popup_draw_icon(gint x
, gint y
, gint w
, gint h
, gpointer data
)
339 ObIconPopup
*self
= data
;
341 self
->a_icon
->surface
.parent
= self
->popup
->a_bg
;
342 self
->a_icon
->surface
.parentx
= x
;
343 self
->a_icon
->surface
.parenty
= y
;
344 XMoveResizeWindow(obt_display
, self
->icon
, x
, y
, w
, h
);
345 RrPaint(self
->a_icon
, self
->icon
, w
, h
);
348 ObIconPopup
*icon_popup_new(void)
352 self
= g_slice_new0(ObIconPopup
);
353 self
->popup
= popup_new();
354 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
355 self
->icon
= XCreateWindow(obt_display
, self
->popup
->bg
,
357 RrDepth(ob_rr_inst
), InputOutput
,
358 RrVisual(ob_rr_inst
), 0, NULL
);
359 XMapWindow(obt_display
, self
->icon
);
361 self
->popup
->hasicon
= TRUE
;
362 self
->popup
->draw_icon
= icon_popup_draw_icon
;
363 self
->popup
->draw_icon_data
= self
;
368 void icon_popup_free(ObIconPopup
*self
)
371 XDestroyWindow(obt_display
, self
->icon
);
372 RrAppearanceFree(self
->a_icon
);
373 popup_free(self
->popup
);
374 g_slice_free(ObIconPopup
, self
);
378 void icon_popup_delay_show(ObIconPopup
*self
, gulong msec
,
379 gchar
*text
, RrImage
*icon
)
382 RrAppearanceClearTextures(self
->a_icon
);
383 self
->a_icon
->texture
[0].type
= RR_TEXTURE_IMAGE
;
384 self
->a_icon
->texture
[0].data
.image
.alpha
= 0xff;
385 self
->a_icon
->texture
[0].data
.image
.image
= icon
;
387 RrAppearanceClearTextures(self
->a_icon
);
388 self
->a_icon
->texture
[0].type
= RR_TEXTURE_NONE
;
391 popup_delay_show(self
->popup
, msec
, text
);
394 void icon_popup_icon_size_multiplier(ObIconPopup
*self
, guint wm
, guint hm
)
397 self
->popup
->iconwm
= MAX(1, wm
);
398 self
->popup
->iconhm
= MAX(1, hm
);
401 static void pager_popup_draw_icon(gint px
, gint py
, gint w
, gint h
,
404 ObPagerPopup
*self
= data
;
411 const guint cols
= screen_desktop_layout
.columns
;
412 const guint rows
= screen_desktop_layout
.rows
;
413 const gint linewidth
= ob_rr_theme
->obwidth
;
415 eachw
= (w
- ((cols
+ 1) * linewidth
)) / cols
;
416 eachh
= (h
- ((rows
+ 1) * linewidth
)) / rows
;
417 /* make them squares */
418 eachw
= eachh
= MIN(eachw
, eachh
);
421 px
+= (w
- (cols
* (eachw
+ linewidth
) + linewidth
)) / 2;
422 py
+= (h
- (rows
* (eachh
+ linewidth
) + linewidth
)) / 2;
424 if (eachw
<= 0 || eachh
<= 0)
427 switch (screen_desktop_layout
.orientation
) {
428 case OB_ORIENTATION_HORZ
:
429 switch (screen_desktop_layout
.start_corner
) {
430 case OB_CORNER_TOPLEFT
:
435 case OB_CORNER_TOPRIGHT
:
440 case OB_CORNER_BOTTOMRIGHT
:
443 vert_inc
= -screen_desktop_layout
.columns
;
445 case OB_CORNER_BOTTOMLEFT
:
446 n
= (rows
- 1) * cols
;
451 g_assert_not_reached();
454 case OB_ORIENTATION_VERT
:
455 switch (screen_desktop_layout
.start_corner
) {
456 case OB_CORNER_TOPLEFT
:
461 case OB_CORNER_TOPRIGHT
:
462 n
= rows
* (cols
- 1);
466 case OB_CORNER_BOTTOMRIGHT
:
471 case OB_CORNER_BOTTOMLEFT
:
477 g_assert_not_reached();
481 g_assert_not_reached();
485 for (r
= 0, y
= 0; r
< rows
; ++r
, y
+= eachh
+ linewidth
)
487 for (c
= 0, x
= 0; c
< cols
; ++c
, x
+= eachw
+ linewidth
)
491 if (n
< self
->desks
) {
492 a
= (n
== self
->curdesk
? self
->hilight
: self
->unhilight
);
494 a
->surface
.parent
= self
->popup
->a_bg
;
495 a
->surface
.parentx
= x
+ px
;
496 a
->surface
.parenty
= y
+ py
;
497 XMoveResizeWindow(obt_display
, self
->wins
[n
],
498 x
+ px
, y
+ py
, eachw
, eachh
);
499 RrPaint(a
, self
->wins
[n
], eachw
, eachh
);
503 n
= rown
+= vert_inc
;
507 ObPagerPopup
*pager_popup_new(void)
511 self
= g_slice_new(ObPagerPopup
);
512 self
->popup
= popup_new();
515 self
->wins
= g_new(Window
, self
->desks
);
516 self
->hilight
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_bg
);
517 self
->unhilight
= RrAppearanceCopy(ob_rr_theme
->osd_unhilite_bg
);
519 self
->popup
->hasicon
= TRUE
;
520 self
->popup
->draw_icon
= pager_popup_draw_icon
;
521 self
->popup
->draw_icon_data
= self
;
526 void pager_popup_free(ObPagerPopup
*self
)
531 for (i
= 0; i
< self
->desks
; ++i
)
532 XDestroyWindow(obt_display
, self
->wins
[i
]);
534 RrAppearanceFree(self
->hilight
);
535 RrAppearanceFree(self
->unhilight
);
536 popup_free(self
->popup
);
537 g_slice_free(ObPagerPopup
, self
);
541 void pager_popup_delay_show(ObPagerPopup
*self
, gulong msec
,
542 gchar
*text
, guint desk
)
546 if (screen_num_desktops
< self
->desks
)
547 for (i
= screen_num_desktops
; i
< self
->desks
; ++i
)
548 XDestroyWindow(obt_display
, self
->wins
[i
]);
550 if (screen_num_desktops
!= self
->desks
)
551 self
->wins
= g_renew(Window
, self
->wins
, screen_num_desktops
);
553 if (screen_num_desktops
> self
->desks
)
554 for (i
= self
->desks
; i
< screen_num_desktops
; ++i
) {
555 XSetWindowAttributes attr
;
558 RrColorPixel(ob_rr_theme
->osd_border_color
);
559 self
->wins
[i
] = XCreateWindow(obt_display
, self
->popup
->bg
,
560 0, 0, 1, 1, ob_rr_theme
->obwidth
,
561 RrDepth(ob_rr_inst
), InputOutput
,
562 RrVisual(ob_rr_inst
), CWBorderPixel
,
564 XMapWindow(obt_display
, self
->wins
[i
]);
567 self
->desks
= screen_num_desktops
;
568 self
->curdesk
= desk
;
570 popup_delay_show(self
->popup
, msec
, text
);
573 void pager_popup_icon_size_multiplier(ObPagerPopup
*self
, guint wm
, guint hm
)
576 self
->popup
->iconwm
= MAX(1, wm
);
577 self
->popup
->iconhm
= MAX(1, hm
);