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

GUI input internal controller. More...

#include <tdme/gui/nodes/GUIInputInternalController.h>

Inheritance diagram for GUIInputInternalController:
Inheritance graph
Collaboration diagram for GUIInputInternalController:
Collaboration graph

Public Types

enum  CursorMode { CURSORMODE_HIDE , CURSORMODE_SHOW }
 

Public Member Functions

void onTextUpdate ()
 Reset cursor index and offset. More...
 
void formatText ()
 Format text according to options. More...
 
bool isShowCursor ()
 
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 Types

enum  Type { TYPE_STRING , TYPE_FLOAT , TYPE_INT }
 

Private Member Functions

 GUIInputInternalController (GUINode *node)
 Private constructor. More...
 
int getIndex ()
 
int getSelectionIndex ()
 
int getOffset ()
 
void resetCursorMode ()
 Reset cursor mode. More...
 
CursorMode getCursorMode ()
 
void checkOffset ()
 Check and correct offset. More...
 

Private Attributes

GUIElementNodeinputNode { nullptr }
 
int64_t cursorModeStarted { -1LL }
 
CursorMode cursorMode { CURSORMODE_SHOW }
 
int index { 0 }
 
int selectionIndex { -1 }
 
int offset { 0 }
 
bool mouseDraggingInit { false }
 
bool mouseDraggingSlideValueActive { false }
 
bool mouseDraggingSelectionActive { false }
 
array< int, 2 > mouseDragPosition
 
array< int, 2 > mouseOriginalPosition
 
MutableString value
 
Type type { TYPE_STRING }
 
bool haveMin { false }
 
bool haveMax { false }
 
bool haveStep { false }
 
float min { 0.0f }
 
float max { 0.0f }
 
float step { 0.0f }
 
int decimals { 3 }
 
bool editMode { false }
 

Static Private Attributes

static constexpr int64_t CURSOR_MODE_DURATION { 500LL }
 
static constexpr int64_t DRAGGING_CALMDOWN { 50LL }
 

Friends

class GUIInputInternalNode
 
class GUIInputInternalController_CursorMode
 

Additional Inherited Members

- Protected Member Functions inherited from GUINodeController
 GUINodeController (GUINode *node)
 Private constructor. More...
 
- Protected Attributes inherited from GUINodeController
GUINodenode { nullptr }
 

Detailed Description

GUI input internal controller.

Author
Andreas Drewke
Version
$Id$

Definition at line 26 of file GUIInputInternalController.h.

Member Enumeration Documentation

◆ CursorMode

enum CursorMode
Enumerator
CURSORMODE_HIDE 
CURSORMODE_SHOW 

Definition at line 32 of file GUIInputInternalController.h.

◆ Type

enum Type
private
Enumerator
TYPE_STRING 
TYPE_FLOAT 
TYPE_INT 

Definition at line 49 of file GUIInputInternalController.h.

Constructor & Destructor Documentation

◆ GUIInputInternalController()

GUIInputInternalController ( GUINode node)
private

Private constructor.

Parameters
nodenode

Definition at line 57 of file GUIInputInternalController.cpp.

Member Function Documentation

◆ checkOffset()

void checkOffset ( )
private

Check and correct offset.

Definition at line 287 of file GUIInputInternalController.cpp.

◆ dispose()

void dispose ( )
overridevirtual

Dispose controller.

Implements GUINodeController.

Definition at line 107 of file GUIInputInternalController.cpp.

◆ formatText()

void formatText ( )

Format text according to options.

Definition at line 575 of file GUIInputInternalController.cpp.

◆ getCursorMode()

GUIInputInternalController::CursorMode getCursorMode ( )
private
Returns
cursor mode

Definition at line 121 of file GUIInputInternalController.cpp.

◆ getIndex()

int getIndex ( )
inlineprivate
Returns
index

Definition at line 70 of file GUIInputInternalController.h.

◆ getOffset()

int getOffset ( )
inlineprivate
Returns
offset

Definition at line 84 of file GUIInputInternalController.h.

◆ getSelectionIndex()

int getSelectionIndex ( )
inlineprivate
Returns
selection index

Definition at line 77 of file GUIInputInternalController.h.

◆ getValue()

const MutableString & getValue ( )
overridevirtual
Returns
value

Implements GUINodeController.

Definition at line 548 of file GUIInputInternalController.cpp.

◆ handleKeyboardEvent()

void handleKeyboardEvent ( GUIKeyboardEvent event)
overridevirtual

Handle keyboard event.

Parameters
eventevent

Implements GUINodeController.

Definition at line 304 of file GUIInputInternalController.cpp.

◆ handleMouseEvent()

void handleMouseEvent ( GUINode node,
GUIMouseEvent event 
)
overridevirtual

Handle mouse event.

Parameters
nodenode
eventevent

Implements GUINodeController.

Definition at line 137 of file GUIInputInternalController.cpp.

◆ hasValue()

bool hasValue ( )
overridevirtual
Returns
has value

Implements GUINodeController.

Definition at line 543 of file GUIInputInternalController.cpp.

◆ initialize()

void initialize ( )
overridevirtual

Initialize controller after element has been created.

Implements GUINodeController.

Definition at line 79 of file GUIInputInternalController.cpp.

