1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 popup.c for the Openbox window manager
4 Copyright (c) 2004 Mikael Magnusson
5 Copyright (c) 2003 Ben 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.
27 #include "render/render.h"
28 #include "render/theme.h"
30 ObPopup
*popup_new(gboolean hasicon
)
32 XSetWindowAttributes attrib
;
33 ObPopup
*self
= g_new0(ObPopup
, 1);
35 self
->obwin
.type
= Window_Internal
;
36 self
->hasicon
= hasicon
;
37 self
->gravity
= NorthWestGravity
;
38 self
->x
= self
->y
= self
->w
= self
->h
= 0;
39 self
->a_bg
= RrAppearanceCopy(ob_rr_theme
->app_hilite_bg
);
40 self
->a_text
= RrAppearanceCopy(ob_rr_theme
->app_hilite_label
);
42 attrib
.override_redirect
= True
;
43 self
->bg
= XCreateWindow(ob_display
, RootWindow(ob_display
, ob_screen
),
44 0, 0, 1, 1, 0, RrDepth(ob_rr_inst
),
45 InputOutput
, RrVisual(ob_rr_inst
),
46 CWOverrideRedirect
, &attrib
);
48 self
->text
= XCreateWindow(ob_display
, self
->bg
,
49 0, 0, 1, 1, 0, RrDepth(ob_rr_inst
),
50 InputOutput
, RrVisual(ob_rr_inst
), 0, NULL
);
52 XMapWindow(ob_display
, self
->text
);
54 stacking_add(INTERNAL_AS_WINDOW(self
));
58 void popup_free(ObPopup
*self
)
61 XDestroyWindow(ob_display
, self
->bg
);
62 XDestroyWindow(ob_display
, self
->text
);
63 RrAppearanceFree(self
->a_bg
);
64 RrAppearanceFree(self
->a_text
);
65 stacking_remove(self
);
70 void popup_position(ObPopup
*self
, gint gravity
, gint x
, gint y
)
72 self
->gravity
= gravity
;
77 void popup_size(ObPopup
*self
, gint w
, gint h
)
83 void popup_size_to_string(ObPopup
*self
, gchar
*text
)
88 self
->a_text
->texture
[0].data
.text
.string
= text
;
89 RrMinsize(self
->a_text
, &textw
, &texth
);
90 /*XXX textw += ob_rr_theme->bevel * 2;*/
91 texth
+= ob_rr_theme
->padding
* 2;
93 self
->h
= texth
+ ob_rr_theme
->padding
* 2;
94 iconw
= (self
->hasicon
? texth
: 0);
95 self
->w
= textw
+ iconw
+ ob_rr_theme
->padding
* (self
->hasicon
? 3 : 2);
98 void popup_set_text_align(ObPopup
*self
, RrJustify align
)
100 self
->a_text
->texture
[0].data
.text
.justify
= align
;
103 void popup_show(ObPopup
*self
, gchar
*text
)
109 Rect
*area
; /* won't go outside this */
111 area
= screen_physical_area(); /* XXX this should work quite
112 good, someone with xinerama,
113 and different resolutions on
116 RrMargins(self
->a_bg
, &l
, &t
, &r
, &b
);
118 XSetWindowBorderWidth(ob_display
, self
->bg
, ob_rr_theme
->bwidth
);
119 XSetWindowBorder(ob_display
, self
->bg
, ob_rr_theme
->b_color
->pixel
);
121 /* set up the textures */
122 self
->a_text
->texture
[0].data
.text
.string
= text
;
124 /* measure the shit out */
125 RrMinsize(self
->a_text
, &textw
, &texth
);
126 /*XXX textw += ob_rr_theme->padding * 2;*/
127 texth
+= ob_rr_theme
->padding
* 2;
129 /* set the sizes up and reget the text sizes from the calculated
133 texth
= h
- (t
+b
+ ob_rr_theme
->padding
* 2);
135 h
= t
+b
+ texth
+ ob_rr_theme
->padding
* 2;
136 iconw
= (self
->hasicon
? texth
: 0);
139 textw
= w
- (l
+r
+ iconw
+ ob_rr_theme
->padding
*
140 (self
->hasicon
? 3 : 2));
142 w
= l
+r
+ textw
+ iconw
+ ob_rr_theme
->padding
*
143 (self
->hasicon
? 3 : 2);
144 /* sanity checks to avoid crashes! */
147 if (textw
< 1) textw
= 1;
148 if (texth
< 1) texth
= 1;
150 /* set up the x coord */
152 switch (self
->gravity
) {
158 case NorthEastGravity
:
160 case SouthEastGravity
:
165 /* set up the y coord */
167 switch (self
->gravity
) {
173 case SouthWestGravity
:
175 case SouthEastGravity
:
180 x
=MAX(MIN(x
, area
->width
-w
),0);
181 y
=MAX(MIN(y
, area
->height
-h
),0);
183 /* set the windows/appearances up */
184 XMoveResizeWindow(ob_display
, self
->bg
, x
, y
, w
, h
);
186 self
->a_text
->surface
.parent
= self
->a_bg
;
187 self
->a_text
->surface
.parentx
= l
+ iconw
+
188 ob_rr_theme
->padding
* (self
->hasicon
? 2 : 1);
189 self
->a_text
->surface
.parenty
= t
+ ob_rr_theme
->padding
;
190 XMoveResizeWindow(ob_display
, self
->text
,
191 l
+ iconw
+ ob_rr_theme
->padding
*
192 (self
->hasicon
? 2 : 1),
193 t
+ ob_rr_theme
->padding
, textw
, texth
);
195 RrPaint(self
->a_bg
, self
->bg
, w
, h
);
196 RrPaint(self
->a_text
, self
->text
, textw
, texth
);
199 if (iconw
< 1) iconw
= 1; /* sanity check for crashes */
201 self
->draw_icon(l
+ ob_rr_theme
->padding
, t
+ ob_rr_theme
->padding
,
202 iconw
, texth
, self
->draw_icon_data
);
206 XMapWindow(ob_display
, self
->bg
);
207 stacking_raise(INTERNAL_AS_WINDOW(self
), FALSE
);
212 void popup_hide(ObPopup
*self
)
215 XUnmapWindow(ob_display
, self
->bg
);
216 self
->mapped
= FALSE
;
220 static void icon_popup_draw_icon(gint x
, gint y
, gint w
, gint h
, gpointer data
)
222 ObIconPopup
*self
= data
;
224 self
->a_icon
->surface
.parent
= self
->popup
->a_bg
;
225 self
->a_icon
->surface
.parentx
= x
;
226 self
->a_icon
->surface
.parenty
= y
;
227 XMoveResizeWindow(ob_display
, self
->icon
, x
, y
, w
, h
);
228 RrPaint(self
->a_icon
, self
->icon
, w
, h
);
231 ObIconPopup
*icon_popup_new()
235 self
= g_new0(ObIconPopup
, 1);
236 self
->popup
= popup_new(TRUE
);
237 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
238 self
->icon
= XCreateWindow(ob_display
, self
->popup
->bg
,
240 RrDepth(ob_rr_inst
), InputOutput
,
241 RrVisual(ob_rr_inst
), 0, NULL
);
242 XMapWindow(ob_display
, self
->icon
);
244 self
->popup
->draw_icon
= icon_popup_draw_icon
;
245 self
->popup
->draw_icon_data
= self
;
250 void icon_popup_free(ObIconPopup
*self
)
253 XDestroyWindow(ob_display
, self
->icon
);
254 RrAppearanceFree(self
->a_icon
);
255 popup_free(self
->popup
);
260 void icon_popup_show(ObIconPopup
*self
,
261 gchar
*text
, const ObClientIcon
*icon
)
264 self
->a_icon
->texture
[0].type
= RR_TEXTURE_RGBA
;
265 self
->a_icon
->texture
[0].data
.rgba
.width
= icon
->width
;
266 self
->a_icon
->texture
[0].data
.rgba
.height
= icon
->height
;
267 self
->a_icon
->texture
[0].data
.rgba
.data
= icon
->data
;
269 self
->a_icon
->texture
[0].type
= RR_TEXTURE_NONE
;
271 popup_show(self
->popup
, text
);
274 static void pager_popup_draw_icon(gint px
, gint py
, gint w
, gint h
,
277 ObPagerPopup
*self
= data
;
285 eachw
= (w
- ob_rr_theme
->bwidth
-
286 (screen_desktop_layout
.columns
* ob_rr_theme
->bwidth
))
287 / screen_desktop_layout
.columns
;
288 eachh
= (h
- ob_rr_theme
->bwidth
-
289 (screen_desktop_layout
.rows
* ob_rr_theme
->bwidth
))
290 / screen_desktop_layout
.rows
;
291 /* make them squares */
292 eachw
= eachh
= MIN(eachw
, eachh
);
295 px
+= (w
- (screen_desktop_layout
.columns
* (eachw
+ ob_rr_theme
->bwidth
) +
296 ob_rr_theme
->bwidth
)) / 2;
297 py
+= (h
- (screen_desktop_layout
.rows
* (eachh
+ ob_rr_theme
->bwidth
) +
298 ob_rr_theme
->bwidth
)) / 2;
300 if (eachw
<= 0 || eachh
<= 0)
303 switch (screen_desktop_layout
.orientation
) {
304 case OB_ORIENTATION_HORZ
:
305 switch (screen_desktop_layout
.start_corner
) {
306 case OB_CORNER_TOPLEFT
:
309 vert_inc
= screen_desktop_layout
.columns
;
311 case OB_CORNER_TOPRIGHT
:
312 n
= screen_desktop_layout
.columns
- 1;
314 vert_inc
= screen_desktop_layout
.columns
;
316 case OB_CORNER_BOTTOMRIGHT
:
317 n
= screen_desktop_layout
.rows
* screen_desktop_layout
.columns
- 1;
319 vert_inc
= -screen_desktop_layout
.columns
;
321 case OB_CORNER_BOTTOMLEFT
:
322 n
= (screen_desktop_layout
.rows
- 1) * screen_desktop_layout
.columns
;
324 vert_inc
= -screen_desktop_layout
.columns
;
327 g_assert_not_reached();
330 case OB_ORIENTATION_VERT
:
331 switch (screen_desktop_layout
.start_corner
) {
332 case OB_CORNER_TOPLEFT
:
334 horz_inc
= screen_desktop_layout
.rows
;
337 case OB_CORNER_TOPRIGHT
:
338 n
= screen_desktop_layout
.rows
* (screen_desktop_layout
.columns
- 1);
339 horz_inc
= -screen_desktop_layout
.rows
;
342 case OB_CORNER_BOTTOMRIGHT
:
343 n
= screen_desktop_layout
.rows
* screen_desktop_layout
.columns
- 1;
344 horz_inc
= -screen_desktop_layout
.rows
;
347 case OB_CORNER_BOTTOMLEFT
:
348 n
= screen_desktop_layout
.rows
- 1;
349 horz_inc
= screen_desktop_layout
.rows
;
353 g_assert_not_reached();
357 g_assert_not_reached();
361 for (r
= 0, y
= 0; r
< screen_desktop_layout
.rows
;
362 ++r
, y
+= eachh
+ ob_rr_theme
->bwidth
)
364 for (c
= 0, x
= 0; c
< screen_desktop_layout
.columns
;
365 ++c
, x
+= eachw
+ ob_rr_theme
->bwidth
)
369 if (n
< self
->desks
) {
370 a
= (n
== self
->curdesk
? self
->hilight
: self
->unhilight
);
372 a
->surface
.parent
= self
->popup
->a_bg
;
373 a
->surface
.parentx
= x
+ px
;
374 a
->surface
.parenty
= y
+ py
;
375 XMoveResizeWindow(ob_display
, self
->wins
[n
],
376 x
+ px
, y
+ py
, eachw
, eachh
);
377 RrPaint(a
, self
->wins
[n
], eachw
, eachh
);
381 n
= rown
+= vert_inc
;
385 ObPagerPopup
*pager_popup_new()
389 self
= g_new(ObPagerPopup
, 1);
390 self
->popup
= popup_new(TRUE
);
393 self
->wins
= g_new(Window
, self
->desks
);
394 self
->hilight
= RrAppearanceCopy(ob_rr_theme
->app_hilite_fg
);
395 self
->unhilight
= RrAppearanceCopy(ob_rr_theme
->app_unhilite_fg
);
397 self
->popup
->draw_icon
= pager_popup_draw_icon
;
398 self
->popup
->draw_icon_data
= self
;
403 void pager_popup_free(ObPagerPopup
*self
)
408 for (i
= 0; i
< self
->desks
; ++i
)
409 XDestroyWindow(ob_display
, self
->wins
[i
]);
411 RrAppearanceFree(self
->hilight
);
412 RrAppearanceFree(self
->unhilight
);
413 popup_free(self
->popup
);
418 void pager_popup_show(ObPagerPopup
*self
, gchar
*text
, guint desk
)
422 if (screen_num_desktops
< self
->desks
)
423 for (i
= screen_num_desktops
; i
< self
->desks
; ++i
)
424 XDestroyWindow(ob_display
, self
->wins
[i
]);
426 if (screen_num_desktops
!= self
->desks
)
427 self
->wins
= g_renew(Window
, self
->wins
, screen_num_desktops
);
429 if (screen_num_desktops
> self
->desks
)
430 for (i
= self
->desks
; i
< screen_num_desktops
; ++i
) {
431 XSetWindowAttributes attr
;
433 attr
.border_pixel
= RrColorPixel(ob_rr_theme
->b_color
);
434 self
->wins
[i
] = XCreateWindow(ob_display
, self
->popup
->bg
,
435 0, 0, 1, 1, ob_rr_theme
->bwidth
,
436 RrDepth(ob_rr_inst
), InputOutput
,
437 RrVisual(ob_rr_inst
), CWBorderPixel
,
439 XMapWindow(ob_display
, self
->wins
[i
]);
442 self
->desks
= screen_num_desktops
;
443 self
->curdesk
= desk
;
445 popup_show(self
->popup
, text
);