]> Dogcows Code - chaz/openbox/blob - openbox/popup.c
center the text and icon vertically
[chaz/openbox] / openbox / popup.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 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 "popup.h"
21
22 #include "openbox.h"
23 #include "frame.h"
24 #include "client.h"
25 #include "stacking.h"
26 #include "event.h"
27 #include "screen.h"
28 #include "mainloop.h"
29 #include "render/render.h"
30 #include "render/theme.h"
31
32 ObPopup *popup_new()
33 {
34 XSetWindowAttributes attrib;
35 ObPopup *self = g_new0(ObPopup, 1);
36
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);
42 self->iconwm = self->iconhm = 1;
43
44 attrib.override_redirect = True;
45 self->bg = XCreateWindow(ob_display, RootWindow(ob_display, ob_screen),
46 0, 0, 1, 1, 0, RrDepth(ob_rr_inst),
47 InputOutput, RrVisual(ob_rr_inst),
48 CWOverrideRedirect, &attrib);
49
50 self->text = XCreateWindow(ob_display, self->bg,
51 0, 0, 1, 1, 0, RrDepth(ob_rr_inst),
52 InputOutput, RrVisual(ob_rr_inst), 0, NULL);
53
54 XSetWindowBorderWidth(ob_display, self->bg, ob_rr_theme->fbwidth);
55 XSetWindowBorder(ob_display, self->bg, ob_rr_theme->frame_b_color->pixel);
56
57 XMapWindow(ob_display, self->text);
58
59 stacking_add(INTERNAL_AS_WINDOW(self));
60 return self;
61 }
62
63 void popup_free(ObPopup *self)
64 {
65 if (self) {
66 XDestroyWindow(ob_display, self->bg);
67 XDestroyWindow(ob_display, self->text);
68 RrAppearanceFree(self->a_bg);
69 RrAppearanceFree(self->a_text);
70 stacking_remove(self);
71 g_free(self);
72 }
73 }
74
75 void popup_position(ObPopup *self, gint gravity, gint x, gint y)
76 {
77 self->gravity = gravity;
78 self->x = x;
79 self->y = y;
80 }
81
82 void popup_text_width(ObPopup *self, gint w)
83 {
84 self->textw = w;
85 }
86
87 void popup_min_width(ObPopup *self, gint minw)
88 {
89 self->minw = minw;
90 }
91
92 void popup_max_width(ObPopup *self, gint maxw)
93 {
94 self->maxw = maxw;
95 }
96
97 void popup_height(ObPopup *self, gint h)
98 {
99 gint texth;
100
101 /* don't let the height be smaller than the text */
102 texth = RrMinHeight(self->a_text) + ob_rr_theme->paddingy * 2;
103 self->h = MAX(h, texth);
104 }
105
106 void popup_text_width_to_string(ObPopup *self, gchar *text)
107 {
108 if (text[0] != '\0') {
109 self->a_text->texture[0].data.text.string = text;
110 self->textw = RrMinWidth(self->a_text);
111 } else
112 self->textw = 0;
113 }
114
115 void popup_height_to_string(ObPopup *self, gchar *text)
116 {
117 self->h = RrMinHeight(self->a_text) + ob_rr_theme->paddingy * 2;
118 }
119
120 void popup_text_width_to_strings(ObPopup *self, gchar **strings, gint num)
121 {
122 gint i, maxw;
123
124 maxw = 0;
125 for (i = 0; i < num; ++i) {
126 popup_text_width_to_string(self, strings[i]);
127 maxw = MAX(maxw, self->textw);
128 }
129 self->textw = maxw;
130 }
131
132 void popup_set_text_align(ObPopup *self, RrJustify align)
133 {
134 self->a_text->texture[0].data.text.justify = align;
135 }
136
137 static gboolean popup_show_timeout(gpointer data)
138 {
139 ObPopup *self = data;
140
141 XMapWindow(ob_display, self->bg);
142 stacking_raise(INTERNAL_AS_WINDOW(self));
143 self->mapped = TRUE;
144 self->delay_mapped = FALSE;
145
146 return FALSE; /* don't repeat */
147 }
148
149 void popup_delay_show(ObPopup *self, gulong usec, gchar *text)
150 {
151 gint l, t, r, b;
152 gint x, y, w, h;
153 gint emptyx, emptyy; /* empty space between elements */
154 gint textx, texty, textw, texth;
155 gint iconx, icony, iconw, iconh;
156
157 RrMargins(self->a_bg, &l, &t, &r, &b);
158
159 /* set up the textures */
160 self->a_text->texture[0].data.text.string = text;
161
162 /* measure the text out */
163 if (text[0] != '\0') {
164 RrMinSize(self->a_text, &textw, &texth);
165 } else {
166 textw = 0;
167 texth = RrMinHeight(self->a_text);
168 }
169
170 /* get the height, which is also used for the icon width */
171 emptyy = t + b + ob_rr_theme->paddingy * 2;
172 if (self->h)
173 texth = self->h - emptyy;
174 h = texth * self->iconhm + emptyy;
175
176 if (self->textw)
177 textw = self->textw;
178
179 iconx = textx = l + ob_rr_theme->paddingx;
180
181 emptyx = l + r + ob_rr_theme->paddingx * 2;
182 if (self->hasicon) {
183 iconw = texth * self->iconwm;
184 iconh = texth * self->iconhm;
185 textx += iconw + ob_rr_theme->paddingx;
186 if (textw)
187 emptyx += ob_rr_theme->paddingx; /* between the icon and text */
188 } else
189 iconw = 0;
190
191 texty = (h - texth - emptyy) / 2 + t + ob_rr_theme->paddingy;
192 icony = (h - iconh - emptyy) / 2 + t + ob_rr_theme->paddingy;
193
194 w = textw + emptyx + iconw;
195 /* cap it at maxw/minw */
196 if (self->maxw) w = MIN(w, self->maxw);
197 if (self->minw) w = MAX(w, self->minw);
198 textw = w - emptyx - iconw;
199
200 /* sanity checks to avoid crashes! */
201 if (w < 1) w = 1;
202 if (h < 1) h = 1;
203 if (texth < 1) texth = 1;
204
205 /* set up the x coord */
206 x = self->x;
207 switch (self->gravity) {
208 case NorthGravity: case CenterGravity: case SouthGravity:
209 x -= w / 2;
210 break;
211 case NorthEastGravity: case EastGravity: case SouthEastGravity:
212 x -= w;
213 break;
214 }
215
216 /* set up the y coord */
217 y = self->y;
218 switch (self->gravity) {
219 case WestGravity: case CenterGravity: case EastGravity:
220 y -= h / 2;
221 break;
222 case SouthWestGravity: case SouthGravity: case SouthEastGravity:
223 y -= h;
224 break;
225 }
226
227 /* set the windows/appearances up */
228 XMoveResizeWindow(ob_display, self->bg, x, y, w, h);
229 RrPaint(self->a_bg, self->bg, w, h);
230
231 if (textw) {
232 self->a_text->surface.parent = self->a_bg;
233 self->a_text->surface.parentx = textx;
234 self->a_text->surface.parenty = texty;
235 XMoveResizeWindow(ob_display, self->text, textx, texty, textw, texth);
236 RrPaint(self->a_text, self->text, textw, texth);
237 }
238
239 if (self->hasicon)
240 self->draw_icon(iconx, icony, iconw, iconh, self->draw_icon_data);
241
242 /* do the actual showing */
243 if (!self->mapped) {
244 if (usec) {
245 /* don't kill previous show timers */
246 if (!self->delay_mapped) {
247 ob_main_loop_timeout_add(ob_main_loop, usec,
248 popup_show_timeout, self,
249 g_direct_equal, NULL);
250 self->delay_mapped = TRUE;
251 }
252 } else {
253 popup_show_timeout(self);
254 }
255 }
256 }
257
258 void popup_hide(ObPopup *self)
259 {
260 if (self->mapped) {
261 XUnmapWindow(ob_display, self->bg);
262 self->mapped = FALSE;
263
264 /* kill enter events cause by this unmapping */
265 event_ignore_queued_enters();
266 } else if (self->delay_mapped) {
267 ob_main_loop_timeout_remove(ob_main_loop, popup_show_timeout);
268 self->delay_mapped = FALSE;
269 }
270 }
271
272 static void icon_popup_draw_icon(gint x, gint y, gint w, gint h, gpointer data)
273 {
274 ObIconPopup *self = data;
275
276 self->a_icon->surface.parent = self->popup->a_bg;
277 self->a_icon->surface.parentx = x;
278 self->a_icon->surface.parenty = y;
279 XMoveResizeWindow(ob_display, self->icon, x, y, w, h);
280 RrPaint(self->a_icon, self->icon, w, h);
281 }
282
283 ObIconPopup *icon_popup_new()
284 {
285 ObIconPopup *self;
286
287 self = g_new0(ObIconPopup, 1);
288 self->popup = popup_new(TRUE);
289 self->a_icon = RrAppearanceCopy(ob_rr_theme->a_clear_tex);
290 self->icon = XCreateWindow(ob_display, self->popup->bg,
291 0, 0, 1, 1, 0,
292 RrDepth(ob_rr_inst), InputOutput,
293 RrVisual(ob_rr_inst), 0, NULL);
294 XMapWindow(ob_display, self->icon);
295
296 self->popup->hasicon = TRUE;
297 self->popup->draw_icon = icon_popup_draw_icon;
298 self->popup->draw_icon_data = self;
299
300 return self;
301 }
302
303 void icon_popup_free(ObIconPopup *self)
304 {
305 if (self) {
306 XDestroyWindow(ob_display, self->icon);
307 RrAppearanceFree(self->a_icon);
308 popup_free(self->popup);
309 g_free(self);
310 }
311 }
312
313 void icon_popup_delay_show(ObIconPopup *self, gulong usec,
314 gchar *text, const ObClientIcon *icon)
315 {
316 if (icon) {
317 self->a_icon->texture[0].type = RR_TEXTURE_RGBA;
318 self->a_icon->texture[0].data.rgba.width = icon->width;
319 self->a_icon->texture[0].data.rgba.height = icon->height;
320 self->a_icon->texture[0].data.rgba.data = icon->data;
321 } else
322 self->a_icon->texture[0].type = RR_TEXTURE_NONE;
323
324 popup_delay_show(self->popup, usec, text);
325 }
326
327 void icon_popup_icon_size_multiplier(ObIconPopup *self, guint wm, guint hm)
328 {
329 if (wm != 0) self->popup->iconwm = wm;
330 if (hm != 0) self->popup->iconhm = hm;
331 }
332
333 static void pager_popup_draw_icon(gint px, gint py, gint w, gint h,
334 gpointer data)
335 {
336 ObPagerPopup *self = data;
337 gint x, y;
338 guint rown, n;
339 guint horz_inc;
340 guint vert_inc;
341 guint r, c;
342 gint eachw, eachh;
343 const guint cols = screen_desktop_layout.columns;
344 const guint rows = screen_desktop_layout.rows;
345 const gint linewidth = ob_rr_theme->fbwidth;
346
347 eachw = (w - ((cols + 1) * linewidth)) / cols;
348 eachh = (h - ((rows + 1) * linewidth)) / rows;
349 /* make them squares */
350 eachw = eachh = MIN(eachw, eachh);
351
352 /* center */
353 px += (w - (cols * (eachw + linewidth) + linewidth)) / 2;
354 py += (h - (rows * (eachh + linewidth) + linewidth)) / 2;
355
356 if (eachw <= 0 || eachh <= 0)
357 return;
358
359 switch (screen_desktop_layout.orientation) {
360 case OB_ORIENTATION_HORZ:
361 switch (screen_desktop_layout.start_corner) {
362 case OB_CORNER_TOPLEFT:
363 n = 0;
364 horz_inc = 1;
365 vert_inc = cols;
366 break;
367 case OB_CORNER_TOPRIGHT:
368 n = cols - 1;
369 horz_inc = -1;
370 vert_inc = cols;
371 break;
372 case OB_CORNER_BOTTOMRIGHT:
373 n = rows * cols - 1;
374 horz_inc = -1;
375 vert_inc = -screen_desktop_layout.columns;
376 break;
377 case OB_CORNER_BOTTOMLEFT:
378 n = (rows - 1) * cols;
379 horz_inc = 1;
380 vert_inc = -cols;
381 break;
382 default:
383 g_assert_not_reached();
384 }
385 break;
386 case OB_ORIENTATION_VERT:
387 switch (screen_desktop_layout.start_corner) {
388 case OB_CORNER_TOPLEFT:
389 n = 0;
390 horz_inc = rows;
391 vert_inc = 1;
392 break;
393 case OB_CORNER_TOPRIGHT:
394 n = rows * (cols - 1);
395 horz_inc = -rows;
396 vert_inc = 1;
397 break;
398 case OB_CORNER_BOTTOMRIGHT:
399 n = rows * cols - 1;
400 horz_inc = -rows;
401 vert_inc = -1;
402 break;
403 case OB_CORNER_BOTTOMLEFT:
404 n = rows - 1;
405 horz_inc = rows;
406 vert_inc = -1;
407 break;
408 default:
409 g_assert_not_reached();
410 }
411 break;
412 default:
413 g_assert_not_reached();
414 }
415
416 rown = n;
417 for (r = 0, y = 0; r < rows; ++r, y += eachh + linewidth)
418 {
419 for (c = 0, x = 0; c < cols; ++c, x += eachw + linewidth)
420 {
421 RrAppearance *a;
422
423 if (n < self->desks) {
424 a = (n == self->curdesk ? self->hilight : self->unhilight);
425
426 a->surface.parent = self->popup->a_bg;
427 a->surface.parentx = x + px;
428 a->surface.parenty = y + py;
429 XMoveResizeWindow(ob_display, self->wins[n],
430 x + px, y + py, eachw, eachh);
431 RrPaint(a, self->wins[n], eachw, eachh);
432 }
433 n += horz_inc;
434 }
435 n = rown += vert_inc;
436 }
437 }
438
439 ObPagerPopup *pager_popup_new()
440 {
441 ObPagerPopup *self;
442
443 self = g_new(ObPagerPopup, 1);
444 self->popup = popup_new(TRUE);
445
446 self->desks = 0;
447 self->wins = g_new(Window, self->desks);
448 self->hilight = RrAppearanceCopy(ob_rr_theme->osd_hilite_fg);
449 self->unhilight = RrAppearanceCopy(ob_rr_theme->osd_unhilite_fg);
450
451 self->popup->hasicon = TRUE;
452 self->popup->draw_icon = pager_popup_draw_icon;
453 self->popup->draw_icon_data = self;
454
455 return self;
456 }
457
458 void pager_popup_free(ObPagerPopup *self)
459 {
460 if (self) {
461 guint i;
462
463 for (i = 0; i < self->desks; ++i)
464 XDestroyWindow(ob_display, self->wins[i]);
465 g_free(self->wins);
466 RrAppearanceFree(self->hilight);
467 RrAppearanceFree(self->unhilight);
468 popup_free(self->popup);
469 g_free(self);
470 }
471 }
472
473 void pager_popup_delay_show(ObPagerPopup *self, gulong usec,
474 gchar *text, guint desk)
475 {
476 guint i;
477
478 if (screen_num_desktops < self->desks)
479 for (i = screen_num_desktops; i < self->desks; ++i)
480 XDestroyWindow(ob_display, self->wins[i]);
481
482 if (screen_num_desktops != self->desks)
483 self->wins = g_renew(Window, self->wins, screen_num_desktops);
484
485 if (screen_num_desktops > self->desks)
486 for (i = self->desks; i < screen_num_desktops; ++i) {
487 XSetWindowAttributes attr;
488
489 attr.border_pixel = RrColorPixel(ob_rr_theme->frame_b_color);
490 self->wins[i] = XCreateWindow(ob_display, self->popup->bg,
491 0, 0, 1, 1, ob_rr_theme->fbwidth,
492 RrDepth(ob_rr_inst), InputOutput,
493 RrVisual(ob_rr_inst), CWBorderPixel,
494 &attr);
495 XMapWindow(ob_display, self->wins[i]);
496 }
497
498 self->desks = screen_num_desktops;
499 self->curdesk = desk;
500
501 popup_delay_show(self->popup, usec, text);
502 }
503
504 void pager_popup_icon_size_multiplier(ObPagerPopup *self, guint wm, guint hm)
505 {
506 if (wm != 0) self->popup->iconwm = wm;
507 if (hm != 0) self->popup->iconhm = hm;
508 }
This page took 0.063466 seconds and 5 git commands to generate.