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.
29 #include "render/render.h"
30 #include "render/theme.h"
34 XSetWindowAttributes attrib
;
35 ObPopup
*self
= g_new0(ObPopup
, 1);
37 self
->obwin
.type
= Window_Internal
;
38 self
->gravity
= NorthWestGravity
;
39 self
->x
= self
->y
= self
->textw
= self
->h
= 0;
40 self
->a_bg
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_bg
);
41 self
->a_text
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_label
);
43 attrib
.override_redirect
= True
;
44 self
->bg
= XCreateWindow(ob_display
, RootWindow(ob_display
, 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(ob_display
, self
->bg
,
50 0, 0, 1, 1, 0, RrDepth(ob_rr_inst
),
51 InputOutput
, RrVisual(ob_rr_inst
), 0, NULL
);
53 XSetWindowBorderWidth(ob_display
, self
->bg
, ob_rr_theme
->fbwidth
);
54 XSetWindowBorder(ob_display
, self
->bg
, ob_rr_theme
->frame_b_color
->pixel
);
56 XMapWindow(ob_display
, self
->text
);
58 stacking_add(INTERNAL_AS_WINDOW(self
));
62 void popup_free(ObPopup
*self
)
65 XDestroyWindow(ob_display
, self
->bg
);
66 XDestroyWindow(ob_display
, self
->text
);
67 RrAppearanceFree(self
->a_bg
);
68 RrAppearanceFree(self
->a_text
);
69 stacking_remove(self
);
74 void popup_position(ObPopup
*self
, gint gravity
, gint x
, gint y
)
76 self
->gravity
= gravity
;
81 void popup_text_width(ObPopup
*self
, gint w
)
86 void popup_min_width(ObPopup
*self
, gint minw
)
91 void popup_max_width(ObPopup
*self
, gint maxw
)
96 void popup_height(ObPopup
*self
, gint h
)
100 /* don't let the height be smaller than the text */
101 texth
= RrMinHeight(self
->a_text
) + ob_rr_theme
->paddingy
* 2;
102 self
->h
= MAX(h
, texth
);
105 void popup_text_width_to_string(ObPopup
*self
, gchar
*text
)
107 if (text
[0] != '\0') {
108 self
->a_text
->texture
[0].data
.text
.string
= text
;
109 self
->textw
= RrMinWidth(self
->a_text
);
114 void popup_height_to_string(ObPopup
*self
, gchar
*text
)
116 self
->h
= RrMinHeight(self
->a_text
) + ob_rr_theme
->paddingy
* 2;
119 void popup_text_width_to_strings(ObPopup
*self
, gchar
**strings
, gint num
)
124 for (i
= 0; i
< num
; ++i
) {
125 popup_text_width_to_string(self
, strings
[i
]);
126 maxw
= MAX(maxw
, self
->textw
);
131 void popup_set_text_align(ObPopup
*self
, RrJustify align
)
133 self
->a_text
->texture
[0].data
.text
.justify
= align
;
136 static gboolean
popup_show_timeout(gpointer data
)
138 ObPopup
*self
= data
;
140 XMapWindow(ob_display
, self
->bg
);
141 stacking_raise(INTERNAL_AS_WINDOW(self
));
143 self
->delay_mapped
= FALSE
;
145 return FALSE
; /* don't repeat */
148 void popup_delay_show(ObPopup
*self
, gulong usec
, gchar
*text
)
152 gint emptyx
, emptyy
; /* empty space between elements */
153 gint textx
, texty
, textw
, texth
;
154 gint iconx
, icony
, iconw
, iconh
;
156 RrMargins(self
->a_bg
, &l
, &t
, &r
, &b
);
158 /* set up the textures */
159 self
->a_text
->texture
[0].data
.text
.string
= text
;
161 /* measure the text out */
162 if (text
[0] != '\0') {
163 RrMinSize(self
->a_text
, &textw
, &texth
);
166 texth
= RrMinHeight(self
->a_text
);
169 /* get the height, which is also used for the icon width */
170 emptyy
= t
+ b
+ ob_rr_theme
->paddingy
* 2;
180 iconx
= textx
= l
+ ob_rr_theme
->paddingx
;
181 icony
= texty
= t
+ ob_rr_theme
->paddingy
;
183 emptyx
= l
+ r
+ ob_rr_theme
->paddingx
* 2;
185 iconw
= iconh
= texth
;
186 textx
+= iconw
+ ob_rr_theme
->paddingx
;
188 emptyx
+= ob_rr_theme
->paddingx
; /* between the icon and text */
192 w
= textw
+ emptyx
+ iconw
;
193 /* cap it at maxw/minw */
194 if (self
->maxw
) w
= MIN(w
, self
->maxw
);
195 if (self
->minw
) w
= MAX(w
, self
->minw
);
196 textw
= w
- emptyx
- iconw
;
198 /* sanity checks to avoid crashes! */
201 if (texth
< 1) texth
= 1;
203 /* set up the x coord */
205 switch (self
->gravity
) {
206 case NorthGravity
: case CenterGravity
: case SouthGravity
:
209 case NorthEastGravity
: case EastGravity
: case SouthEastGravity
:
214 /* set up the y coord */
216 switch (self
->gravity
) {
217 case WestGravity
: case CenterGravity
: case EastGravity
:
220 case SouthWestGravity
: case SouthGravity
: case SouthEastGravity
:
225 /* set the windows/appearances up */
226 XMoveResizeWindow(ob_display
, self
->bg
, x
, y
, w
, h
);
227 RrPaint(self
->a_bg
, self
->bg
, w
, h
);
230 self
->a_text
->surface
.parent
= self
->a_bg
;
231 self
->a_text
->surface
.parentx
= textx
;
232 self
->a_text
->surface
.parenty
= texty
;
233 XMoveResizeWindow(ob_display
, self
->text
, textx
, texty
, textw
, texth
);
234 RrPaint(self
->a_text
, self
->text
, textw
, texth
);
238 self
->draw_icon(iconx
, icony
, iconw
, iconh
, self
->draw_icon_data
);
240 /* do the actual showing */
243 /* don't kill previous show timers */
244 if (!self
->delay_mapped
) {
245 ob_main_loop_timeout_add(ob_main_loop
, usec
,
246 popup_show_timeout
, self
,
247 g_direct_equal
, NULL
);
248 self
->delay_mapped
= TRUE
;
251 popup_show_timeout(self
);
256 void popup_hide(ObPopup
*self
)
259 XUnmapWindow(ob_display
, self
->bg
);
260 self
->mapped
= FALSE
;
262 /* kill enter events cause by this unmapping */
263 event_ignore_queued_enters();
264 } else if (self
->delay_mapped
) {
265 ob_main_loop_timeout_remove(ob_main_loop
, popup_show_timeout
);
266 self
->delay_mapped
= FALSE
;
270 static void icon_popup_draw_icon(gint x
, gint y
, gint w
, gint h
, gpointer data
)
272 ObIconPopup
*self
= data
;
274 self
->a_icon
->surface
.parent
= self
->popup
->a_bg
;
275 self
->a_icon
->surface
.parentx
= x
;
276 self
->a_icon
->surface
.parenty
= y
;
277 XMoveResizeWindow(ob_display
, self
->icon
, x
, y
, w
, h
);
278 RrPaint(self
->a_icon
, self
->icon
, w
, h
);
281 ObIconPopup
*icon_popup_new()
285 self
= g_new0(ObIconPopup
, 1);
286 self
->popup
= popup_new(TRUE
);
287 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
288 self
->icon
= XCreateWindow(ob_display
, self
->popup
->bg
,
290 RrDepth(ob_rr_inst
), InputOutput
,
291 RrVisual(ob_rr_inst
), 0, NULL
);
292 XMapWindow(ob_display
, self
->icon
);
294 self
->popup
->hasicon
= TRUE
;
295 self
->popup
->draw_icon
= icon_popup_draw_icon
;
296 self
->popup
->draw_icon_data
= self
;
301 void icon_popup_free(ObIconPopup
*self
)
304 XDestroyWindow(ob_display
, self
->icon
);
305 RrAppearanceFree(self
->a_icon
);
306 popup_free(self
->popup
);
311 void icon_popup_delay_show(ObIconPopup
*self
, gulong usec
,
312 gchar
*text
, const ObClientIcon
*icon
)
315 self
->a_icon
->texture
[0].type
= RR_TEXTURE_RGBA
;
316 self
->a_icon
->texture
[0].data
.rgba
.width
= icon
->width
;
317 self
->a_icon
->texture
[0].data
.rgba
.height
= icon
->height
;
318 self
->a_icon
->texture
[0].data
.rgba
.data
= icon
->data
;
320 self
->a_icon
->texture
[0].type
= RR_TEXTURE_NONE
;
322 popup_delay_show(self
->popup
, usec
, text
);
325 static void pager_popup_draw_icon(gint px
, gint py
, gint w
, gint h
,
328 ObPagerPopup
*self
= data
;
335 const guint cols
= screen_desktop_layout
.columns
;
336 const guint rows
= screen_desktop_layout
.rows
;
337 const gint linewidth
= ob_rr_theme
->fbwidth
;
339 eachw
= (w
- ((cols
+ 1) * linewidth
)) / cols
;
340 eachh
= (h
- ((rows
+ 1) * linewidth
)) / rows
;
341 /* make them squares */
342 eachw
= eachh
= MIN(eachw
, eachh
);
345 px
+= (w
- (cols
* (eachw
+ linewidth
) + linewidth
)) / 2;
346 py
+= (h
- (rows
* (eachh
+ linewidth
) + linewidth
)) / 2;
348 if (eachw
<= 0 || eachh
<= 0)
351 switch (screen_desktop_layout
.orientation
) {
352 case OB_ORIENTATION_HORZ
:
353 switch (screen_desktop_layout
.start_corner
) {
354 case OB_CORNER_TOPLEFT
:
359 case OB_CORNER_TOPRIGHT
:
364 case OB_CORNER_BOTTOMRIGHT
:
367 vert_inc
= -screen_desktop_layout
.columns
;
369 case OB_CORNER_BOTTOMLEFT
:
370 n
= (rows
- 1) * cols
;
375 g_assert_not_reached();
378 case OB_ORIENTATION_VERT
:
379 switch (screen_desktop_layout
.start_corner
) {
380 case OB_CORNER_TOPLEFT
:
385 case OB_CORNER_TOPRIGHT
:
386 n
= rows
* (cols
- 1);
390 case OB_CORNER_BOTTOMRIGHT
:
395 case OB_CORNER_BOTTOMLEFT
:
401 g_assert_not_reached();
405 g_assert_not_reached();
409 for (r
= 0, y
= 0; r
< rows
; ++r
, y
+= eachh
+ linewidth
)
411 for (c
= 0, x
= 0; c
< cols
; ++c
, x
+= eachw
+ linewidth
)
415 if (n
< self
->desks
) {
416 a
= (n
== self
->curdesk
? self
->hilight
: self
->unhilight
);
418 a
->surface
.parent
= self
->popup
->a_bg
;
419 a
->surface
.parentx
= x
+ px
;
420 a
->surface
.parenty
= y
+ py
;
421 XMoveResizeWindow(ob_display
, self
->wins
[n
],
422 x
+ px
, y
+ py
, eachw
, eachh
);
423 RrPaint(a
, self
->wins
[n
], eachw
, eachh
);
427 n
= rown
+= vert_inc
;
431 ObPagerPopup
*pager_popup_new()
435 self
= g_new(ObPagerPopup
, 1);
436 self
->popup
= popup_new(TRUE
);
439 self
->wins
= g_new(Window
, self
->desks
);
440 self
->hilight
= RrAppearanceCopy(ob_rr_theme
->osd_hilite_fg
);
441 self
->unhilight
= RrAppearanceCopy(ob_rr_theme
->osd_unhilite_fg
);
443 self
->popup
->hasicon
= TRUE
;
444 self
->popup
->draw_icon
= pager_popup_draw_icon
;
445 self
->popup
->draw_icon_data
= self
;
450 void pager_popup_free(ObPagerPopup
*self
)
455 for (i
= 0; i
< self
->desks
; ++i
)
456 XDestroyWindow(ob_display
, self
->wins
[i
]);
458 RrAppearanceFree(self
->hilight
);
459 RrAppearanceFree(self
->unhilight
);
460 popup_free(self
->popup
);
465 void pager_popup_delay_show(ObPagerPopup
*self
, gulong usec
,
466 gchar
*text
, guint desk
)
470 if (screen_num_desktops
< self
->desks
)
471 for (i
= screen_num_desktops
; i
< self
->desks
; ++i
)
472 XDestroyWindow(ob_display
, self
->wins
[i
]);
474 if (screen_num_desktops
!= self
->desks
)
475 self
->wins
= g_renew(Window
, self
->wins
, screen_num_desktops
);
477 if (screen_num_desktops
> self
->desks
)
478 for (i
= self
->desks
; i
< screen_num_desktops
; ++i
) {
479 XSetWindowAttributes attr
;
481 attr
.border_pixel
= RrColorPixel(ob_rr_theme
->frame_b_color
);
482 self
->wins
[i
] = XCreateWindow(ob_display
, self
->popup
->bg
,
483 0, 0, 1, 1, ob_rr_theme
->fbwidth
,
484 RrDepth(ob_rr_inst
), InputOutput
,
485 RrVisual(ob_rr_inst
), CWBorderPixel
,
487 XMapWindow(ob_display
, self
->wins
[i
]);
490 self
->desks
= screen_num_desktops
;
491 self
->curdesk
= desk
;
493 popup_delay_show(self
->popup
, usec
, text
);