TDME2 1.9.121
Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | Friends | List of all members
GUIHorizontalScrollbarInternalController Class Reference

GUI scroll bar controller. More...

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

Inheritance diagram for GUIHorizontalScrollbarInternalController:
Inheritance graph
Collaboration diagram for GUIHorizontalScrollbarInternalController:
Collaboration graph

Public Types

enum  State { STATE_NONE , STATE_MOUSEOVER , STATE_DRAGGING }
 

Public Member Functions

virtual State getState ()
 
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...
 

Protected Member Functions

 GUIHorizontalScrollbarInternalController (GUINode *node)
 Constructor. More...
 
- Protected Member Functions inherited from GUINodeController
 GUINodeController (GUINode *node)
 Private constructor. More...
 

Private Member Functions

virtual float getBarWidth ()
 
virtual float getBarLeft ()
 
virtual void setDraggedX (float draggedX)
 Set dragged x. More...
 

Private Attributes

GUILayoutNodecontentNode { nullptr }
 
float contentWidth
 
State state { STATE_NONE }
 
int mouseXOffset
 
MutableString value
 

Friends

class GUIHorizontalScrollbarInternalNode
 

Additional Inherited Members

- Protected Attributes inherited from GUINodeController
GUINodenode { nullptr }
 

Detailed Description

GUI scroll bar controller.

Author
Andreas Drewke
Version
$Id$

Definition at line 23 of file GUIHorizontalScrollbarInternalController.h.

Member Enumeration Documentation

◆ State

enum State
Enumerator
STATE_NONE 
STATE_MOUSEOVER 
STATE_DRAGGING 

Definition at line 28 of file GUIHorizontalScrollbarInternalController.h.

Constructor & Destructor Documentation

◆ GUIHorizontalScrollbarInternalController()

Constructor.

Parameters
nodenode

Definition at line 25 of file GUIHorizontalScrollbarInternalController.cpp.

Member Function Documentation

◆ dispose()

void dispose ( )
overridevirtual

Dispose controller.

Implements GUINodeController.

Definition at line 47 of file GUIHorizontalScrollbarInternalController.cpp.

◆ getBarLeft()

float getBarLeft ( )
privatevirtual
Returns
bar left

Definition at line 71 of file GUIHorizontalScrollbarInternalController.cpp.

◆ getBarWidth()

float getBarWidth ( )
privatevirtual
Returns
bar width

Definition at line 61 of file GUIHorizontalScrollbarInternalController.cpp.

◆ getState()

Returns
state

Definition at line 56 of file GUIHorizontalScrollbarInternalController.cpp.

◆ getValue()

const MutableString & getValue ( )
overridevirtual
Returns
value

Implements GUINodeController.

Definition at line 163 of file GUIHorizontalScrollbarInternalController.cpp.

◆ handleKeyboardEvent()

void handleKeyboardEvent ( GUIKeyboardEvent event)
overridevirtual

Handle keyboard event.

Parameters
eventevent

Implements GUINodeController.

Definition at line 142 of file GUIHorizontalScrollbarInternalController.cpp.

◆ handleMouseEvent()

void handleMouseEvent ( GUINode node,
GUIMouseEvent event 
)
overridevirtual

Handle mouse event.

Parameters
nodenode
eventevent

Implements GUINodeController.

Definition at line 96 of file GUIHorizontalScrollbarInternalController.cpp.

◆ hasValue()

bool hasValue ( )
overridevirtual
Returns
has value

Implements GUINodeController.

Definition at line 158 of file GUIHorizontalScrollbarInternalController.cpp.

◆ initialize()

void initialize ( )
overridevirtual

Initialize controller after element has been created.

Implements GUINodeController.

Definition at line 43 of file GUIHorizontalScrollbarInternalController.cpp.

◆ isDisabled()

bool isDisabled ( )
overridevirtual
Returns
is disabled

Implements GUINodeController.

Definition at line 34 of file GUIHorizontalScrollbarInternalController.cpp.

◆ onFocusGained()

void onFocusGained ( )
overridevirtual

On focus gained.

Implements GUINodeController.

Definition at line 150 of file GUIHorizontalScrollbarInternalController.cpp.

◆ onFocusLost()

void onFocusLost ( )
overridevirtual

On focus lost.

Implements GUINodeController.

Definition at line 154 of file GUIHorizontalScrollbarInternalController.cpp.

◆ onSubTreeChange()

void onSubTreeChange ( )
overridevirtual

On sub tree change.

Implements GUINodeController.

Definition at line 172 of file GUIHorizontalScrollbarInternalController.cpp.

◆ postLayout()

void postLayout ( )
overridevirtual

Post layout event.

Implements GUINodeController.

Definition at line 51 of file GUIHorizontalScrollbarInternalController.cpp.

◆ setDisabled()

void setDisabled ( bool  disabled)
overridevirtual

Set disabled.

Parameters
disableddisabled

Implements GUINodeController.

Definition at line 39 of file GUIHorizontalScrollbarInternalController.cpp.

◆ setDraggedX()

void setDraggedX ( float  draggedX)
privatevirtual

Set dragged x.

Parameters
draggedXdragged x

Definition at line 83 of file GUIHorizontalScrollbarInternalController.cpp.

◆ setValue()

void setValue ( const MutableString value)
overridevirtual

Set value.

Parameters
valuevalue

Implements GUINodeController.

Definition at line 168 of file GUIHorizontalScrollbarInternalController.cpp.

◆ tick()

void tick ( )
overridevirtual

Tick method will be executed once per frame.

Implements GUINodeController.

Definition at line 146 of file GUIHorizontalScrollbarInternalController.cpp.

Friends And Related Function Documentation

◆ GUIHorizontalScrollbarInternalNode

Definition at line 26 of file GUIHorizontalScrollbarInternalController.h.

Member Data Documentation

◆ contentNode

GUILayoutNode* contentNode { nullptr }
private

Definition at line 31 of file GUIHorizontalScrollbarInternalController.h.

◆ contentWidth

float contentWidth
private

Definition at line 32 of file GUIHorizontalScrollbarInternalController.h.

◆ mouseXOffset

int mouseXOffset
private

Definition at line 34 of file GUIHorizontalScrollbarInternalController.h.

◆ state

State state { STATE_NONE }
private

Definition at line 33 of file GUIHorizontalScrollbarInternalController.h.

◆ value

MutableString value
private

Definition at line 35 of file GUIHorizontalScrollbarInternalController.h.


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