TDME2 1.9.121
|
GUI select box option controller. More...
#include <tdme/gui/elements/GUISelectBoxOptionController.h>
Public Member Functions | |
void | setDisabled (bool disabled) override |
Set disabled. More... | |
void | initialize () override |
Initialize controller after element has been created. More... | |
void | dispose () override |
Dispose controller. More... | |
void | postLayout () override |
Post layout event. More... | |
void | handleMouseEvent (GUINode *node, GUIMouseEvent *event) override |
Handle mouse event. More... | |
void | handleKeyboardEvent (GUIKeyboardEvent *event) override |
Handle keyboard event. More... | |
void | onFocusGained () override |
On focus gained. More... | |
void | onFocusLost () override |
On focus lost. More... | |
bool | hasValue () override |
const MutableString & | getValue () override |
void | setValue (const MutableString &value) override |
Set value. More... | |
![]() | |
bool | isDisabled () override |
void | setDisabled (bool disabled) override |
Set disabled. More... | |
void | initialize () override |
Initialize controller after element has been created. More... | |
void | dispose () override |
Dispose controller. More... | |
void | postLayout () override |
Post layout event. More... | |
void | handleMouseEvent (GUINode *node, GUIMouseEvent *event) override |
Handle mouse event. More... | |
void | handleKeyboardEvent (GUIKeyboardEvent *event) override |
Handle keyboard event. More... | |
void | tick () override |
Tick method will be executed once per frame. More... | |
void | onFocusGained () override |
On focus gained. More... | |
void | onFocusLost () override |
On focus lost. More... | |
bool | hasValue () override |
const MutableString & | getValue () override |
void | setValue (const MutableString &value) override |
Set value. More... | |
void | onSubTreeChange () override |
On sub tree change. More... | |
![]() | |
virtual | ~GUINodeController () |
Destructor. More... | |
virtual GUINode * | getNode () |
virtual void | initialize ()=0 |
Initialize controller after element has been created. More... | |
virtual void | dispose ()=0 |
Dispose controller. More... | |
virtual void | postLayout ()=0 |
Post layout event. More... | |
virtual void | handleMouseEvent (GUINode *node, GUIMouseEvent *event)=0 |
Handle mouse event. More... | |
virtual void | handleKeyboardEvent (GUIKeyboardEvent *event)=0 |
Handle keyboard event. More... | |
virtual void | tick ()=0 |
Tick method will be executed once per frame. More... | |
virtual void | onFocusGained ()=0 |
On focus gained. More... | |
virtual void | onFocusLost ()=0 |
On focus lost. More... | |
virtual bool | hasValue ()=0 |
virtual const MutableString & | getValue ()=0 |
virtual void | setValue (const MutableString &value)=0 |
Set value. More... | |
virtual bool | isDisabled ()=0 |
virtual void | setDisabled (bool disabled)=0 |
Set disabled. More... | |
virtual void | onSubTreeChange ()=0 |
On sub tree change. More... | |
Protected Attributes | |
GUIParentNode * | selectBoxNode { nullptr } |
![]() | |
GUINode * | node { nullptr } |
Private Member Functions | |
GUISelectBoxOptionController (GUINode *node) | |
Private constructor. More... | |
bool | isSelected () |
void | select () |
Select. More... | |
void | unselect () |
Unselect. More... | |
void | toggle () |
Toggle selection. More... | |
bool | isFocussed () |
void | focus () |
Focus. More... | |
void | unfocus () |
Unfocus. More... | |
bool | isHierarchyExpanded () |
void | expandHierarchy () |
Expand hierarchy. More... | |
Private Attributes | |
bool | initialPostLayout |
bool | selected |
bool | focussed |
MutableString | value |
Static Private Attributes | |
static STATIC_DLL_IMPEXT string | CONDITION_SELECTED = "selected" |
static STATIC_DLL_IMPEXT string | CONDITION_UNSELECTED = "unselected" |
static STATIC_DLL_IMPEXT string | CONDITION_FOCUSSED = "focussed" |
static STATIC_DLL_IMPEXT string | CONDITION_UNFOCUSSED = "unfocussed" |
static STATIC_DLL_IMPEXT string | CONDITION_DISABLED = "disabled" |
static STATIC_DLL_IMPEXT string | CONDITION_ENABLED = "enabled" |
static STATIC_DLL_IMPEXT string | CONDITION_CHILD = "child" |
Friends | |
class | GUISelectBoxOption |
class | GUISelectBoxController |
class | GUISelectBoxParentOptionController |
Additional Inherited Members | |
![]() | |
GUIElementController (GUINode *node) | |
Constructor. More... | |
![]() | |
GUINodeController (GUINode *node) | |
Private constructor. More... | |
![]() | |
static STATIC_DLL_IMPEXT string | CONDITION_DISABLED = "disabled" |
static STATIC_DLL_IMPEXT string | CONDITION_ENABLED = "enabled" |
GUI select box option controller.
Definition at line 26 of file GUISelectBoxOptionController.h.
|
private |
Private constructor.
node | node |
Definition at line 37 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Dispose controller.
Implements GUINodeController.
Reimplemented in GUISelectBoxParentOptionController.
Definition at line 178 of file GUISelectBoxOptionController.cpp.
|
private |
Expand hierarchy.
Definition at line 119 of file GUISelectBoxOptionController.cpp.
|
private |
Focus.
Definition at line 84 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Implements GUINodeController.
Definition at line 241 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Handle keyboard event.
event | event |
Implements GUINodeController.
Definition at line 223 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Handle mouse event.
node | node |
event | event |
Implements GUINodeController.
Definition at line 193 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Implements GUINodeController.
Definition at line 236 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Initialize controller after element has been created.
Implements GUINodeController.
Reimplemented in GUISelectBoxParentOptionController.
Definition at line 137 of file GUISelectBoxOptionController.cpp.
|
inlineprivate |
Definition at line 79 of file GUISelectBoxOptionController.h.
|
private |
Definition at line 100 of file GUISelectBoxOptionController.cpp.
|
inlineprivate |
Definition at line 57 of file GUISelectBoxOptionController.h.
|
overridevirtual |
On focus gained.
Implements GUINodeController.
Definition at line 228 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
On focus lost.
Implements GUINodeController.
Definition at line 232 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Post layout event.
Implements GUINodeController.
Definition at line 183 of file GUISelectBoxOptionController.cpp.
|
private |
Select.
Definition at line 51 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Set disabled.
disabled | disabled |
Implements GUINodeController.
Definition at line 45 of file GUISelectBoxOptionController.cpp.
|
overridevirtual |
Set value.
value | value |
Implements GUINodeController.
Definition at line 246 of file GUISelectBoxOptionController.cpp.
|
private |
Toggle selection.
Definition at line 75 of file GUISelectBoxOptionController.cpp.
|
private |
Unfocus.
Definition at line 92 of file GUISelectBoxOptionController.cpp.
|
private |
Unselect.
Definition at line 63 of file GUISelectBoxOptionController.cpp.
|
friend |
Definition at line 29 of file GUISelectBoxOptionController.h.
|
friend |
Definition at line 28 of file GUISelectBoxOptionController.h.
|
friend |
Definition at line 30 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 42 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 40 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 41 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 38 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 36 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 39 of file GUISelectBoxOptionController.h.
|
staticprivate |
Definition at line 37 of file GUISelectBoxOptionController.h.
|
private |
Definition at line 45 of file GUISelectBoxOptionController.h.
|
private |
Definition at line 43 of file GUISelectBoxOptionController.h.
|
protected |
Definition at line 33 of file GUISelectBoxOptionController.h.
|
private |
Definition at line 44 of file GUISelectBoxOptionController.h.
|
private |
Definition at line 46 of file GUISelectBoxOptionController.h.