]> icculus.org git repositories - dana/openbox.git/blob - openbox/menu.h
rm double ;;
[dana/openbox.git] / openbox / menu.h
1 #ifndef __menu_h
2 #define __menu_h
3
4 #include "action.h"
5 #include "window.h"
6 #include "geom.h"
7 #include "render/render.h"
8 #include "parser/parse.h"
9
10 #include <glib.h>
11
12 struct _ObClient;
13 struct _ObMenuFrame;
14 struct _ObMenuEntryFrame;
15
16 typedef struct _ObMenu ObMenu;
17 typedef struct _ObMenuEntry ObMenuEntry;
18 typedef struct _ObNormalMenuEntry ObNormalMenuEntry;
19 typedef struct _ObSubmenuMenuEntry ObSubmenuMenuEntry;
20 typedef struct _ObSeparatorMenuEntry ObSeparatorMenuEntry;
21
22 typedef void (*ObMenuUpdateFunc)(struct _ObMenuFrame *frame, gpointer data);
23 typedef void (*ObMenuExecuteFunc)(struct _ObMenuEntryFrame *frame,
24                                   gpointer data);
25 typedef void (*ObMenuDestroyFunc)(struct _ObMenu *menu, gpointer data);
26
27 extern GList *menu_visible;
28
29 struct _ObMenu
30 {
31     /* Name of the menu. Used in the showmenu action. */
32     gchar *name;
33     /* Displayed title */
34     gchar *title;
35
36     /* ObMenuEntry list */
37     GList *entries;
38
39     /* plugin data */
40     gpointer data;
41
42     ObMenuUpdateFunc update_func;
43     ObMenuExecuteFunc execute_func;
44     ObMenuDestroyFunc destroy_func;
45 };
46
47 typedef enum
48 {
49     OB_MENU_ENTRY_TYPE_NORMAL,
50     OB_MENU_ENTRY_TYPE_SUBMENU,
51     OB_MENU_ENTRY_TYPE_SEPARATOR
52 } ObMenuEntryType;
53
54 struct _ObNormalMenuEntry {
55     gchar *label;
56
57     /* state */
58     gboolean enabled;
59
60     /* List of ObActions */
61     GSList *actions;
62
63     /* Icon shit */
64     gint icon_width;
65     gint icon_height;
66     RrPixel32 *icon_data;
67 };
68
69 struct _ObSubmenuMenuEntry {
70     gchar *name;
71     ObMenu *submenu;
72 };
73
74 struct _ObSeparatorMenuEntry {
75     gchar foo; /* placeholder */
76 };
77
78 struct _ObMenuEntry
79 {
80     ObMenuEntryType type;
81     ObMenu *menu;
82
83     gint id;
84
85     union u {
86         ObNormalMenuEntry normal;
87         ObSubmenuMenuEntry submenu;
88         ObSeparatorMenuEntry separator;
89     } data;
90 };
91
92 void menu_startup();
93 void menu_shutdown();
94
95 void menu_parse();
96
97 gboolean menu_new(gchar *name, gchar *title, gpointer data);
98 void menu_free(gchar *name);
99
100 gboolean menu_open_plugin(ObParseInst *i, gchar *name, gchar *plugin);
101
102 void menu_set_update_func(gchar *name, ObMenuUpdateFunc func);
103 void menu_set_execute_func(gchar *name, ObMenuExecuteFunc func);
104 void menu_set_destroy_func(gchar *name, ObMenuDestroyFunc func);
105
106 void menu_show(gchar *name, gint x, gint y, struct _ObClient *client);
107
108 /* functions for building menus */
109 void menu_clear_entries(gchar *name);
110 void menu_add_normal(gchar *name, gint id, gchar *label, GSList *actions);
111 void menu_add_submenu(gchar *name, gint id, gchar *submenu);
112 void menu_add_separator(gchar *name, gint id);
113
114 ObMenuEntry* menu_find_entry_id(ObMenu *self, gint id);
115
116 void menu_find_submenus(ObMenu *self);
117
118 #endif