TDME2 1.9.121
EmptyEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
15
16using std::string;
17
30
31/**
32 * Empty editor tab controller
33 * @author Andreas Drewke
34 * @version $Id$
35 */
37 : public TabController
38{
39
40private:
44 PopUps* popUps { nullptr };
45
46public:
47 /**
48 * Public constructor
49 * @param view view
50 */
52
53 /**
54 * Destructor
55 */
57
58 /**
59 * Get view
60 */
62
63 // overridden method
64 GUIScreenNode* getScreenNode() override;
65
66 // overridden methods
67 void initialize(GUIScreenNode* screenNode) override;
68 void dispose() override;
69 void save() override;
70 void saveAs() override;
71
72 // overridden methods
73 void onValueChanged(GUIElementNode* node) override;
75 void onFocus(GUIElementNode* node) override;
76 void onUnfocus(GUIElementNode* node) override;
77 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
78
79 /**
80 * Set outliner content
81 */
82 void setOutlinerContent();
83
84 /**
85 * Set outliner add drop down content
86 */
88
89 /**
90 * Update details panel
91 * @param outlinerNode outliner node
92 */
93 void updateDetails(const string& outlinerNode);
94
95 /**
96 * Update info text line
97 * @param text text
98 */
99 void updateInfoText(const MutableString& text);
100
101 /**
102 * Shows the error pop up
103 * @param caption caption
104 * @param message message
105 */
106 void showErrorPopUp(const string& caption, const string& message);
107
108};
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 setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
EmptyEditorTabController(EmptyEditorTabView *view)
Public constructor.
void onValueChanged(GUIElementNode *node) override
On value changed.
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