TDME2 1.9.121
|
GUI element controller. More...
#include <tdme/gui/nodes/GUIElementController.h>
Public Member Functions | |
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 Member Functions | |
GUIElementController (GUINode *node) | |
Constructor. More... | |
![]() | |
GUINodeController (GUINode *node) | |
Private constructor. More... | |
Static Protected Attributes | |
static STATIC_DLL_IMPEXT string | CONDITION_DISABLED = "disabled" |
static STATIC_DLL_IMPEXT string | CONDITION_ENABLED = "enabled" |
Private Attributes | |
bool | disabled |
bool | isActionPerforming |
bool | initialized |
MutableString | value |
int64_t | timeLastClicked { -1LL } |
Static Private Attributes | |
static constexpr int64_t | TIME_DOUBLECLICK { 200LL } |
Friends | |
class | GUIElementNode |
Additional Inherited Members | |
![]() | |
GUINode * | node { nullptr } |
|
protected |
|
overridevirtual |
Dispose controller.
Implements GUINodeController.
Definition at line 65 of file GUIElementController.cpp.
|
overridevirtual |
|
overridevirtual |
Handle keyboard event.
event | event |
Implements GUINodeController.
Definition at line 151 of file GUIElementController.cpp.
|
overridevirtual |
Handle mouse event.
node | node |
event | event |
Implements GUINodeController.
Definition at line 73 of file GUIElementController.cpp.
|
overridevirtual |
Implements GUINodeController.
Definition at line 207 of file GUIElementController.cpp.
|
overridevirtual |
Initialize controller after element has been created.
Implements GUINodeController.
Definition at line 59 of file GUIElementController.cpp.
|
overridevirtual |
Implements GUINodeController.
Definition at line 45 of file GUIElementController.cpp.
|
overridevirtual |
On focus gained.
Implements GUINodeController.
Definition at line 199 of file GUIElementController.cpp.
|
overridevirtual |
On focus lost.
Implements GUINodeController.
Definition at line 203 of file GUIElementController.cpp.
|
overridevirtual |
On sub tree change.
Implements GUINodeController.
Definition at line 221 of file GUIElementController.cpp.
|
overridevirtual |
Post layout event.
Implements GUINodeController.
Definition at line 69 of file GUIElementController.cpp.
|
overridevirtual |
Set disabled.
disabled | disabled |
Implements GUINodeController.
Definition at line 50 of file GUIElementController.cpp.
|
overridevirtual |
Set value.
value | value |
Implements GUINodeController.
Definition at line 217 of file GUIElementController.cpp.
|
overridevirtual |
Tick method will be executed once per frame.
Implements GUINodeController.
Definition at line 171 of file GUIElementController.cpp.
|
friend |
Definition at line 27 of file GUIElementController.h.
|
staticprotected |
Definition at line 39 of file GUIElementController.h.
|
staticprotected |
Definition at line 40 of file GUIElementController.h.
|
private |
Definition at line 32 of file GUIElementController.h.
|
private |
Definition at line 34 of file GUIElementController.h.
|
private |
Definition at line 33 of file GUIElementController.h.
|
staticconstexprprivate |
Definition at line 30 of file GUIElementController.h.
|
private |
Definition at line 36 of file GUIElementController.h.
|
private |
Definition at line 35 of file GUIElementController.h.