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