1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 menuframe.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
19 #include "menuframe.h"
25 #include "render/theme.h"
28 #define SEPARATOR_HEIGHT 3
29 #define MAX_MENU_WIDTH 400
31 #define FRAME_EVENTMASK (ButtonPressMask |ButtonMotionMask | EnterWindowMask |\
33 #define TITLE_EVENTMASK (ButtonPressMask | ButtonMotionMask)
34 #define ENTRY_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
35 ButtonPressMask | ButtonReleaseMask)
37 GList
*menu_frame_visible
;
39 static ObMenuEntryFrame
* menu_entry_frame_new(ObMenuEntry
*entry
,
41 static void menu_entry_frame_free(ObMenuEntryFrame
*self
);
42 static void menu_frame_render(ObMenuFrame
*self
);
43 static void menu_frame_update(ObMenuFrame
*self
);
45 static Window
createWindow(Window parent
, unsigned long mask
,
46 XSetWindowAttributes
*attrib
)
48 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
49 RrDepth(ob_rr_inst
), InputOutput
,
50 RrVisual(ob_rr_inst
), mask
, attrib
);
53 ObMenuFrame
* menu_frame_new(ObMenu
*menu
, ObClient
*client
)
56 XSetWindowAttributes attr
;
58 self
= g_new0(ObMenuFrame
, 1);
59 self
->type
= Window_Menu
;
61 self
->selected
= NULL
;
62 self
->show_title
= TRUE
;
63 self
->client
= client
;
65 attr
.event_mask
= FRAME_EVENTMASK
;
66 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
),
68 attr
.event_mask
= TITLE_EVENTMASK
;
69 self
->title
= createWindow(self
->window
, CWEventMask
, &attr
);
70 self
->items
= createWindow(self
->window
, 0, NULL
);
72 XMapWindow(ob_display
, self
->items
);
74 self
->a_title
= RrAppearanceCopy(ob_rr_theme
->a_menu_title
);
75 self
->a_items
= RrAppearanceCopy(ob_rr_theme
->a_menu
);
77 stacking_add(MENU_AS_WINDOW(self
));
82 void menu_frame_free(ObMenuFrame
*self
)
85 while (self
->entries
) {
86 menu_entry_frame_free(self
->entries
->data
);
87 self
->entries
= g_list_delete_link(self
->entries
, self
->entries
);
90 stacking_remove(MENU_AS_WINDOW(self
));
92 XDestroyWindow(ob_display
, self
->items
);
93 XDestroyWindow(ob_display
, self
->title
);
94 XDestroyWindow(ob_display
, self
->window
);
96 RrAppearanceFree(self
->a_items
);
97 RrAppearanceFree(self
->a_title
);
103 static ObMenuEntryFrame
* menu_entry_frame_new(ObMenuEntry
*entry
,
106 ObMenuEntryFrame
*self
;
107 XSetWindowAttributes attr
;
109 self
= g_new0(ObMenuEntryFrame
, 1);
113 attr
.event_mask
= ENTRY_EVENTMASK
;
114 self
->window
= createWindow(self
->frame
->items
, CWEventMask
, &attr
);
115 self
->text
= createWindow(self
->window
, 0, NULL
);
116 if (entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
) {
117 self
->icon
= createWindow(self
->window
, 0, NULL
);
118 self
->bullet
= createWindow(self
->window
, 0, NULL
);
121 XMapWindow(ob_display
, self
->window
);
122 XMapWindow(ob_display
, self
->text
);
124 self
->a_normal
= RrAppearanceCopy(ob_rr_theme
->a_menu_normal
);
125 self
->a_disabled
= RrAppearanceCopy(ob_rr_theme
->a_menu_disabled
);
126 self
->a_selected
= RrAppearanceCopy(ob_rr_theme
->a_menu_selected
);
128 if (entry
->type
== OB_MENU_ENTRY_TYPE_SEPARATOR
) {
129 self
->a_separator
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
130 self
->a_separator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
132 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
133 self
->a_icon
->texture
[0].type
= RR_TEXTURE_RGBA
;
134 self
->a_mask
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
135 self
->a_mask
->texture
[0].type
= RR_TEXTURE_MASK
;
136 self
->a_bullet_normal
=
137 RrAppearanceCopy(ob_rr_theme
->a_menu_bullet_normal
);
138 self
->a_bullet_selected
=
139 RrAppearanceCopy(ob_rr_theme
->a_menu_bullet_selected
);
142 self
->a_text_normal
=
143 RrAppearanceCopy(ob_rr_theme
->a_menu_text_normal
);
144 self
->a_text_disabled
=
145 RrAppearanceCopy(ob_rr_theme
->a_menu_text_disabled
);
146 self
->a_text_selected
=
147 RrAppearanceCopy(ob_rr_theme
->a_menu_text_selected
);
152 static void menu_entry_frame_free(ObMenuEntryFrame
*self
)
155 XDestroyWindow(ob_display
, self
->text
);
156 XDestroyWindow(ob_display
, self
->window
);
157 if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
) {
158 XDestroyWindow(ob_display
, self
->icon
);
159 XDestroyWindow(ob_display
, self
->bullet
);
162 RrAppearanceFree(self
->a_normal
);
163 RrAppearanceFree(self
->a_disabled
);
164 RrAppearanceFree(self
->a_selected
);
166 RrAppearanceFree(self
->a_separator
);
167 RrAppearanceFree(self
->a_icon
);
168 RrAppearanceFree(self
->a_mask
);
169 RrAppearanceFree(self
->a_text_normal
);
170 RrAppearanceFree(self
->a_text_disabled
);
171 RrAppearanceFree(self
->a_text_selected
);
172 RrAppearanceFree(self
->a_bullet_normal
);
173 RrAppearanceFree(self
->a_bullet_selected
);
179 void menu_frame_move(ObMenuFrame
*self
, gint x
, gint y
)
181 RECT_SET_POINT(self
->area
, x
, y
);
182 XMoveWindow(ob_display
, self
->window
, self
->area
.x
, self
->area
.y
);
185 void menu_frame_move_on_screen(ObMenuFrame
*self
)
192 for (i
= 0; i
< screen_num_monitors
; ++i
) {
193 a
= screen_physical_area_monitor(i
);
194 if (RECT_INTERSECTS_RECT(*a
, self
->area
))
197 if (!a
) a
= screen_physical_area_monitor(0);
199 half
= g_list_length(self
->entries
) / 2;
200 pos
= g_list_index(self
->entries
, self
->selected
);
202 /* if in the bottom half then check this shit first, will keep the bottom
203 edge of the menu visible */
205 dx
= MAX(dx
, a
->x
- self
->area
.x
);
206 dy
= MAX(dy
, a
->y
- self
->area
.y
);
208 dx
= MIN(dx
, (a
->x
+ a
->width
) - (self
->area
.x
+ self
->area
.width
));
209 dy
= MIN(dy
, (a
->y
+ a
->height
) - (self
->area
.y
+ self
->area
.height
));
210 /* if in the top half then check this shit last, will keep the top
211 edge of the menu visible */
213 dx
= MAX(dx
, a
->x
- self
->area
.x
);
214 dy
= MAX(dy
, a
->y
- self
->area
.y
);
220 for (f
= self
; f
; f
= f
->parent
)
221 menu_frame_move(f
, f
->area
.x
+ dx
, f
->area
.y
+ dy
);
222 for (f
= self
->child
; f
; f
= f
->child
)
223 menu_frame_move(f
, f
->area
.x
+ dx
, f
->area
.y
+ dy
);
224 XWarpPointer(ob_display
, None
, None
, 0, 0, 0, 0, dx
, dy
);
228 static void menu_entry_frame_render(ObMenuEntryFrame
*self
)
230 RrAppearance
*item_a
, *text_a
;
233 ObMenuFrame
*frame
= self
->frame
;
235 item_a
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
236 !self
->entry
->data
.normal
.enabled
) ?
238 (self
== self
->frame
->selected
?
241 switch (self
->entry
->type
) {
242 case OB_MENU_ENTRY_TYPE_NORMAL
:
243 case OB_MENU_ENTRY_TYPE_SUBMENU
:
244 th
= self
->frame
->item_h
;
246 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
247 th
= SEPARATOR_HEIGHT
+ 2*PADDING
;
250 RECT_SET_SIZE(self
->area
, self
->frame
->inner_w
, th
);
251 XResizeWindow(ob_display
, self
->window
,
252 self
->area
.width
, self
->area
.height
);
253 item_a
->surface
.parent
= self
->frame
->a_items
;
254 item_a
->surface
.parentx
= self
->area
.x
;
255 item_a
->surface
.parenty
= self
->area
.y
;
256 RrPaint(item_a
, self
->window
, self
->area
.width
, self
->area
.height
);
258 text_a
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
259 !self
->entry
->data
.normal
.enabled
) ?
260 self
->a_text_disabled
:
261 (self
== self
->frame
->selected
?
262 self
->a_text_selected
:
263 self
->a_text_normal
));
264 switch (self
->entry
->type
) {
265 case OB_MENU_ENTRY_TYPE_NORMAL
:
266 text_a
->texture
[0].data
.text
.string
= self
->entry
->data
.normal
.label
;
268 case OB_MENU_ENTRY_TYPE_SUBMENU
:
269 sub
= self
->entry
->data
.submenu
.submenu
;
270 text_a
->texture
[0].data
.text
.string
= sub
? sub
->title
: "";
272 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
276 switch (self
->entry
->type
) {
277 case OB_MENU_ENTRY_TYPE_NORMAL
:
278 XMoveResizeWindow(ob_display
, self
->text
,
279 self
->frame
->text_x
, PADDING
,
281 self
->frame
->item_h
- 2*PADDING
);
282 text_a
->surface
.parent
= item_a
;
283 text_a
->surface
.parentx
= self
->frame
->text_x
;
284 text_a
->surface
.parenty
= PADDING
;
285 RrPaint(text_a
, self
->text
, self
->frame
->text_w
,
286 self
->frame
->item_h
- 2*PADDING
);
288 case OB_MENU_ENTRY_TYPE_SUBMENU
:
289 XMoveResizeWindow(ob_display
, self
->text
,
290 self
->frame
->text_x
, PADDING
,
291 self
->frame
->text_w
- self
->frame
->item_h
,
292 self
->frame
->item_h
- 2*PADDING
);
293 text_a
->surface
.parent
= item_a
;
294 text_a
->surface
.parentx
= self
->frame
->text_x
;
295 text_a
->surface
.parenty
= PADDING
;
296 RrPaint(text_a
, self
->text
, self
->frame
->text_w
- self
->frame
->item_h
,
297 self
->frame
->item_h
- 2*PADDING
);
299 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
300 XMoveResizeWindow(ob_display
, self
->text
, PADDING
, PADDING
,
301 self
->area
.width
- 2*PADDING
, SEPARATOR_HEIGHT
);
302 self
->a_separator
->surface
.parent
= item_a
;
303 self
->a_separator
->surface
.parentx
= PADDING
;
304 self
->a_separator
->surface
.parenty
= PADDING
;
305 self
->a_separator
->texture
[0].data
.lineart
.color
=
306 text_a
->texture
[0].data
.text
.color
;
307 self
->a_separator
->texture
[0].data
.lineart
.x1
= 2*PADDING
;
308 self
->a_separator
->texture
[0].data
.lineart
.y1
= SEPARATOR_HEIGHT
/ 2;
309 self
->a_separator
->texture
[0].data
.lineart
.x2
=
310 self
->area
.width
- 4*PADDING
;
311 self
->a_separator
->texture
[0].data
.lineart
.y2
= SEPARATOR_HEIGHT
/ 2;
312 RrPaint(self
->a_separator
, self
->text
,
313 self
->area
.width
- 2*PADDING
, SEPARATOR_HEIGHT
);
317 if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
&&
318 self
->entry
->data
.normal
.icon_data
)
320 XMoveResizeWindow(ob_display
, self
->icon
,
321 PADDING
, frame
->item_margin
.top
,
322 self
->frame
->item_h
- frame
->item_margin
.top
323 - frame
->item_margin
.bottom
,
324 self
->frame
->item_h
- frame
->item_margin
.top
325 - frame
->item_margin
.bottom
);
326 self
->a_icon
->texture
[0].data
.rgba
.width
=
327 self
->entry
->data
.normal
.icon_width
;
328 self
->a_icon
->texture
[0].data
.rgba
.height
=
329 self
->entry
->data
.normal
.icon_height
;
330 self
->a_icon
->texture
[0].data
.rgba
.data
=
331 self
->entry
->data
.normal
.icon_data
;
332 self
->a_icon
->surface
.parent
= item_a
;
333 self
->a_icon
->surface
.parentx
= PADDING
;
334 self
->a_icon
->surface
.parenty
= frame
->item_margin
.top
;
335 RrPaint(self
->a_icon
, self
->icon
,
336 self
->frame
->item_h
- frame
->item_margin
.top
337 - frame
->item_margin
.bottom
,
338 self
->frame
->item_h
- frame
->item_margin
.top
339 - frame
->item_margin
.bottom
);
340 XMapWindow(ob_display
, self
->icon
);
341 } else if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
&&
342 self
->entry
->data
.normal
.mask
)
346 XMoveResizeWindow(ob_display
, self
->icon
,
347 PADDING
, frame
->item_margin
.top
,
348 self
->frame
->item_h
- frame
->item_margin
.top
349 - frame
->item_margin
.bottom
,
350 self
->frame
->item_h
- frame
->item_margin
.top
351 - frame
->item_margin
.bottom
);
352 self
->a_mask
->texture
[0].data
.mask
.mask
=
353 self
->entry
->data
.normal
.mask
;
355 c
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
356 !self
->entry
->data
.normal
.enabled
) ?
357 self
->entry
->data
.normal
.mask_disabled_color
:
358 (self
== self
->frame
->selected
?
359 self
->entry
->data
.normal
.mask_selected_color
:
360 self
->entry
->data
.normal
.mask_normal_color
));
361 self
->a_mask
->texture
[0].data
.mask
.color
= c
;
363 self
->a_mask
->surface
.parent
= item_a
;
364 self
->a_mask
->surface
.parentx
= PADDING
;
365 self
->a_mask
->surface
.parenty
= frame
->item_margin
.top
;
366 RrPaint(self
->a_mask
, self
->icon
,
367 self
->frame
->item_h
- frame
->item_margin
.top
368 - frame
->item_margin
.bottom
,
369 self
->frame
->item_h
- frame
->item_margin
.top
370 - frame
->item_margin
.bottom
);
371 XMapWindow(ob_display
, self
->icon
);
373 XUnmapWindow(ob_display
, self
->icon
);
375 if (self
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
) {
376 RrAppearance
*bullet_a
;
377 XMoveResizeWindow(ob_display
, self
->bullet
,
378 self
->frame
->text_x
+ self
->frame
->text_w
379 - self
->frame
->item_h
+ PADDING
, PADDING
,
380 self
->frame
->item_h
- 2*PADDING
,
381 self
->frame
->item_h
- 2*PADDING
);
382 bullet_a
= (self
== self
->frame
->selected
?
383 self
->a_bullet_selected
:
384 self
->a_bullet_normal
);
385 bullet_a
->surface
.parent
= item_a
;
386 bullet_a
->surface
.parentx
=
387 self
->frame
->text_x
+ self
->frame
->text_w
- self
->frame
->item_h
389 bullet_a
->surface
.parenty
= PADDING
;
390 RrPaint(bullet_a
, self
->bullet
,
391 self
->frame
->item_h
- 2*PADDING
,
392 self
->frame
->item_h
- 2*PADDING
);
393 XMapWindow(ob_display
, self
->bullet
);
395 XUnmapWindow(ob_display
, self
->bullet
);
400 static void menu_frame_render(ObMenuFrame
*self
)
404 gint tw
, th
; /* temps */
406 gboolean has_icon
= FALSE
;
409 XSetWindowBorderWidth(ob_display
, self
->window
, ob_rr_theme
->bwidth
);
410 XSetWindowBorder(ob_display
, self
->window
,
411 RrColorPixel(ob_rr_theme
->b_color
));
413 if (!self
->parent
&& self
->show_title
) {
414 XMoveWindow(ob_display
, self
->title
,
415 -ob_rr_theme
->bwidth
, h
- ob_rr_theme
->bwidth
);
417 self
->a_title
->texture
[0].data
.text
.string
= self
->menu
->title
;
418 RrMinsize(self
->a_title
, &tw
, &th
);
419 tw
= MIN(tw
, MAX_MENU_WIDTH
) + ob_rr_theme
->padding
* 2;
422 th
= ob_rr_theme
->menu_title_height
;
423 h
+= (self
->title_h
= th
+ ob_rr_theme
->bwidth
);
425 XSetWindowBorderWidth(ob_display
, self
->title
, ob_rr_theme
->bwidth
);
426 XSetWindowBorder(ob_display
, self
->title
,
427 RrColorPixel(ob_rr_theme
->b_color
));
430 XMoveWindow(ob_display
, self
->items
, 0, h
);
432 STRUT_SET(self
->item_margin
, 0, 0, 0, 0);
435 ObMenuEntryFrame
*e
= self
->entries
->data
;
438 e
->a_text_normal
->texture
[0].data
.text
.string
= "";
439 RrMinsize(e
->a_text_normal
, &tw
, &th
);
444 RrMargins(e
->a_normal
, &l
, &t
, &r
, &b
);
445 STRUT_SET(self
->item_margin
,
446 MAX(self
->item_margin
.left
, l
),
447 MAX(self
->item_margin
.top
, t
),
448 MAX(self
->item_margin
.right
, r
),
449 MAX(self
->item_margin
.bottom
, b
));
450 RrMargins(e
->a_selected
, &l
, &t
, &r
, &b
);
451 STRUT_SET(self
->item_margin
,
452 MAX(self
->item_margin
.left
, l
),
453 MAX(self
->item_margin
.top
, t
),
454 MAX(self
->item_margin
.right
, r
),
455 MAX(self
->item_margin
.bottom
, b
));
456 RrMargins(e
->a_disabled
, &l
, &t
, &r
, &b
);
457 STRUT_SET(self
->item_margin
,
458 MAX(self
->item_margin
.left
, l
),
459 MAX(self
->item_margin
.top
, t
),
460 MAX(self
->item_margin
.right
, r
),
461 MAX(self
->item_margin
.bottom
, b
));
465 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
466 RrAppearance
*text_a
;
467 ObMenuEntryFrame
*e
= it
->data
;
469 RECT_SET_POINT(e
->area
, 0, allitems_h
);
470 XMoveWindow(ob_display
, e
->window
, 0, e
->area
.y
);
472 text_a
= ((e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
473 !e
->entry
->data
.normal
.enabled
) ?
475 (e
== self
->selected
?
478 switch (e
->entry
->type
) {
479 case OB_MENU_ENTRY_TYPE_NORMAL
:
480 text_a
->texture
[0].data
.text
.string
= e
->entry
->data
.normal
.label
;
481 RrMinsize(text_a
, &tw
, &th
);
482 tw
= MIN(tw
, MAX_MENU_WIDTH
);
484 if (e
->entry
->data
.normal
.icon_data
||
485 e
->entry
->data
.normal
.mask
)
488 case OB_MENU_ENTRY_TYPE_SUBMENU
:
489 sub
= e
->entry
->data
.submenu
.submenu
;
490 text_a
->texture
[0].data
.text
.string
= sub
? sub
->title
: "";
491 RrMinsize(text_a
, &tw
, &th
);
492 tw
= MIN(tw
, MAX_MENU_WIDTH
);
494 if (e
->entry
->data
.normal
.icon_data
||
495 e
->entry
->data
.normal
.mask
)
498 tw
+= self
->item_h
- PADDING
;
500 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
502 th
= SEPARATOR_HEIGHT
;
512 self
->text_x
= PADDING
;
517 w
+= self
->item_h
+ PADDING
;
518 self
->text_x
+= self
->item_h
+ PADDING
;
528 XResizeWindow(ob_display
, self
->window
, w
, h
);
529 XResizeWindow(ob_display
, self
->items
, w
, allitems_h
);
533 if (!self
->parent
&& self
->show_title
) {
534 XResizeWindow(ob_display
, self
->title
,
535 w
, self
->title_h
- ob_rr_theme
->bwidth
);
536 RrPaint(self
->a_title
, self
->title
,
537 w
, self
->title_h
- ob_rr_theme
->bwidth
);
538 XMapWindow(ob_display
, self
->title
);
540 XUnmapWindow(ob_display
, self
->title
);
542 RrPaint(self
->a_items
, self
->items
, w
, allitems_h
);
544 for (it
= self
->entries
; it
; it
= g_list_next(it
))
545 menu_entry_frame_render(it
->data
);
547 w
+= ob_rr_theme
->bwidth
* 2;
548 h
+= ob_rr_theme
->bwidth
* 2;
550 RECT_SET_SIZE(self
->area
, w
, h
);
555 static void menu_frame_update(ObMenuFrame
*self
)
559 menu_pipe_execute(self
->menu
);
560 menu_find_submenus(self
->menu
);
562 self
->selected
= NULL
;
564 for (mit
= self
->menu
->entries
, fit
= self
->entries
; mit
&& fit
;
565 mit
= g_list_next(mit
), fit
= g_list_next(fit
))
567 ObMenuEntryFrame
*f
= fit
->data
;
568 f
->entry
= mit
->data
;
572 ObMenuEntryFrame
*e
= menu_entry_frame_new(mit
->data
, self
);
573 self
->entries
= g_list_append(self
->entries
, e
);
574 mit
= g_list_next(mit
);
578 GList
*n
= g_list_next(fit
);
579 menu_entry_frame_free(fit
->data
);
580 self
->entries
= g_list_delete_link(self
->entries
, fit
);
584 menu_frame_render(self
);
587 void menu_frame_show(ObMenuFrame
*self
, ObMenuFrame
*parent
)
591 if (g_list_find(menu_frame_visible
, self
))
596 menu_frame_hide(parent
->child
);
597 parent
->child
= self
;
599 self
->parent
= parent
;
601 if (menu_frame_visible
== NULL
) {
602 /* no menus shown yet */
603 grab_pointer(TRUE
, OB_CURSOR_NONE
);
607 /* determine if the underlying menu is already visible */
608 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
609 ObMenuFrame
*f
= it
->data
;
610 if (f
->menu
== self
->menu
)
614 if (self
->menu
->update_func
)
615 self
->menu
->update_func(self
, self
->menu
->data
);
618 menu_frame_update(self
);
620 menu_frame_visible
= g_list_prepend(menu_frame_visible
, self
);
622 menu_frame_move_on_screen(self
);
624 XMapWindow(ob_display
, self
->window
);
627 void menu_frame_hide(ObMenuFrame
*self
)
629 GList
*it
= g_list_find(menu_frame_visible
, self
);
635 menu_frame_hide(self
->child
);
638 self
->parent
->child
= NULL
;
641 menu_frame_visible
= g_list_delete_link(menu_frame_visible
, it
);
643 if (menu_frame_visible
== NULL
) {
644 /* last menu shown */
645 grab_pointer(FALSE
, OB_CURSOR_NONE
);
646 grab_keyboard(FALSE
);
649 XUnmapWindow(ob_display
, self
->window
);
651 menu_frame_free(self
);
654 void menu_frame_hide_all()
656 GList
*it
= g_list_last(menu_frame_visible
);
658 menu_frame_hide(it
->data
);
661 void menu_frame_hide_all_client(ObClient
*client
)
663 GList
*it
= g_list_last(menu_frame_visible
);
665 ObMenuFrame
*f
= it
->data
;
666 if (f
->client
== client
)
672 ObMenuFrame
* menu_frame_under(gint x
, gint y
)
674 ObMenuFrame
*ret
= NULL
;
677 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
678 ObMenuFrame
*f
= it
->data
;
680 if (RECT_CONTAINS(f
->area
, x
, y
)) {
688 ObMenuEntryFrame
* menu_entry_frame_under(gint x
, gint y
)
691 ObMenuEntryFrame
*ret
= NULL
;
694 if ((frame
= menu_frame_under(x
, y
))) {
695 x
-= ob_rr_theme
->bwidth
+ frame
->area
.x
;
696 y
-= frame
->title_h
+ ob_rr_theme
->bwidth
+ frame
->area
.y
;
698 for (it
= frame
->entries
; it
; it
= g_list_next(it
)) {
699 ObMenuEntryFrame
*e
= it
->data
;
701 if (RECT_CONTAINS(e
->area
, x
, y
)) {
710 void menu_frame_select(ObMenuFrame
*self
, ObMenuEntryFrame
*entry
)
712 ObMenuEntryFrame
*old
= self
->selected
;
713 ObMenuFrame
*oldchild
= self
->child
;
715 if (entry
&& entry
->entry
->type
== OB_MENU_ENTRY_TYPE_SEPARATOR
)
718 if (old
== entry
) return;
720 self
->selected
= entry
;
723 menu_entry_frame_render(old
);
725 menu_frame_hide(oldchild
);
727 if (self
->selected
) {
728 menu_entry_frame_render(self
->selected
);
730 if (self
->selected
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
731 menu_entry_frame_show_submenu(self
->selected
);
735 void menu_entry_frame_show_submenu(ObMenuEntryFrame
*self
)
739 if (!self
->entry
->data
.submenu
.submenu
) return;
741 f
= menu_frame_new(self
->entry
->data
.submenu
.submenu
,
742 self
->frame
->client
);
744 self
->frame
->area
.x
+ self
->frame
->area
.width
745 - ob_rr_theme
->menu_overlap
- ob_rr_theme
->bwidth
,
746 self
->frame
->area
.y
+ self
->frame
->title_h
+
747 self
->area
.y
+ ob_rr_theme
->menu_overlap
);
748 menu_frame_show(f
, self
->frame
);
751 void menu_entry_frame_execute(ObMenuEntryFrame
*self
, guint state
)
753 if (self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
754 self
->entry
->data
.normal
.enabled
)
756 /* grab all this shizzle, cuz when the menu gets hidden, 'self'
758 ObMenuEntry
*entry
= self
->entry
;
759 ObMenuExecuteFunc func
= self
->frame
->menu
->execute_func
;
760 gpointer data
= self
->frame
->menu
->data
;
761 GSList
*acts
= self
->entry
->data
.normal
.actions
;
762 ObClient
*client
= self
->frame
->client
;
764 /* release grabs before executing the shit */
765 if (!(state
& ControlMask
))
766 menu_frame_hide_all();
769 func(entry
, state
, data
);
771 action_run(acts
, client
, state
);
775 void menu_frame_select_previous(ObMenuFrame
*self
)
777 GList
*it
= NULL
, *start
;
780 start
= it
= g_list_find(self
->entries
, self
->selected
);
784 it
= it
? g_list_previous(it
) : g_list_last(self
->entries
);
790 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
792 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
793 e
->entry
->data
.normal
.enabled
)
798 menu_frame_select(self
, it
? it
->data
: NULL
);
801 void menu_frame_select_next(ObMenuFrame
*self
)
803 GList
*it
= NULL
, *start
;
806 start
= it
= g_list_find(self
->entries
, self
->selected
);
810 it
= it
? g_list_next(it
) : self
->entries
;
816 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
818 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
819 e
->entry
->data
.normal
.enabled
)
824 menu_frame_select(self
, it
? it
->data
: NULL
);