1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 menuframe.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.
20 #include "menuframe.h"
27 #include "render/theme.h"
30 #define SEPARATOR_HEIGHT 3
31 #define MAX_MENU_WIDTH 400
33 #define FRAME_EVENTMASK (ButtonPressMask |ButtonMotionMask | EnterWindowMask |\
35 #define TITLE_EVENTMASK (ButtonPressMask | ButtonMotionMask)
36 #define ENTRY_EVENTMASK (EnterWindowMask | LeaveWindowMask | \
37 ButtonPressMask | ButtonReleaseMask)
39 GList
*menu_frame_visible
;
41 static ObMenuEntryFrame
* menu_entry_frame_new(ObMenuEntry
*entry
,
43 static void menu_entry_frame_free(ObMenuEntryFrame
*self
);
44 static void menu_frame_render(ObMenuFrame
*self
);
45 static void menu_frame_update(ObMenuFrame
*self
);
46 static gboolean
menu_entry_frame_submenu_timeout(gpointer data
);
48 static Window
createWindow(Window parent
, gulong mask
,
49 XSetWindowAttributes
*attrib
)
51 return XCreateWindow(ob_display
, parent
, 0, 0, 1, 1, 0,
52 RrDepth(ob_rr_inst
), InputOutput
,
53 RrVisual(ob_rr_inst
), mask
, attrib
);
56 ObMenuFrame
* menu_frame_new(ObMenu
*menu
, ObClient
*client
)
59 XSetWindowAttributes attr
;
61 self
= g_new0(ObMenuFrame
, 1);
62 self
->type
= Window_Menu
;
64 self
->selected
= NULL
;
65 self
->show_title
= TRUE
;
66 self
->client
= client
;
68 attr
.event_mask
= FRAME_EVENTMASK
;
69 self
->window
= createWindow(RootWindow(ob_display
, ob_screen
),
71 attr
.event_mask
= TITLE_EVENTMASK
;
72 self
->title
= createWindow(self
->window
, CWEventMask
, &attr
);
73 self
->items
= createWindow(self
->window
, 0, NULL
);
75 XMapWindow(ob_display
, self
->items
);
77 self
->a_title
= RrAppearanceCopy(ob_rr_theme
->a_menu_title
);
78 self
->a_items
= RrAppearanceCopy(ob_rr_theme
->a_menu
);
80 stacking_add(MENU_AS_WINDOW(self
));
85 void menu_frame_free(ObMenuFrame
*self
)
88 while (self
->entries
) {
89 menu_entry_frame_free(self
->entries
->data
);
90 self
->entries
= g_list_delete_link(self
->entries
, self
->entries
);
93 stacking_remove(MENU_AS_WINDOW(self
));
95 XDestroyWindow(ob_display
, self
->items
);
96 XDestroyWindow(ob_display
, self
->title
);
97 XDestroyWindow(ob_display
, self
->window
);
99 RrAppearanceFree(self
->a_items
);
100 RrAppearanceFree(self
->a_title
);
106 static ObMenuEntryFrame
* menu_entry_frame_new(ObMenuEntry
*entry
,
109 ObMenuEntryFrame
*self
;
110 XSetWindowAttributes attr
;
112 self
= g_new0(ObMenuEntryFrame
, 1);
116 attr
.event_mask
= ENTRY_EVENTMASK
;
117 self
->window
= createWindow(self
->frame
->items
, CWEventMask
, &attr
);
118 self
->text
= createWindow(self
->window
, 0, NULL
);
119 if (entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
) {
120 self
->icon
= createWindow(self
->window
, 0, NULL
);
121 self
->bullet
= createWindow(self
->window
, 0, NULL
);
124 XMapWindow(ob_display
, self
->window
);
125 XMapWindow(ob_display
, self
->text
);
127 self
->a_normal
= RrAppearanceCopy(ob_rr_theme
->a_menu_normal
);
128 self
->a_disabled
= RrAppearanceCopy(ob_rr_theme
->a_menu_disabled
);
129 self
->a_selected
= RrAppearanceCopy(ob_rr_theme
->a_menu_selected
);
131 if (entry
->type
== OB_MENU_ENTRY_TYPE_SEPARATOR
) {
132 self
->a_separator
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
133 self
->a_separator
->texture
[0].type
= RR_TEXTURE_LINE_ART
;
135 self
->a_icon
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
136 self
->a_icon
->texture
[0].type
= RR_TEXTURE_RGBA
;
137 self
->a_mask
= RrAppearanceCopy(ob_rr_theme
->a_clear_tex
);
138 self
->a_mask
->texture
[0].type
= RR_TEXTURE_MASK
;
139 self
->a_bullet_normal
=
140 RrAppearanceCopy(ob_rr_theme
->a_menu_bullet_normal
);
141 self
->a_bullet_selected
=
142 RrAppearanceCopy(ob_rr_theme
->a_menu_bullet_selected
);
145 self
->a_text_normal
=
146 RrAppearanceCopy(ob_rr_theme
->a_menu_text_normal
);
147 self
->a_text_disabled
=
148 RrAppearanceCopy(ob_rr_theme
->a_menu_text_disabled
);
149 self
->a_text_selected
=
150 RrAppearanceCopy(ob_rr_theme
->a_menu_text_selected
);
155 static void menu_entry_frame_free(ObMenuEntryFrame
*self
)
158 XDestroyWindow(ob_display
, self
->text
);
159 XDestroyWindow(ob_display
, self
->window
);
160 if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
) {
161 XDestroyWindow(ob_display
, self
->icon
);
162 XDestroyWindow(ob_display
, self
->bullet
);
165 RrAppearanceFree(self
->a_normal
);
166 RrAppearanceFree(self
->a_disabled
);
167 RrAppearanceFree(self
->a_selected
);
169 RrAppearanceFree(self
->a_separator
);
170 RrAppearanceFree(self
->a_icon
);
171 RrAppearanceFree(self
->a_mask
);
172 RrAppearanceFree(self
->a_text_normal
);
173 RrAppearanceFree(self
->a_text_disabled
);
174 RrAppearanceFree(self
->a_text_selected
);
175 RrAppearanceFree(self
->a_bullet_normal
);
176 RrAppearanceFree(self
->a_bullet_selected
);
182 void menu_frame_move(ObMenuFrame
*self
, gint x
, gint y
)
184 RECT_SET_POINT(self
->area
, x
, y
);
185 XMoveWindow(ob_display
, self
->window
, self
->area
.x
, self
->area
.y
);
188 void menu_frame_move_on_screen(ObMenuFrame
*self
)
195 a
= screen_physical_area_monitor(self
->monitor
);
197 half
= g_list_length(self
->entries
) / 2;
198 pos
= g_list_index(self
->entries
, self
->selected
);
200 /* if in the bottom half then check this shit first, will keep the bottom
201 edge of the menu visible */
203 dx
= MAX(dx
, a
->x
- self
->area
.x
);
204 dy
= MAX(dy
, a
->y
- self
->area
.y
);
206 dx
= MIN(dx
, (a
->x
+ a
->width
) - (self
->area
.x
+ self
->area
.width
));
207 dy
= MIN(dy
, (a
->y
+ a
->height
) - (self
->area
.y
+ self
->area
.height
));
208 /* if in the top half then check this shit last, will keep the top
209 edge of the menu visible */
211 dx
= MAX(dx
, a
->x
- self
->area
.x
);
212 dy
= MAX(dy
, a
->y
- self
->area
.y
);
218 /* move the current menu frame to fit, but dont touch parents yet */
219 menu_frame_move(self
, self
->area
.x
+ dx
, self
->area
.y
+ dy
);
220 if (!config_menu_xorstyle
)
221 dy
= 0; /* if we want to be like xor, move parents in y- *
222 * and x-direction, otherwise just in x-dir */
223 for (f
= self
->parent
; f
; f
= f
->parent
)
224 menu_frame_move(f
, f
->area
.x
+ dx
, f
->area
.y
+ dy
);
225 for (f
= self
->child
; f
; f
= f
->child
)
226 menu_frame_move(f
, f
->area
.x
+ dx
, f
->area
.y
+ dy
);
227 if (config_menu_warppointer
)
228 XWarpPointer(ob_display
, None
, None
, 0, 0, 0, 0, dx
, dy
);
232 static void menu_entry_frame_render(ObMenuEntryFrame
*self
)
234 RrAppearance
*item_a
, *text_a
;
237 ObMenuFrame
*frame
= self
->frame
;
239 item_a
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
240 !self
->entry
->data
.normal
.enabled
) ?
242 (self
== self
->frame
->selected
?
245 switch (self
->entry
->type
) {
246 case OB_MENU_ENTRY_TYPE_NORMAL
:
247 case OB_MENU_ENTRY_TYPE_SUBMENU
:
248 th
= self
->frame
->item_h
;
250 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
251 th
= SEPARATOR_HEIGHT
+ 2*PADDING
;
254 RECT_SET_SIZE(self
->area
, self
->frame
->inner_w
, th
);
255 XResizeWindow(ob_display
, self
->window
,
256 self
->area
.width
, self
->area
.height
);
257 item_a
->surface
.parent
= self
->frame
->a_items
;
258 item_a
->surface
.parentx
= self
->area
.x
;
259 item_a
->surface
.parenty
= self
->area
.y
;
260 RrPaint(item_a
, self
->window
, self
->area
.width
, self
->area
.height
);
262 text_a
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
263 !self
->entry
->data
.normal
.enabled
) ?
264 self
->a_text_disabled
:
265 (self
== self
->frame
->selected
?
266 self
->a_text_selected
:
267 self
->a_text_normal
));
268 switch (self
->entry
->type
) {
269 case OB_MENU_ENTRY_TYPE_NORMAL
:
270 text_a
->texture
[0].data
.text
.string
= self
->entry
->data
.normal
.label
;
272 case OB_MENU_ENTRY_TYPE_SUBMENU
:
273 sub
= self
->entry
->data
.submenu
.submenu
;
274 text_a
->texture
[0].data
.text
.string
= sub
? sub
->title
: "";
276 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
280 switch (self
->entry
->type
) {
281 case OB_MENU_ENTRY_TYPE_NORMAL
:
282 XMoveResizeWindow(ob_display
, self
->text
,
283 self
->frame
->text_x
, PADDING
,
285 self
->frame
->item_h
- 2*PADDING
);
286 text_a
->surface
.parent
= item_a
;
287 text_a
->surface
.parentx
= self
->frame
->text_x
;
288 text_a
->surface
.parenty
= PADDING
;
289 RrPaint(text_a
, self
->text
, self
->frame
->text_w
,
290 self
->frame
->item_h
- 2*PADDING
);
292 case OB_MENU_ENTRY_TYPE_SUBMENU
:
293 XMoveResizeWindow(ob_display
, self
->text
,
294 self
->frame
->text_x
, PADDING
,
295 self
->frame
->text_w
- self
->frame
->item_h
,
296 self
->frame
->item_h
- 2*PADDING
);
297 text_a
->surface
.parent
= item_a
;
298 text_a
->surface
.parentx
= self
->frame
->text_x
;
299 text_a
->surface
.parenty
= PADDING
;
300 RrPaint(text_a
, self
->text
, self
->frame
->text_w
- self
->frame
->item_h
,
301 self
->frame
->item_h
- 2*PADDING
);
303 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
304 XMoveResizeWindow(ob_display
, self
->text
, PADDING
, PADDING
,
305 self
->area
.width
- 2*PADDING
, SEPARATOR_HEIGHT
);
306 self
->a_separator
->surface
.parent
= item_a
;
307 self
->a_separator
->surface
.parentx
= PADDING
;
308 self
->a_separator
->surface
.parenty
= PADDING
;
309 self
->a_separator
->texture
[0].data
.lineart
.color
=
310 text_a
->texture
[0].data
.text
.color
;
311 self
->a_separator
->texture
[0].data
.lineart
.x1
= 2*PADDING
;
312 self
->a_separator
->texture
[0].data
.lineart
.y1
= SEPARATOR_HEIGHT
/ 2;
313 self
->a_separator
->texture
[0].data
.lineart
.x2
=
314 self
->area
.width
- 4*PADDING
;
315 self
->a_separator
->texture
[0].data
.lineart
.y2
= SEPARATOR_HEIGHT
/ 2;
316 RrPaint(self
->a_separator
, self
->text
,
317 self
->area
.width
- 2*PADDING
, SEPARATOR_HEIGHT
);
321 if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
&&
322 self
->entry
->data
.normal
.icon_data
)
324 XMoveResizeWindow(ob_display
, self
->icon
,
325 PADDING
, frame
->item_margin
.top
,
326 self
->frame
->item_h
- frame
->item_margin
.top
327 - frame
->item_margin
.bottom
,
328 self
->frame
->item_h
- frame
->item_margin
.top
329 - frame
->item_margin
.bottom
);
330 self
->a_icon
->texture
[0].data
.rgba
.width
=
331 self
->entry
->data
.normal
.icon_width
;
332 self
->a_icon
->texture
[0].data
.rgba
.height
=
333 self
->entry
->data
.normal
.icon_height
;
334 self
->a_icon
->texture
[0].data
.rgba
.data
=
335 self
->entry
->data
.normal
.icon_data
;
336 self
->a_icon
->surface
.parent
= item_a
;
337 self
->a_icon
->surface
.parentx
= PADDING
;
338 self
->a_icon
->surface
.parenty
= frame
->item_margin
.top
;
339 RrPaint(self
->a_icon
, self
->icon
,
340 self
->frame
->item_h
- frame
->item_margin
.top
341 - frame
->item_margin
.bottom
,
342 self
->frame
->item_h
- frame
->item_margin
.top
343 - frame
->item_margin
.bottom
);
344 XMapWindow(ob_display
, self
->icon
);
345 } else if (self
->entry
->type
!= OB_MENU_ENTRY_TYPE_SEPARATOR
&&
346 self
->entry
->data
.normal
.mask
)
350 XMoveResizeWindow(ob_display
, self
->icon
,
351 PADDING
, frame
->item_margin
.top
,
352 self
->frame
->item_h
- frame
->item_margin
.top
353 - frame
->item_margin
.bottom
,
354 self
->frame
->item_h
- frame
->item_margin
.top
355 - frame
->item_margin
.bottom
);
356 self
->a_mask
->texture
[0].data
.mask
.mask
=
357 self
->entry
->data
.normal
.mask
;
359 c
= ((self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
360 !self
->entry
->data
.normal
.enabled
) ?
361 self
->entry
->data
.normal
.mask_disabled_color
:
362 (self
== self
->frame
->selected
?
363 self
->entry
->data
.normal
.mask_selected_color
:
364 self
->entry
->data
.normal
.mask_normal_color
));
365 self
->a_mask
->texture
[0].data
.mask
.color
= c
;
367 self
->a_mask
->surface
.parent
= item_a
;
368 self
->a_mask
->surface
.parentx
= PADDING
;
369 self
->a_mask
->surface
.parenty
= frame
->item_margin
.top
;
370 RrPaint(self
->a_mask
, self
->icon
,
371 self
->frame
->item_h
- frame
->item_margin
.top
372 - frame
->item_margin
.bottom
,
373 self
->frame
->item_h
- frame
->item_margin
.top
374 - frame
->item_margin
.bottom
);
375 XMapWindow(ob_display
, self
->icon
);
377 XUnmapWindow(ob_display
, self
->icon
);
379 if (self
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
) {
380 RrAppearance
*bullet_a
;
381 XMoveResizeWindow(ob_display
, self
->bullet
,
382 self
->frame
->text_x
+ self
->frame
->text_w
383 - self
->frame
->item_h
+ PADDING
, PADDING
,
384 self
->frame
->item_h
- 2*PADDING
,
385 self
->frame
->item_h
- 2*PADDING
);
386 bullet_a
= (self
== self
->frame
->selected
?
387 self
->a_bullet_selected
:
388 self
->a_bullet_normal
);
389 bullet_a
->surface
.parent
= item_a
;
390 bullet_a
->surface
.parentx
=
391 self
->frame
->text_x
+ self
->frame
->text_w
- self
->frame
->item_h
393 bullet_a
->surface
.parenty
= PADDING
;
394 RrPaint(bullet_a
, self
->bullet
,
395 self
->frame
->item_h
- 2*PADDING
,
396 self
->frame
->item_h
- 2*PADDING
);
397 XMapWindow(ob_display
, self
->bullet
);
399 XUnmapWindow(ob_display
, self
->bullet
);
404 static void menu_frame_render(ObMenuFrame
*self
)
408 gint tw
, th
; /* temps */
410 gboolean has_icon
= FALSE
;
413 XSetWindowBorderWidth(ob_display
, self
->window
, ob_rr_theme
->bwidth
);
414 XSetWindowBorder(ob_display
, self
->window
,
415 RrColorPixel(ob_rr_theme
->b_color
));
417 if (!self
->parent
&& self
->show_title
) {
418 XMoveWindow(ob_display
, self
->title
,
419 -ob_rr_theme
->bwidth
, h
- ob_rr_theme
->bwidth
);
421 self
->a_title
->texture
[0].data
.text
.string
= self
->menu
->title
;
422 RrMinsize(self
->a_title
, &tw
, &th
);
423 tw
= MIN(tw
, MAX_MENU_WIDTH
) + ob_rr_theme
->padding
* 2;
426 th
= ob_rr_theme
->menu_title_height
;
427 h
+= (self
->title_h
= th
+ ob_rr_theme
->bwidth
);
429 XSetWindowBorderWidth(ob_display
, self
->title
, ob_rr_theme
->bwidth
);
430 XSetWindowBorder(ob_display
, self
->title
,
431 RrColorPixel(ob_rr_theme
->b_color
));
434 XMoveWindow(ob_display
, self
->items
, 0, h
);
436 STRUT_SET(self
->item_margin
, 0, 0, 0, 0);
439 ObMenuEntryFrame
*e
= self
->entries
->data
;
442 e
->a_text_normal
->texture
[0].data
.text
.string
= "";
443 RrMinsize(e
->a_text_normal
, &tw
, &th
);
448 RrMargins(e
->a_normal
, &l
, &t
, &r
, &b
);
449 STRUT_SET(self
->item_margin
,
450 MAX(self
->item_margin
.left
, l
),
451 MAX(self
->item_margin
.top
, t
),
452 MAX(self
->item_margin
.right
, r
),
453 MAX(self
->item_margin
.bottom
, b
));
454 RrMargins(e
->a_selected
, &l
, &t
, &r
, &b
);
455 STRUT_SET(self
->item_margin
,
456 MAX(self
->item_margin
.left
, l
),
457 MAX(self
->item_margin
.top
, t
),
458 MAX(self
->item_margin
.right
, r
),
459 MAX(self
->item_margin
.bottom
, b
));
460 RrMargins(e
->a_disabled
, &l
, &t
, &r
, &b
);
461 STRUT_SET(self
->item_margin
,
462 MAX(self
->item_margin
.left
, l
),
463 MAX(self
->item_margin
.top
, t
),
464 MAX(self
->item_margin
.right
, r
),
465 MAX(self
->item_margin
.bottom
, b
));
469 for (it
= self
->entries
; it
; it
= g_list_next(it
)) {
470 RrAppearance
*text_a
;
471 ObMenuEntryFrame
*e
= it
->data
;
473 RECT_SET_POINT(e
->area
, 0, allitems_h
);
474 XMoveWindow(ob_display
, e
->window
, 0, e
->area
.y
);
476 text_a
= ((e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
477 !e
->entry
->data
.normal
.enabled
) ?
479 (e
== self
->selected
?
482 switch (e
->entry
->type
) {
483 case OB_MENU_ENTRY_TYPE_NORMAL
:
484 text_a
->texture
[0].data
.text
.string
= e
->entry
->data
.normal
.label
;
485 RrMinsize(text_a
, &tw
, &th
);
486 tw
= MIN(tw
, MAX_MENU_WIDTH
);
488 if (e
->entry
->data
.normal
.icon_data
||
489 e
->entry
->data
.normal
.mask
)
492 case OB_MENU_ENTRY_TYPE_SUBMENU
:
493 sub
= e
->entry
->data
.submenu
.submenu
;
494 text_a
->texture
[0].data
.text
.string
= sub
? sub
->title
: "";
495 RrMinsize(text_a
, &tw
, &th
);
496 tw
= MIN(tw
, MAX_MENU_WIDTH
);
498 if (e
->entry
->data
.normal
.icon_data
||
499 e
->entry
->data
.normal
.mask
)
502 tw
+= self
->item_h
- PADDING
;
504 case OB_MENU_ENTRY_TYPE_SEPARATOR
:
506 th
= SEPARATOR_HEIGHT
;
516 self
->text_x
= PADDING
;
521 w
+= self
->item_h
+ PADDING
;
522 self
->text_x
+= self
->item_h
+ PADDING
;
532 XResizeWindow(ob_display
, self
->window
, w
, h
);
533 XResizeWindow(ob_display
, self
->items
, w
, allitems_h
);
537 if (!self
->parent
&& self
->show_title
) {
538 XResizeWindow(ob_display
, self
->title
,
539 w
, self
->title_h
- ob_rr_theme
->bwidth
);
540 RrPaint(self
->a_title
, self
->title
,
541 w
, self
->title_h
- ob_rr_theme
->bwidth
);
542 XMapWindow(ob_display
, self
->title
);
544 XUnmapWindow(ob_display
, self
->title
);
546 RrPaint(self
->a_items
, self
->items
, w
, allitems_h
);
548 for (it
= self
->entries
; it
; it
= g_list_next(it
))
549 menu_entry_frame_render(it
->data
);
551 w
+= ob_rr_theme
->bwidth
* 2;
552 h
+= ob_rr_theme
->bwidth
* 2;
554 RECT_SET_SIZE(self
->area
, w
, h
);
559 static void menu_frame_update(ObMenuFrame
*self
)
563 menu_pipe_execute(self
->menu
);
564 menu_find_submenus(self
->menu
);
566 self
->selected
= NULL
;
568 for (mit
= self
->menu
->entries
, fit
= self
->entries
; mit
&& fit
;
569 mit
= g_list_next(mit
), fit
= g_list_next(fit
))
571 ObMenuEntryFrame
*f
= fit
->data
;
572 f
->entry
= mit
->data
;
576 ObMenuEntryFrame
*e
= menu_entry_frame_new(mit
->data
, self
);
577 self
->entries
= g_list_append(self
->entries
, e
);
578 mit
= g_list_next(mit
);
582 GList
*n
= g_list_next(fit
);
583 menu_entry_frame_free(fit
->data
);
584 self
->entries
= g_list_delete_link(self
->entries
, fit
);
588 menu_frame_render(self
);
591 gboolean
menu_frame_show(ObMenuFrame
*self
, ObMenuFrame
*parent
)
595 if (g_list_find(menu_frame_visible
, self
))
598 if (menu_frame_visible
== NULL
) {
599 /* no menus shown yet */
600 if (!grab_pointer(TRUE
, OB_CURSOR_NONE
))
602 if (!grab_keyboard(TRUE
)) {
603 grab_pointer(FALSE
, OB_CURSOR_NONE
);
609 self
->monitor
= parent
->monitor
;
611 menu_frame_hide(parent
->child
);
612 parent
->child
= self
;
614 self
->parent
= parent
;
616 /* determine if the underlying menu is already visible */
617 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
618 ObMenuFrame
*f
= it
->data
;
619 if (f
->menu
== self
->menu
)
623 if (self
->menu
->update_func
)
624 self
->menu
->update_func(self
, self
->menu
->data
);
627 menu_frame_update(self
);
629 menu_frame_visible
= g_list_prepend(menu_frame_visible
, self
);
631 menu_frame_move_on_screen(self
);
633 XMapWindow(ob_display
, self
->window
);
638 void menu_frame_hide(ObMenuFrame
*self
)
640 GList
*it
= g_list_find(menu_frame_visible
, self
);
646 menu_frame_hide(self
->child
);
649 self
->parent
->child
= NULL
;
652 menu_frame_visible
= g_list_delete_link(menu_frame_visible
, it
);
654 if (menu_frame_visible
== NULL
) {
655 /* last menu shown */
656 grab_pointer(FALSE
, OB_CURSOR_NONE
);
657 grab_keyboard(FALSE
);
660 XUnmapWindow(ob_display
, self
->window
);
662 menu_frame_free(self
);
665 void menu_frame_hide_all()
667 if (config_submenu_show_delay
) {
668 /* remove any submenu open requests */
669 ob_main_loop_timeout_remove(ob_main_loop
,
670 menu_entry_frame_submenu_timeout
);
672 GList
*it
= g_list_last(menu_frame_visible
);
674 menu_frame_hide(it
->data
);
677 void menu_frame_hide_all_client(ObClient
*client
)
679 GList
*it
= g_list_last(menu_frame_visible
);
681 ObMenuFrame
*f
= it
->data
;
682 if (f
->client
== client
)
688 ObMenuFrame
* menu_frame_under(gint x
, gint y
)
690 ObMenuFrame
*ret
= NULL
;
693 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
694 ObMenuFrame
*f
= it
->data
;
696 if (RECT_CONTAINS(f
->area
, x
, y
)) {
704 ObMenuEntryFrame
* menu_entry_frame_under(gint x
, gint y
)
707 ObMenuEntryFrame
*ret
= NULL
;
710 if ((frame
= menu_frame_under(x
, y
))) {
711 x
-= ob_rr_theme
->bwidth
+ frame
->area
.x
;
712 y
-= frame
->title_h
+ ob_rr_theme
->bwidth
+ frame
->area
.y
;
714 for (it
= frame
->entries
; it
; it
= g_list_next(it
)) {
715 ObMenuEntryFrame
*e
= it
->data
;
717 if (RECT_CONTAINS(e
->area
, x
, y
)) {
726 static gboolean
menu_entry_frame_submenu_timeout(gpointer data
)
728 menu_entry_frame_show_submenu((ObMenuEntryFrame
*)data
);
732 void menu_frame_select(ObMenuFrame
*self
, ObMenuEntryFrame
*entry
)
734 ObMenuEntryFrame
*old
= self
->selected
;
735 ObMenuFrame
*oldchild
= self
->child
;
737 if (entry
&& entry
->entry
->type
== OB_MENU_ENTRY_TYPE_SEPARATOR
)
740 if (old
== entry
) return;
742 if (config_submenu_show_delay
) {
743 /* remove any submenu open requests */
744 ob_main_loop_timeout_remove(ob_main_loop
,
745 menu_entry_frame_submenu_timeout
);
748 self
->selected
= entry
;
751 menu_entry_frame_render(old
);
753 menu_frame_hide(oldchild
);
755 if (self
->selected
) {
756 menu_entry_frame_render(self
->selected
);
758 if (self
->selected
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
) {
759 if (config_submenu_show_delay
) {
760 /* initiate a new submenu open request */
761 ob_main_loop_timeout_add(ob_main_loop
,
762 config_submenu_show_delay
* 1000,
763 menu_entry_frame_submenu_timeout
,
767 menu_entry_frame_show_submenu(self
->selected
);
773 void menu_entry_frame_show_submenu(ObMenuEntryFrame
*self
)
777 if (!self
->entry
->data
.submenu
.submenu
) return;
779 f
= menu_frame_new(self
->entry
->data
.submenu
.submenu
,
780 self
->frame
->client
);
782 self
->frame
->area
.x
+ self
->frame
->area
.width
783 - ob_rr_theme
->menu_overlap
- ob_rr_theme
->bwidth
,
784 self
->frame
->area
.y
+ self
->frame
->title_h
+
785 self
->area
.y
+ ob_rr_theme
->menu_overlap
);
786 menu_frame_show(f
, self
->frame
);
789 void menu_entry_frame_execute(ObMenuEntryFrame
*self
, guint state
)
791 if (self
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
792 self
->entry
->data
.normal
.enabled
)
794 /* grab all this shizzle, cuz when the menu gets hidden, 'self'
796 ObMenuEntry
*entry
= self
->entry
;
797 ObMenuExecuteFunc func
= self
->frame
->menu
->execute_func
;
798 gpointer data
= self
->frame
->menu
->data
;
799 GSList
*acts
= self
->entry
->data
.normal
.actions
;
800 ObClient
*client
= self
->frame
->client
;
802 /* release grabs before executing the shit */
803 if (!(state
& ControlMask
))
804 menu_frame_hide_all();
807 func(entry
, state
, data
);
809 action_run(acts
, client
, state
);
813 void menu_frame_select_previous(ObMenuFrame
*self
)
815 GList
*it
= NULL
, *start
;
818 start
= it
= g_list_find(self
->entries
, self
->selected
);
822 it
= it
? g_list_previous(it
) : g_list_last(self
->entries
);
828 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
830 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
831 e
->entry
->data
.normal
.enabled
)
836 menu_frame_select(self
, it
? it
->data
: NULL
);
839 void menu_frame_select_next(ObMenuFrame
*self
)
841 GList
*it
= NULL
, *start
;
844 start
= it
= g_list_find(self
->entries
, self
->selected
);
848 it
= it
? g_list_next(it
) : self
->entries
;
854 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
856 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
857 e
->entry
->data
.normal
.enabled
)
862 menu_frame_select(self
, it
? it
->data
: NULL
);