TDME2 1.9.121
Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
GUIDropDownOptionController Class Referencefinal

GUI drop down option controller. More...

#include <tdme/gui/elements/GUIDropDownOptionController.h>

Inheritance diagram for GUIDropDownOptionController:
Inheritance graph
Collaboration diagram for GUIDropDownOptionController:
Collaboration graph

Public Member Functions

void setDisabled (bool disabled) override
 Set disabled. More...
 
void initialize () override
 Initialize controller after element has been created. More...
 
void postLayout () override
 Post layout event. More...
 
void dispose () override
 Dispose controller. 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 MutableStringgetValue () override
 
void setValue (const MutableString &value) override
 Set value. More...
 
- Public Member Functions inherited from GUIElementController
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 MutableStringgetValue () override
 
void setValue (const MutableString &value) override
 Set value. More...
 
void onSubTreeChange () override
 On sub tree change. More...
 
- Public Member Functions inherited from GUINodeController
virtual ~GUINodeController ()
 Destructor. More...
 
virtual GUINodegetNode ()
 
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 MutableStringgetValue ()=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...
 

Private Member Functions

 GUIDropDownOptionController (GUINode *node)
 Private constructor. More...
 
bool isSelected ()
 
void select ()
 Select. More...
 
void unselect ()
 Unselect. More...
 
bool search (const string &value)
 Search by string. More...
 
bool isHidden ()
 

Private Attributes

GUIParentNodedropDownNode { nullptr }
 
GUIParentNodedropDownContainerNode { nullptr }
 
bool initialPostLayout
 
bool selected
 
bool hidden
 
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_HIDDEN = "hidden"
 

Friends

class GUIDropDownOption
 
class GUIDropDownController
 

Additional Inherited Members

- Protected Member Functions inherited from GUIElementController
 GUIElementController (GUINode *node)
 Constructor. More...
 
- Protected Member Functions inherited from GUINodeController
 GUINodeController (GUINode *node)
 Private constructor. More...
 
- Protected Attributes inherited from GUINodeController
GUINodenode { nullptr }
 
- Static Protected Attributes inherited from GUIElementController
static STATIC_DLL_IMPEXT string CONDITION_DISABLED = "disabled"
 
static STATIC_DLL_IMPEXT string CONDITION_ENABLED = "enabled"
 

Detailed Description

GUI drop down option controller.

Author
Andreas Drewke
Version
$Id$

Definition at line 27 of file GUIDropDownOptionController.h.

Constructor & Destructor Documentation

◆ GUIDropDownOptionController()

GUIDropDownOptionController ( GUINode node)
private

Private constructor.

Parameters
nodenode

Definition at line 40 of file GUIDropDownOptionController.cpp.

Member Function Documentation

◆ dispose()

void dispose ( )
overridevirtual

Dispose controller.

Implements GUINodeController.

Definition at line 126 of file GUIDropDownOptionController.cpp.

◆ getValue()

const MutableString & getValue ( )
overridevirtual
Returns
value

Implements GUINodeController.

Definition at line 168 of file GUIDropDownOptionController.cpp.

◆ handleKeyboardEvent()

void handleKeyboardEvent ( GUIKeyboardEvent event)
overridevirtual

Handle keyboard event.

Parameters
eventevent

Implements GUINodeController.

Definition at line 145 of file GUIDropDownOptionController.cpp.

◆ handleMouseEvent()

void handleMouseEvent ( GUINode node,
GUIMouseEvent event 
)
overridevirtual

Handle mouse event.

Parameters
nodenode
eventevent

Implements GUINodeController.

Definition at line 131 of file GUIDropDownOptionController.cpp.

◆ hasValue()

bool hasValue ( )
overridevirtual
Returns
has value

Implements GUINodeController.

Definition at line 163 of file GUIDropDownOptionController.cpp.

◆ initialize()

void initialize ( )
overridevirtual

Initialize controller after element has been created.

Implements GUINodeController.

Definition at line 95 of file GUIDropDownOptionController.cpp.

◆ isHidden()

bool isHidden ( )
inlineprivate
Returns
hidden

Definition at line 77 of file GUIDropDownOptionController.h.

◆ isSelected()

bool isSelected ( )
inlineprivate
Returns
is selected

Definition at line 53 of file GUIDropDownOptionController.h.

◆ onFocusGained()

void onFocusGained ( )
overridevirtual

On focus gained.

Implements GUINodeController.

Definition at line 155 of file GUIDropDownOptionController.cpp.

◆ onFocusLost()

void onFocusLost ( )
overridevirtual

On focus lost.

Implements GUINodeController.

Definition at line 159 of file GUIDropDownOptionController.cpp.

◆ postLayout()

void postLayout ( )
overridevirtual

Post layout event.

Implements GUINodeController.

Definition at line 116 of file GUIDropDownOptionController.cpp.

◆ search()

bool search ( const string &  value)
private

Search by string.

Parameters
valuevalue
Returns
search did match

Definition at line 75 of file GUIDropDownOptionController.cpp.

◆ select()

void select ( )
private

Select.

Definition at line 54 of file GUIDropDownOptionController.cpp.

◆ setDisabled()

void setDisabled ( bool  disabled)
overridevirtual

Set disabled.

Parameters
disableddisabled

Implements GUINodeController.

Definition at line 48 of file GUIDropDownOptionController.cpp.

◆ setValue()

void setValue ( const MutableString value)
overridevirtual

Set value.

Parameters
valuevalue

Implements GUINodeController.

Definition at line 173 of file GUIDropDownOptionController.cpp.

◆ tick()

void tick ( )
overridevirtual

Tick method will be executed once per frame.

Implements GUINodeController.

Definition at line 150 of file GUIDropDownOptionController.cpp.

◆ unselect()

void unselect ( )
private

Unselect.

Definition at line 67 of file GUIDropDownOptionController.cpp.

Friends And Related Function Documentation

◆ GUIDropDownController

friend class GUIDropDownController
friend

Definition at line 31 of file GUIDropDownOptionController.h.

◆ GUIDropDownOption

friend class GUIDropDownOption
friend

Definition at line 30 of file GUIDropDownOptionController.h.

Member Data Documentation

◆ CONDITION_HIDDEN

string CONDITION_HIDDEN = "hidden"
staticprivate

Definition at line 36 of file GUIDropDownOptionController.h.

◆ CONDITION_SELECTED

string CONDITION_SELECTED = "selected"
staticprivate

Definition at line 34 of file GUIDropDownOptionController.h.

◆ CONDITION_UNSELECTED

string CONDITION_UNSELECTED = "unselected"
staticprivate

Definition at line 35 of file GUIDropDownOptionController.h.

◆ dropDownContainerNode

GUIParentNode* dropDownContainerNode { nullptr }
private

Definition at line 38 of file GUIDropDownOptionController.h.

◆ dropDownNode

GUIParentNode* dropDownNode { nullptr }
private

Definition at line 37 of file GUIDropDownOptionController.h.

◆ hidden

bool hidden
private

Definition at line 41 of file GUIDropDownOptionController.h.

◆ initialPostLayout

bool initialPostLayout
private

Definition at line 39 of file GUIDropDownOptionController.h.

◆ selected

bool selected
private

Definition at line 40 of file GUIDropDownOptionController.h.

◆ value

MutableString value
private

Definition at line 42 of file GUIDropDownOptionController.h.


The documentation for this class was generated from the following files: