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 #ifndef MENU_H
30 #define MENU_H
31
32 #include "../ui/menu.h"
33 #include <ucx/list.h>
34 #include "toolkit.h"
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 typedef struct UiMenuItemI UiMenuItemI;
41 typedef struct UiMenu UiMenu;
42 typedef struct UiMenuItem UiMenuItem;
43 typedef struct UiStMenuItem UiStMenuItem;
44 typedef struct UiCheckItem UiCheckItem;
45 typedef struct UiCheckItemNV UiCheckItemNV;
46 typedef struct UiMenuItemList UiMenuItemList;
47
48 typedef struct UiActiveMenuItemList UiActiveMenuItemList;
49
50 typedef GtkWidget*(*ui_menu_add_f)(GtkWidget *,
int, UiMenuItemI*, UiObject*);
51
52 struct UiMenuItemI {
53 ui_menu_add_f add_to;
54 };
55
56 struct UiMenu {
57 UiMenuItemI item;
58 char *label;
59 UcxList *items;
60 UiMenu *parent;
61 };
62
63 struct UiMenuItem {
64 UiMenuItemI item;
65 ui_callback callback;
66 char *label;
67 void *userdata;
68 UcxList *groups;
69 };
70
71 struct UiStMenuItem {
72 UiMenuItemI item;
73 ui_callback callback;
74 char *stockid;
75 void *userdata;
76 UcxList *groups;
77 };
78
79 struct UiCheckItem {
80 UiMenuItemI item;
81 char *label;
82 ui_callback callback;
83 void *userdata;
84 };
85
86 struct UiCheckItemNV {
87 UiMenuItemI item;
88 char *label;
89 char *varname;
90 };
91
92 struct UiMenuItemList {
93 UiMenuItemI item;
94 ui_callback callback;
95 void *userdata;
96 UiList *list;
97 };
98
99 struct UiActiveMenuItemList {
100 UiObject *object;
101 GtkMenuShell *menu;
102 int index;
103 int oldcount;
104 UiList *list;
105 ui_callback callback;
106 void *userdata;
107 };
108
109 GtkWidget *ui_create_menubar(UiObject *obj);
110
111 void add_menu_widget(GtkWidget *parent,
int i, UiMenuItemI *item, UiObject *obj);
112 void add_menuitem_widget(GtkWidget *parent,
int i, UiMenuItemI *item, UiObject *obj);
113 void add_menuitem_st_widget(GtkWidget *p,
int i, UiMenuItemI *item, UiObject *obj);
114 void add_menuseparator_widget(GtkWidget *p,
int i, UiMenuItemI *item, UiObject *obj);
115 void add_checkitem_widget(GtkWidget *p,
int i, UiMenuItemI *item, UiObject *obj);
116 void add_checkitemnv_widget(GtkWidget *p,
int i, UiMenuItemI *item, UiObject *obj);
117 void add_menuitem_list_widget(GtkWidget *p,
int i, UiMenuItemI *item, UiObject *obj);
118
119 void ui_update_menuitem_list(UiEvent *event, UiActiveMenuItemList *list);
120 void ui_menu_event_wrapper(GtkMenuItem *item, UiEventData *event);
121 void ui_menu_event_toggled(GtkCheckMenuItem *ci, UiEventData *event);
122 int64_t ui_checkitem_get(UiInteger *i);
123 void ui_checkitem_set(UiInteger *i,
int64_t value);
124
125 #ifdef __cplusplus
126 }
127 #endif
128
129 #endif
130
131