]> icculus.org git repositories - dana/openbox.git/blob - openbox/menuframe.h
only hide menus if theyre supposed to when executing
[dana/openbox.git] / 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_mask;
73     RrAppearance *a_bullet;
74     RrAppearance *a_separator;
75     RrAppearance *a_text_normal;
76     RrAppearance *a_text_disabled;
77     RrAppearance *a_text_selected;
78 };
79
80 ObMenuFrame* menu_frame_new(struct _ObMenu *menu, struct _ObClient *client);
81 void menu_frame_free(ObMenuFrame *self);
82
83 void menu_frame_move(ObMenuFrame *self, gint x, gint y);
84 void menu_frame_move_on_screen(ObMenuFrame *self);
85
86 void menu_frame_show(ObMenuFrame *self, ObMenuFrame *parent);
87 void menu_frame_hide(ObMenuFrame *self);
88
89 void menu_frame_hide_all();
90 void menu_frame_hide_all_client(struct _ObClient *client);
91
92 void menu_frame_select(ObMenuFrame *self, ObMenuEntryFrame *entry);
93 void menu_frame_select_previous(ObMenuFrame *self);
94 void menu_frame_select_next(ObMenuFrame *self);
95
96 ObMenuFrame* menu_frame_under(gint x, gint y);
97 ObMenuEntryFrame* menu_entry_frame_under(gint x, gint y);
98
99 void menu_entry_frame_show_submenu(ObMenuEntryFrame *self);
100
101 void menu_entry_frame_execute(ObMenuEntryFrame *self, gboolean hide);
102
103 #endif