TDME2 1.9.121
GUISelectBoxController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
12
13using std::string;
14using std::vector;
15
23
24/**
25 * GUI select box controller
26 * @author Andreas Drewke
27 * @version $Id$
28 */
31{
32 friend class GUISelectBox;
34
35private:
38 STATIC_DLL_IMPEXT static constexpr char VALUE_DELIMITER { '|' };
39 vector<GUISelectBoxOptionController*> selectBoxOptionControllers;
45
47
48 /**
49 * Private constructor
50 * @param node node
51 */
53
54 /**
55 * @return if multiple selection is enabled
56 */
58
59 /**
60 * @return is control down
61 */
62 bool isKeyControlDown();
63
64 /**
65 * Get focussed option idx
66 */
68
69 /**
70 * Get focussed option idx
71 * @param optionElementNode option element node
72 */
73 int getOptionIdx(GUIElementNode* optionElementNode);
74
75 /**
76 * Unselect all nodes
77 */
78 void unselect();
79
80 /**
81 * Select
82 * @param optionIdx option index
83 */
84 void select(int optionIdx);
85
86 /**
87 * Select
88 * @param optionElementNode option element node
89 */
90 void select(GUIElementNode* optionElementNode);
91
92 /**
93 * Unfocus all nodes
94 */
95 void unfocus();
96
97 /**
98 * Focus
99 * @param optionIdx option index
100 */
101 void focus(int optionIdx);
102
103 /**
104 * Focus
105 * @param optionElementNode option element node
106 */
107 void focus(GUIElementNode* optionElementNode);
108
109 /**
110 * Select current options
111 */
112 void selectCurrent();
113
114 /**
115 * Focus next node
116 */
117 void focusNext();
118
119 /**
120 * Focus previous
121 */
122 void focusPrevious();
123
124 /**
125 * Toggle
126 * @param optionIdx option index
127 */
128 void toggle(int optionIdx);
129
130 /**
131 * Toggle
132 * @param optionElementNode option element node
133 */
134 void toggle(GUIElementNode* optionElementNode);
135
136 /**
137 * Select focussed node
138 */
139 void select();
140
141 /**
142 * Determine all options
143 */
144 void determineAllOptions();
145
146 /**
147 * Determine expanded options
148 */
150
151 /**
152 * Determine parent options
153 */
155
156 /**
157 * Toggle open state of current parent option
158 * @param optionIdx option index
159 */
160 void toggleOpenState(int optionIdx);
161
162 /**
163 * Expand
164 * @param optionIdx option index
165 */
166 void expand(int optionIdx);
167
168 /**
169 * Collapse
170 * @param optionIdx option index
171 */
172 void collapse(int optionIdx);
173
174public:
175 /**
176 * Toggle open state of current parent option
177 * @param optionElementNode option element node
178 */
179 void toggleOpenState(GUIElementNode* optionElementNode);
180
181 // overridden methods
182 void initialize() override;
183 void dispose() override;
184 void postLayout() override;
185 void handleMouseEvent(GUINode* node, GUIMouseEvent* event) override;
186 void handleKeyboardEvent(GUIKeyboardEvent* event) override;
187 void tick() override;
188 void onFocusGained() override;
189 void onFocusLost() override;
190 bool hasValue() override;
191 const MutableString& getValue() override;
192 void setValue(const MutableString& value) override;
193 void onSubTreeChange() override;
194
195 /**
196 * Determine expanded parent option values
197 * @param expandedParentOptionValues expanded parent option values
198 */
199 void determineExpandedParentOptionValues(vector<string>& expandedParentOptionValues);
200
201 /**
202 * Expand parent options by values
203 * @param expandedParentOptionValues expanded parent option values
204 */
205 void expandParentOptionsByValues(const vector<string>& expandedParentOptionValues);
206
207};
void dispose() override
Dispose controller.
void postLayout() override
Post layout event.
void determineExpandedParentOptionValues(vector< string > &expandedParentOptionValues)
Determine expanded parent option values.
static STATIC_DLL_IMPEXT constexpr char VALUE_DELIMITER
void initialize() override
Initialize controller after element has been created.
GUISelectBoxController(GUINode *node)
Private constructor.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void determineExpandedOptions()
Determine expanded options.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
void determineParentOptions()
Determine parent options.
void tick() override
Tick method will be executed once per frame.
static STATIC_DLL_IMPEXT string CONDITION_DISABLED
static STATIC_DLL_IMPEXT string CONDITION_ENABLED
void toggleOpenState(int optionIdx)
Toggle open state of current parent option.
vector< GUISelectBoxOptionController * > selectBoxOptionControllers
void expandParentOptionsByValues(const vector< string > &expandedParentOptionValues)
Expand parent options by values.
void onSubTreeChange() override
On sub tree change.
int getOptionIdx(GUIElementNode *optionElementNode)
Get focussed option idx.
GUI select box element.
Definition: GUISelectBox.h:29
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
Mutable string class.
Definition: MutableString.h:16
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11