TDME2 1.9.121
GUIInputInternalController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
10
11using std::array;
12
16using tdme::gui::nodes::GUIInputInternalController_CursorMode;
20
21/**
22 * GUI input internal controller
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27 : public GUINodeController
28{
31public:
33private:
34 static constexpr int64_t CURSOR_MODE_DURATION { 500LL };
35 static constexpr int64_t DRAGGING_CALMDOWN { 50LL };
37 int64_t cursorModeStarted { -1LL };
39 int index { 0 };
40 int selectionIndex { -1 };
41 int offset { 0 };
42 bool mouseDraggingInit { false };
45 array<int, 2> mouseDragPosition;
46 array<int, 2> mouseOriginalPosition;
48
51 bool haveMin { false };
52 bool haveMax { false };
53 bool haveStep { false };
54 float min { 0.0f };
55 float max { 0.0f };
56 float step { 0.0f };
57 int decimals { 3 };
58
59 bool editMode { false };
60
61 /**
62 * Private constructor
63 * @param node node
64 */
66
67 /**
68 * @return index
69 */
70 inline int getIndex() {
71 return index;
72 }
73
74 /**
75 * @return selection index
76 */
77 inline int getSelectionIndex() {
78 return selectionIndex;
79 }
80
81 /**
82 * @return offset
83 */
84 inline int getOffset() {
85 return offset;
86 }
87
88 /**
89 * Reset cursor mode
90 */
91 void resetCursorMode();
92
93 /**
94 * @return cursor mode
95 */
97
98 /**
99 * Check and correct offset
100 */
101 void checkOffset();
102
103public:
104 /**
105 * Reset cursor index and offset
106 */
107 void onTextUpdate();
108
109 /**
110 * Format text according to options
111 */
112 void formatText();
113
114 /**
115 * @return show cursor
116 */
117 bool isShowCursor();
118
119 // overridden methods
120 bool isDisabled() override;
121 void setDisabled(bool disabled) override;
122 void initialize() override;
123 void dispose() override;
124 void postLayout() override;
125 void handleMouseEvent(GUINode* node, GUIMouseEvent* event) override;
126 void handleKeyboardEvent(GUIKeyboardEvent* event) override;
127 void tick() override;
128 void onFocusGained() override;
129 void onFocusLost() override;
130 bool hasValue() override;
131 const MutableString& getValue() override;
132 void setValue(const MutableString& value) override;
133 void onSubTreeChange() override;
134
135};
void formatText()
Format text according to options.
GUIInputInternalController(GUINode *node)
Private constructor.
void initialize() override
Initialize controller after element has been created.
void handleKeyboardEvent(GUIKeyboardEvent *event) override
Handle keyboard event.
void setValue(const MutableString &value) override
Set value.
void handleMouseEvent(GUINode *node, GUIMouseEvent *event) override
Handle mouse event.
void tick() override
Tick method will be executed once per frame.
void setDisabled(bool disabled) override
Set disabled.
GUI node controller base class.
GUI node base class.
Definition: GUINode.h:63
Mutable string class.
Definition: MutableString.h:16