]> Dogcows Code - chaz/openbox/blob - openbox/menuframe.h
ultra-keyboard-controlled-menus
[chaz/openbox] / openbox / menuframe.h
1 #ifndef ob__menuframe_h
2 #define ob__menuframe_h
3
4 #include "geom.h"
5 #include "window.h"
6 #include "render/render.h"
7
8 #include <glib.h>
9
10 struct _ObClient;
11 struct _ObMenu;
12 struct _ObMenuEntry;
13
14 typedef struct _ObMenuFrame ObMenuFrame;
15 typedef struct _ObMenuEntryFrame ObMenuEntryFrame;
16
17 extern GList *menu_frame_visible;
18
19 struct _ObMenuFrame
20 {
21 /* stuff to be an ObWindow */
22 Window_InternalType type;
23 Window window;
24
25 struct _ObMenu *menu;
26
27 /* The client that the visual instance of the menu is associated with for
28 its actions */
29 struct _ObClient *client;
30
31 ObMenuFrame *parent;
32 ObMenuFrame *child;
33
34 GList *entries;
35 ObMenuEntryFrame *selected;
36
37 /* If a titlebar is displayed for the menu or not (for top-level menus) */
38 gboolean show_title;
39
40 /* On-screen area (including borders!) */
41 Rect area;
42 gint inner_w; /* inside the borders */
43 gint title_h; /* includes the bwidth below it */
44 gint item_h; /* height of all normal items */
45 gint text_x; /* offset at which the text appears in the items */
46 gint text_w; /* width of the text area in the items */
47
48 Window title;
49 Window items;
50
51 RrAppearance *a_title;
52 RrAppearance *a_items;
53 };
54
55 struct _ObMenuEntryFrame
56 {
57 struct _ObMenuEntry *entry;
58 ObMenuFrame *frame;
59
60 Rect area;
61
62 Window window;
63 Window icon;
64 Window text;
65 Window bullet;
66
67 RrAppearance *a_normal;
68 RrAppearance *a_disabled;
69 RrAppearance *a_selected;
70
71 RrAppearance *a_icon;
72 RrAppearance *a_bullet;
73 RrAppearance *a_text_normal;
74 RrAppearance *a_text_disabled;
75 RrAppearance *a_text_selected;
76 };
77
78 ObMenuFrame* menu_frame_new(struct _ObMenu *menu, struct _ObClient *client);
79 void menu_frame_free(ObMenuFrame *self);
80
81 void menu_frame_move(ObMenuFrame *self, gint x, gint y);
82 void menu_frame_move_on_screen(ObMenuFrame *self);
83
84 void menu_frame_show(ObMenuFrame *self, ObMenuFrame *parent);
85 void menu_frame_hide(ObMenuFrame *self);
86
87 void menu_frame_hide_all();
88 void menu_frame_hide_all_client(struct _ObClient *client);
89
90 void menu_frame_select(ObMenuFrame *self, ObMenuEntryFrame *entry);
91 void menu_frame_select_previous(ObMenuFrame *self);
92 void menu_frame_select_next(ObMenuFrame *self);
93
94 ObMenuFrame* menu_frame_under(gint x, gint y);
95 ObMenuEntryFrame* menu_entry_frame_under(gint x, gint y);
96
97 void menu_entry_frame_show_submenu(ObMenuEntryFrame *self);
98
99 void menu_entry_frame_execute(ObMenuEntryFrame *self, gboolean hide);
100
101 #endif
This page took 0.03986 seconds and 5 git commands to generate.