28 |
28 |
29 #ifndef MENU_H |
29 #ifndef MENU_H |
30 #define MENU_H |
30 #define MENU_H |
31 |
31 |
32 #include "../ui/menu.h" |
32 #include "../ui/menu.h" |
33 #include <ucx/list.h> |
33 #include "../common/menu.h" |
|
34 #include <cx/list.h> |
34 #include "toolkit.h" |
35 #include "toolkit.h" |
35 |
36 |
36 #ifdef __cplusplus |
37 #ifdef __cplusplus |
37 extern "C" { |
38 extern "C" { |
38 #endif |
39 #endif |
39 |
40 |
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 |
41 |
48 typedef struct UiActiveMenuItemList UiActiveMenuItemList; |
42 typedef struct UiActiveMenuItemList UiActiveMenuItemList; |
49 |
43 |
50 typedef GtkWidget*(*ui_menu_add_f)(GtkWidget *, int, UiMenuItemI*, UiObject*); |
44 typedef void(*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 |
45 |
99 struct UiActiveMenuItemList { |
46 struct UiActiveMenuItemList { |
100 UiObject *object; |
47 UiObject *object; |
101 GtkMenuShell *menu; |
48 GtkMenuShell *menu; |
102 int index; |
49 int index; |