TDME2
1.9.121
src
tdme
tools
editor
tabcontrollers
subcontrollers
BasePropertiesSubController.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <array>
4
#include <map>
5
#include <string>
6
#include <vector>
7
8
#include <
tdme/tdme.h
>
9
#include <
tdme/engine/prototype/fwd-tdme.h
>
10
#include <
tdme/gui/events/fwd-tdme.h
>
11
#include <
tdme/gui/events/GUIActionListener.h
>
12
#include <
tdme/gui/nodes/fwd-tdme.h
>
13
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
14
#include <
tdme/tools/editor/tabcontrollers/subcontrollers/fwd-tdme.h
>
15
#include <
tdme/tools/editor/tabviews/subviews/fwd-tdme.h
>
16
#include <
tdme/tools/editor/views/fwd-tdme.h
>
17
#include <
tdme/utilities/fwd-tdme.h
>
18
19
using
std::array;
20
using
std::map;
21
using
std::string;
22
using
std::vector;
23
24
using
tdme::engine::prototype::BaseProperties
;
25
using
tdme::engine::prototype::BaseProperty
;
26
using
tdme::gui::events::GUIActionListenerType
;
27
using
tdme::gui::nodes::GUIElementNode
;
28
using
tdme::gui::nodes::GUIScreenNode
;
29
using
tdme::tools::editor::misc::PopUps
;
30
using
tdme::tools::editor::tabviews::subviews::BasePropertiesSubView
;
31
using
tdme::tools::editor::views::EditorView
;
32
using
tdme::utilities::Action
;
33
using
tdme::utilities::MutableString
;
34
35
/**
36
* Prototype base sub screen controller
37
* @author Andreas Drewke
38
* @version $Id$
39
*/
40
class
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController
final
41
{
42
private
:
43
EditorView
*
editorView
{
nullptr
};
44
BasePropertiesSubView
*
view
{
nullptr
};
45
PopUps
*
popUps
{
nullptr
};
46
GUIScreenNode
*
screenNode
{
nullptr
};
47
string
rootNodeId
;
48
49
array<string, 1>
applyPropertyNodes
= {
50
"property_value"
51
};
52
53
array<string, 2>
applyBaseNodes
= {
54
"prototype_name"
,
55
"prototype_description"
56
};
57
58
string
renamePropertyName
;
59
60
public
:
61
/**
62
* Public constructor
63
* @param editorView editor view
64
* @param rootNode root node
65
*/
66
BasePropertiesSubController
(
EditorView
*
editorView
,
const
string
& rootNode);
67
68
/**
69
* Destructor
70
*/
71
~BasePropertiesSubController
();
72
73
/**
74
* Init
75
* @param screenNode screen node
76
*/
77
void
initialize
(
GUIScreenNode
*
screenNode
);
78
79
/**
80
* Create base properties XML for outliner
81
* @param baseProperties base properties
82
* @param xml xml
83
*/
84
void
createBasePropertiesXML
(
BaseProperties
* baseProperties,
string
& xml);
85
86
/**
87
* Set property base details
88
* @param prototype prototype
89
*/
90
void
setBasePropertiesDetails
(
BaseProperties
* baseProperties);
91
92
/**
93
* Apply property base details
94
* @param prototype prototype
95
*/
96
void
applyPropertyDetails
(
BaseProperties
* baseProperties);
97
98
/**
99
* Set property details
100
* @param prototype prototype
101
* @param propertyName property name
102
*/
103
void
setPropertyDetails
(
BaseProperties
* baseProperties,
const
string
& propertyName);
104
105
/**
106
* Update details panel
107
* @param prototype prototype
108
* @param outlinerNode outliner node
109
*/
110
void
updateDetails
(
BaseProperties
* baseProperties,
const
string
& outlinerNode);
111
112
/**
113
* Apply property details
114
* @param prototype prototype
115
* @param propertyName property name
116
*/
117
void
applyPropertyDetails
(
BaseProperties
* baseProperties,
const
string
& propertyName);
118
119
/**
120
* Create property
121
* @param prototype prototype
122
*/
123
void
createProperty
(
BaseProperties
* baseProperties);
124
125
/**
126
* Start rename property
127
* @param property property
128
* @param propertyName property name
129
*/
130
void
startRenameProperty
(
BaseProperties
* baseProperties,
const
string
& propertyName);
131
132
/**
133
* Rename property
134
* @param prototype prototype
135
*/
136
void
renameProperty
(
BaseProperties
* baseProperties);
137
138
/**
139
* On value changed
140
* @param node node
141
* @param prototype prototype
142
*/
143
void
onValueChanged
(
GUIElementNode
* node,
BaseProperties
* baseProperties);
144
145
/**
146
* On action performed
147
* @param type type
148
* @param node node
149
* @param prototype prototype
150
*/
151
void
onActionPerformed
(
GUIActionListenerType
type,
GUIElementNode
* node,
BaseProperties
* baseProperties);
152
153
/**
154
* On focus
155
* @param node node
156
* @param prototype prototype
157
*/
158
void
onFocus
(
GUIElementNode
* node,
BaseProperties
* baseProperties);
159
160
/**
161
* On unfocus
162
* @param node node
163
* @param prototype prototype
164
*/
165
void
onUnfocus
(
GUIElementNode
* node,
BaseProperties
* baseProperties);
166
167
/**
168
* On context menu requested
169
* @param node node
170
* @param mouseX unscaled mouse X position
171
* @param mouseY unscaled mouse Y position
172
* @param prototype prototype
173
*/
174
void
onContextMenuRequested
(
GUIElementNode
* node,
int
mouseX,
int
mouseY,
BaseProperties
* baseProperties);
175
176
/**
177
* Apply property value
178
* @param prototype prototype
179
*/
180
void
applyPropertyValue
(
BaseProperties
* baseProperties);
181
182
/**
183
* Shows the error pop up
184
* @param caption caption
185
* @param message message
186
*/
187
void
showErrorPopUp
(
const
string
& caption,
const
string
& message);
188
189
};
GUIActionListener.h
tdme::engine::prototype::BaseProperties
Base properties.
Definition:
BaseProperties.h:23
tdme::engine::prototype::BaseProperty
Base property model class.
Definition:
BaseProperty.h:16
tdme::gui::nodes::GUIElementNode
GUI element node.
Definition:
GUIElementNode.h:38
tdme::gui::nodes::GUIScreenNode
GUI screen node that represents a screen that can be rendered via GUI system.
Definition:
GUIScreenNode.h:57
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController
Prototype base sub screen controller.
Definition:
BasePropertiesSubController.h:41
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::applyBaseNodes
array< string, 2 > applyBaseNodes
Definition:
BasePropertiesSubController.h:53
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::onValueChanged
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
Definition:
BasePropertiesSubController.cpp:239
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::onFocus
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
Definition:
BasePropertiesSubController.cpp:265
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::applyPropertyValue
void applyPropertyValue(BaseProperties *baseProperties)
Apply property value.
Definition:
BasePropertiesSubController.cpp:363
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::createProperty
void createProperty(BaseProperties *baseProperties)
Create property.
Definition:
BasePropertiesSubController.cpp:153
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::rootNodeId
string rootNodeId
Definition:
BasePropertiesSubController.h:47
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::view
BasePropertiesSubView * view
Definition:
BasePropertiesSubController.h:44
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::applyPropertyDetails
void applyPropertyDetails(BaseProperties *baseProperties)
Apply property base details.
Definition:
BasePropertiesSubController.cpp:102
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::onUnfocus
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
Definition:
BasePropertiesSubController.cpp:268
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::setBasePropertiesDetails
void setBasePropertiesDetails(BaseProperties *baseProperties)
Set property base details.
Definition:
BasePropertiesSubController.cpp:87
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::updateDetails
void updateDetails(BaseProperties *baseProperties, const string &outlinerNode)
Update details panel.
Definition:
BasePropertiesSubController.cpp:129
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::screenNode
GUIScreenNode * screenNode
Definition:
BasePropertiesSubController.h:46
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::setPropertyDetails
void setPropertyDetails(BaseProperties *baseProperties, const string &propertyName)
Set property details.
Definition:
BasePropertiesSubController.cpp:112
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::showErrorPopUp
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
Definition:
BasePropertiesSubController.cpp:381
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::onActionPerformed
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, BaseProperties *baseProperties)
On action performed.
Definition:
BasePropertiesSubController.cpp:256
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::popUps
PopUps * popUps
Definition:
BasePropertiesSubController.h:45
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::onContextMenuRequested
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, BaseProperties *baseProperties)
On context menu requested.
Definition:
BasePropertiesSubController.cpp:287
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::applyPropertyNodes
array< string, 1 > applyPropertyNodes
Definition:
BasePropertiesSubController.h:49
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::createBasePropertiesXML
void createBasePropertiesXML(BaseProperties *baseProperties, string &xml)
Create base properties XML for outliner.
Definition:
BasePropertiesSubController.cpp:76
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::renameProperty
void renameProperty(BaseProperties *baseProperties)
Rename property.
Definition:
BasePropertiesSubController.cpp:207
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::renamePropertyName
string renamePropertyName
Definition:
BasePropertiesSubController.h:58
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::~BasePropertiesSubController
~BasePropertiesSubController()
Destructor.
Definition:
BasePropertiesSubController.cpp:67
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::initialize
void initialize(GUIScreenNode *screenNode)
Init.
Definition:
BasePropertiesSubController.cpp:71
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::editorView
EditorView * editorView
Definition:
BasePropertiesSubController.h:43
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::BasePropertiesSubController
BasePropertiesSubController(EditorView *editorView, const string &rootNode)
Public constructor.
Definition:
BasePropertiesSubController.cpp:59
tdme::tools::editor::tabcontrollers::subcontrollers::BasePropertiesSubController::startRenameProperty
void startRenameProperty(BaseProperties *baseProperties, const string &propertyName)
Start rename property.
Definition:
BasePropertiesSubController.cpp:193
tdme::tools::editor::tabviews::subviews::BasePropertiesSubView
Model base view.
Definition:
BasePropertiesSubView.h:21
tdme::tools::editor::views::EditorView
Editor View.
Definition:
EditorView.h:30
tdme::utilities::MutableString
Mutable string class.
Definition:
MutableString.h:16
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
tdme::gui::events::GUIActionListenerType
GUIActionListenerType
Definition:
GUIActionListener.h:12
tdme::utilities::Action
Action Interface.
Definition:
Action.h:12
tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3