TDME2 1.9.121
GUIDropDownOptionController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13
21
22/**
23 * GUI drop down option controller
24 * @author Andreas Drewke
25 * @version $Id$
26 */
29{
30 friend class GUIDropDownOption;
32
33private:
41 bool hidden;
43
44 /**
45 * Private constructor
46 * @param node node
47 */
49
50 /**
51 * @return is selected
52 */
53 inline bool isSelected() {
54 return selected;
55 }
56
57 /**
58 * Select
59 */
60 void select();
61
62 /**
63 * Unselect
64 */
65 void unselect();
66
67 /**
68 * Search by string
69 * @param value value
70 * @return search did match
71 */
72 bool search(const string& value);
73
74 /**
75 * @return hidden
76 */
77 inline bool isHidden() {
78 return hidden;
79 }
80
81public:
82 // overridden methods
83 void setDisabled(bool disabled) override;
84 void initialize() override;
85 void postLayout() override;
86 void dispose() override;
87 void handleMouseEvent(GUINode* node, GUIMouseEvent* event) override;
88 void handleKeyboardEvent(GUIKeyboardEvent* event) override;
89 void tick() override;
90 void onFocusGained() override;
91 void onFocusLost() override;
92 bool hasValue() override;
93 const MutableString& getValue() override;
94 void setValue(const MutableString& value) override;
95
96};
bool search(const string &value)
Search by string.
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
GUIDropDownOptionController(GUINode *node)
Private constructor.
void tick() override
Tick method will be executed once per frame.
void setDisabled(bool disabled) override
Set disabled.
GUI drop down option element.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
Mutable string class.
Definition: MutableString.h:16
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11