TDME2 1.9.121
TriggerEditorTabController.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
32
33/**
34 * Trigger editor tab controller
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39 : public TabController
40{
41
42private:
48 PopUps* popUps { nullptr };
49
50public:
51 /**
52 * Public constructor
53 * @param view view
54 */
56
57 /**
58 * Destructor
59 */
61
62 /**
63 * Get view
64 */
66
67 // overridden method
68 GUIScreenNode* getScreenNode() override;
69
70 /**
71 * @return prototype display sub screen controller
72 */
75 }
76
77 /**
78 * @return prototype physics sub screen controller
79 */
82 }
83
84 // overridden methods
85 void initialize(GUIScreenNode* screenNode) override;
86 void dispose() override;
87 void save() override;
88 void saveAs() override;
89
90 // overridden methods
91 void onValueChanged(GUIElementNode* node) override;
93 void onFocus(GUIElementNode* node) override;
94 void onUnfocus(GUIElementNode* node) override;
95 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
96
97 /**
98 * Set outliner content
99 */
100 void setOutlinerContent();
101
102 /**
103 * Set outliner add drop down content
104 */
106
107 /**
108 * Update details panel
109 * @param outlinerNode outliner node
110 */
111 void updateDetails(const string& outlinerNode);
112
113 /**
114 * Update info text line
115 * @param text text
116 */
117 void updateInfoText(const MutableString& text);
118
119 /**
120 * Shows the error pop up
121 * @param caption caption
122 * @param message message
123 */
124 void showErrorPopUp(const string& caption, const string& message);
125
126};
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.
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.
TriggerEditorTabController(TriggerEditorTabView *view)
Public constructor.
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