TDME2 1.9.121
GUISelectBoxOptionController.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
20
21/**
22 * GUI select box option controller
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27{
28 friend class GUISelectBoxOption;
31
32protected:
34
35private:
47
48 /**
49 * Private constructor
50 * @param node node
51 */
53
54 /**
55 * @return is selected
56 */
57 inline bool isSelected() {
58 return selected;
59 }
60
61 /**
62 * Select
63 */
64 void select();
65
66 /**
67 * Unselect
68 */
69 void unselect();
70
71 /**
72 * Toggle selection
73 */
74 void toggle();
75
76 /**
77 * @return is focussed
78 */
79 inline bool isFocussed() {
80 return focussed;
81 }
82
83 /**
84 * Focus
85 */
86 void focus();
87
88 /**
89 * Unfocus
90 */
91 void unfocus();
92
93 /**
94 * @return if hierarchy is expanded
95 */
97
98 /**
99 * Expand hierarchy
100 */
101 void expandHierarchy();
102public:
103 // overridden methods
104 void setDisabled(bool disabled) override;
105 void initialize() override;
106 void dispose() override;
107 void postLayout() override;
108 void handleMouseEvent(GUINode* node, GUIMouseEvent* event) override;
109 void handleKeyboardEvent(GUIKeyboardEvent* event) override;
110 void onFocusGained() override;
111 void onFocusLost() override;
112 bool hasValue() override;
113 const MutableString& getValue() override;
114 void setValue(const MutableString& value) override;
115
116};
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.
void setDisabled(bool disabled) override
Set disabled.
GUI select box option element.
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