TDME2 1.9.121
EnvMapEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5
6#include <tdme/tdme.h>
15
16using std::array;
17using std::string;
18
30
31/**
32 * Environ map editor screen controller
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37 : public TabController
38{
39
40private:
43 PopUps* popUps { nullptr };
44
45 array<string, 7> applyNodesRenderPasses {
46 "rendersettings_renderpass_standard",
47 "rendersettings_renderpass_sky",
48 "rendersettings_renderpass_terrain",
49 "rendersettings_renderpass_water",
50 "rendersettings_renderpass_postprocessing",
51 "rendersettings_frequency",
52 "rendersettings_frequency_value"
53 };
54
55 array<string, 3> applyNodesLocation {
56 "location_translation_x",
57 "location_translation_y",
58 "location_translation_z"
59 };
60
61public:
62 /**
63 * Public constructor
64 * @param view view
65 */
67
68 /**
69 * Destructor
70 */
72
73 /**
74 * Get view
75 */
77
78 // overridden method
79 GUIScreenNode* getScreenNode() override;
80
81 // overridden methods
82 void initialize(GUIScreenNode* screenNode) override;
83 void dispose() override;
84 void save() override;
85 void saveAs() override;
86
87 // overridden methods
88 void onValueChanged(GUIElementNode* node) override;
90 void onFocus(GUIElementNode* node) override;
91 void onUnfocus(GUIElementNode* node) override;
92 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
93
94 /**
95 * Apply render passes
96 */
97 void applyRenderPasses();
98
99 /**
100 * Apply location
101 */
102 void applyLocation();
103
104 /**
105 * Set outliner content
106 */
107 void setOutlinerContent();
108
109 /**
110 * Set outliner add drop down content
111 */
113
114 /**
115 * Update details panel
116 * @param outlinerNode outliner node
117 */
118 void updateDetails(const string& outlinerNode);
119
120 /**
121 * Update info text line
122 * @param text text
123 */
124 void updateInfoText(const MutableString& text);
125
126 /**
127 * Shows the error pop up
128 * @param caption caption
129 * @param message message
130 */
131 void showErrorPopUp(const string& caption, const string& message);
132
133};
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Pop ups controller accessor class.
Definition: PopUps.h:19
void updateInfoText(const MutableString &text)
Update info text line.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onValueChanged(GUIElementNode *node) override
On value changed.
EnvMapEditorTabController(EnvMapEditorTabView *view)
Public constructor.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.
GUI change listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23