TDME2 1.9.121
GUINodeController.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
7
12
13/**
14 * GUI node controller base class
15 * @author Andreas Drewke
16 * @version $Id$
17 */
19{
20protected:
21 GUINode* node { nullptr };
22
23 /**
24 * Private constructor
25 */
27
28public:
29 /**
30 * Destructor
31 */
32 virtual ~GUINodeController();
33
34 /**
35 * @return node
36 */
37 virtual GUINode* getNode();
38
39 /**
40 * Initialize controller after element has been created
41 */
42 virtual void initialize() = 0;
43
44 /**
45 * Dispose controller
46 */
47 virtual void dispose() = 0;
48
49 /**
50 * Post layout event
51 */
52 virtual void postLayout() = 0;
53
54 /**
55 * Handle mouse event
56 * @param node node
57 * @param event event
58 */
59 virtual void handleMouseEvent(GUINode* node, GUIMouseEvent* event) = 0;
60
61 /**
62 * Handle keyboard event
63 * @param event event
64 */
65 virtual void handleKeyboardEvent(GUIKeyboardEvent* event) = 0;
66
67 /**
68 * Tick method will be executed once per frame
69 */
70 virtual void tick() = 0;
71
72 /**
73 * On focus gained
74 */
75 virtual void onFocusGained() = 0;
76
77 /**
78 * On focus lost
79 */
80 virtual void onFocusLost() = 0;
81
82 /**
83 * @return has value
84 */
85 virtual bool hasValue() = 0;
86
87 /**
88 * @return value
89 */
90 virtual const MutableString& getValue() = 0;
91
92 /**
93 * Set value
94 * @param value value
95 */
96 virtual void setValue(const MutableString& value) = 0;
97
98 /**
99 * @return is disabled
100 */
101 virtual bool isDisabled() = 0;
102
103 /**
104 * Set disabled
105 * @param disabled disabled
106 */
107 virtual void setDisabled(bool disabled) = 0;
108
109 /**
110 * On sub tree change
111 */
112 virtual void onSubTreeChange() = 0;
113
114};
GUI node controller base class.
virtual void postLayout()=0
Post layout event.
virtual void onFocusLost()=0
On focus lost.
virtual void setValue(const MutableString &value)=0
Set value.
GUINodeController(GUINode *node)
Private constructor.
virtual void setDisabled(bool disabled)=0
Set disabled.
virtual void onFocusGained()=0
On focus gained.
virtual void initialize()=0
Initialize controller after element has been created.
virtual void onSubTreeChange()=0
On sub tree change.
virtual const MutableString & getValue()=0
virtual void handleKeyboardEvent(GUIKeyboardEvent *event)=0
Handle keyboard event.
virtual void handleMouseEvent(GUINode *node, GUIMouseEvent *event)=0
Handle mouse event.
virtual void dispose()=0
Dispose controller.
virtual void tick()=0
Tick method will be executed once per frame.
GUI node base class.
Definition: GUINode.h:63
Mutable string class.
Definition: MutableString.h:16