◆ isDisabled()

bool isDisabled ( )
overridevirtual
Returns
is disabled

Implements GUINodeController.

Definition at line 70 of file GUIInputInternalController.cpp.

◆ isShowCursor()

bool isShowCursor ( )
Returns
show cursor

Definition at line 570 of file GUIInputInternalController.cpp.

◆ onFocusGained()

void onFocusGained ( )
overridevirtual

On focus gained.

Implements GUINodeController.

Definition at line 531 of file GUIInputInternalController.cpp.

◆ onFocusLost()

void onFocusLost ( )
overridevirtual

On focus lost.

Implements GUINodeController.

Definition at line 535 of file GUIInputInternalController.cpp.

◆ onSubTreeChange()

void onSubTreeChange ( )
overridevirtual

On sub tree change.

Implements GUINodeController.

Definition at line 624 of file GUIInputInternalController.cpp.

◆ onTextUpdate()

void onTextUpdate ( )

Reset cursor index and offset.

Definition at line 557 of file GUIInputInternalController.cpp.

◆ postLayout()

void postLayout ( )
overridevirtual

Post layout event.

Implements GUINodeController.

Definition at line 111 of file GUIInputInternalController.cpp.

◆ resetCursorMode()

void resetCursorMode ( )
private

Reset cursor mode.

Definition at line 115 of file GUIInputInternalController.cpp.

◆ setDisabled()

void setDisabled ( bool  disabled)
overridevirtual

Set disabled.

Parameters
disableddisabled

Implements GUINodeController.

Definition at line 75 of file GUIInputInternalController.cpp.

◆ setValue()

void setValue ( const MutableString value)
overridevirtual

Set value.

Parameters
valuevalue

Implements GUINodeController.

Definition at line 553 of file GUIInputInternalController.cpp.

◆ tick()

void tick ( )
overridevirtual

Tick method will be executed once per frame.

Implements GUINodeController.

Definition at line 527 of file GUIInputInternalController.cpp.

Friends And Related Function Documentation

◆ GUIInputInternalController_CursorMode

friend class GUIInputInternalController_CursorMode
friend

Definition at line 30 of file GUIInputInternalController.h.

◆ GUIInputInternalNode

friend class GUIInputInternalNode
friend

Definition at line 29 of file GUIInputInternalController.h.

Member Data Documentation

◆ CURSOR_MODE_DURATION

constexpr int64_t CURSOR_MODE_DURATION { 500LL }
staticconstexprprivate

Definition at line 34 of file GUIInputInternalController.h.

◆ cursorMode

CursorMode cursorMode { CURSORMODE_SHOW }
private

Definition at line 38 of file GUIInputInternalController.h.

◆ cursorModeStarted

int64_t cursorModeStarted { -1LL }
private

Definition at line 37 of file GUIInputInternalController.h.

◆ decimals

int decimals { 3 }
private

Definition at line 57 of file GUIInputInternalController.h.

◆ DRAGGING_CALMDOWN

constexpr int64_t DRAGGING_CALMDOWN { 50LL }
staticconstexprprivate

Definition at line 35 of file GUIInputInternalController.h.

◆ editMode

bool editMode { false }
private

Definition at line 59 of file GUIInputInternalController.h.

◆ haveMax

bool haveMax { false }
private

Definition at line 52 of file GUIInputInternalController.h.

◆ haveMin

bool haveMin { false }
private

Definition at line 51 of file GUIInputInternalController.h.

◆ haveStep

bool haveStep { false }
private

Definition at line 53 of file GUIInputInternalController.h.

◆ index

int index { 0 }
private

Definition at line 39 of file GUIInputInternalController.h.

◆ inputNode

GUIElementNode* inputNode { nullptr }
private

Definition at line 36 of file GUIInputInternalController.h.

◆ max

float max { 0.0f }
private

Definition at line 55 of file GUIInputInternalController.h.

◆ min

float min { 0.0f }
private

Definition at line 54 of file GUIInputInternalController.h.

◆ mouseDraggingInit

bool mouseDraggingInit { false }
private

Definition at line 42 of file GUIInputInternalController.h.

◆ mouseDraggingSelectionActive

bool mouseDraggingSelectionActive { false }
private

Definition at line 44 of file GUIInputInternalController.h.

◆ mouseDraggingSlideValueActive

bool mouseDraggingSlideValueActive { false }
private

Definition at line 43 of file GUIInputInternalController.h.

◆ mouseDragPosition

array<int, 2> mouseDragPosition
private

Definition at line 45 of file GUIInputInternalController.h.

◆ mouseOriginalPosition

array<int, 2> mouseOriginalPosition
private

Definition at line 46 of file GUIInputInternalController.h.

◆ offset

int offset { 0 }
private

Definition at line 41 of file GUIInputInternalController.h.

◆ selectionIndex

int selectionIndex { -1 }
private

Definition at line 40 of file GUIInputInternalController.h.

◆ step

float step { 0.0f }
private

Definition at line 56 of file GUIInputInternalController.h.

◆ type

Type type { TYPE_STRING }
private

Definition at line 50 of file GUIInputInternalController.h.

◆ value

MutableString value
private

Definition at line 47 of file GUIInputInternalController.h.


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