-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenuItem.hpp
More file actions
238 lines (202 loc) · 5.52 KB
/
Copy pathmenuItem.hpp
File metadata and controls
238 lines (202 loc) · 5.52 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#ifndef EVT_TERM_MENUITEM
#define EVT_TERM_MENUITEM
#include <core/io/UART.hpp>
// macro for max initial item count of submenus
// struct used for callback functions, a uart instance to communicate over,
// a list of input strings(your input from the terminal), and a void*
// mostly a placeholder to ease handling void* to a function, when you fill with a function make sure the parameters are
// (UART,char**,void*)
using callback_t = void (*)(core::io::UART&, char** inputList, void*);
namespace core::utils {
class MenuItem {
public:
/**
* constructor for menu item object
* takes a string for the option key, a string for the description text,
* a void pointer to the items callback method, and a void pointer to the items context
* @param parent pointer to parent node
* @param term pointer to terminal instance this item resides within
* @param option a string representing the items "key", the char/string used to select it
* @param text a short text description/name of an item
* @param cb a void pointer to this items callback method
* @param ctx a void pointer to any context information for this menu(if none provided, is NULL)
*/
MenuItem(void* parent, void* term, char* option, char* text, callback_t cb, void* ctx);
/**
* option acessor
*/
char* getOption() {
return option;
}
/**
* returns parent
*/
void* getParent() {
return parent;
}
/**
* text acessor
*/
char* getText() {
return text;
}
/**
* callback acessor
*/
callback_t getcb() {
return cb;
}
/**
* replace this item with another one
* @param newItem the new item
*/
void replace(MenuItem* newItem);
/**
* context acessor
*/
void* getctx() {
return ctx;
}
/**
* print string representation
* @param uart the uart instance to print over
*/
void printStr(core::io::UART& uart);
/**
* checks if 2 items are equivalent
* true if every attribute is equivalent using ==
* @param it2 a different menu item to compare to
*/
bool equals(MenuItem* it2);
private:
/**
* key value for item, this is used to select it in your commands
*/
char* option;
/**
* description/name of item
*/
char* text;
/**
* pointer to callback method for this item
*/
callback_t cb;
/**
* context for this item, void* because it is of an abstract type
*/
void* ctx;
/**
* submenu or menu this item is in
*/
void* parent;
/**
* terminal this is in
*/
void* term;
};
class SubMenu : public MenuItem {
public:
/**
* constructor for sub-menu sub-class
* @param parent same as menuitem
* @param term same as menuitem
* @param option same as menuitem
* @param text same as menuitem
* @param cb exit behavior callback, leave null for nothing
* @param ctx enterence behavior callback void*(leave null for nothing)
* @param items list of items in submenu
*/
SubMenu(void* parent, void* term, char* option, char* text, callback_t cb, void* ctx, MenuItem** items);
/**
* unique overridden printStr() method for sub-menus
*/
void printStr(io::UART& uart);
/**
* print method that displays the submenu like a menu, instead of an item
*/
void printMStr(io::UART& uart);
/**
* unique overridden equals() method for sub-menus
* true if every attribute is equivalent, checks all but items with ==
* items is checked the same way as menu equivalence
* @param sub2 the other submenu to compare to
*/
bool equals(SubMenu* sub2);
/**
* returns itemCount
*/
int getCount() {
return itemCount;
}
/**
* returns parent
*/
void* getParent() {
return parent;
}
/**
* replaces current item list with provided one
* @param itms items to replace current list with
*/
void setItems(MenuItem** itms);
/**
* returns a list of all items contained in the submenu
*/
MenuItem** getItems() {
return sitems;
}
// #
// # USE THESE TO DO ANY NEEDED SETUP/CLEANUP WHEN ENTERING/EXITING A SUB MENU:
// #
/**
* automatic callback executor for entering
* custom behavor is stored in ctx void*
* if cb is empty will do nothing
* @param uart uart instance to use for cb
* @param args arguments for cb
*/
void enter(io::UART& uart, char** args);
/**
* automatic callback executor for exiting
* custom behavor is stored in cb.
* if ctx is nullptr will do nothing
* @param uart uart instance to use for cb
* @param args arguments for cb
*/
void exit(io::UART& uart, char** args);
private:
/**
* key value for item, this is used to select it in your commands
*/
char* option;
/**
* description/name of item
*/
char* text;
/**
* pointer to callback method for this item
*/
callback_t cb;
/**
* context for this item, void* because it is of an abstract type
*/
void* ctx;
/**
* the total number of items that can be contained in any sub-menu
*/
int itemCount = 10;
/**
* list of all items inside of the sub-menu
*/
MenuItem** sitems;
/**
* submenu or menu this item is in
*/
void* parent;
/**
* terminal this is in
*/
void* term;
};
} // namespace core::utils
#endif