TDME2 1.9.121
EmptyEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/gui/GUI.h>
12#include <tdme/gui/GUIParser.h>
26
27using std::string;
28
30
49
50EmptyEditorTabController::EmptyEditorTabController(EmptyEditorTabView* view)
51{
52 this->view = view;
53 this->popUps = view->getPopUps();
55}
56
59}
60
62 return view;
63}
64
66{
67 return screenNode;
68}
69
71{
72 this->screenNode = screenNode;
74}
75
77{
78}
79
81{
82 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
83 try {
84 if (fileName.empty() == true) throw ExceptionBase("Could not save file. No filename known");
86 Tools::getPathName(fileName),
87 Tools::getFileName(fileName)
88 );
89 } catch (Exception& exception) {
90 showErrorPopUp("Warning", (string(exception.what())));
91 }
92}
93
95{
96 class OnEmptySave: public virtual Action
97 {
98 public:
99 void performAction() override {
100 try {
101 emptyEditorTabController->view->saveFile(
102 emptyEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
103 emptyEditorTabController->popUps->getFileDialogScreenController()->getFileName()
104 );
105 } catch (Exception& exception) {
106 emptyEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
107 }
108 emptyEditorTabController->popUps->getFileDialogScreenController()->close();
109 }
110 OnEmptySave(EmptyEditorTabController* emptyEditorTabController): emptyEditorTabController(emptyEditorTabController) {
111 }
112 private:
113 EmptyEditorTabController* emptyEditorTabController;
114 };
115
116 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
117 vector<string> extensions = {
118 "tempty"
119 };
121 fileName.empty() == false?Tools::getPathName(fileName):string(),
122 "Save to: ",
123 extensions,
124 Tools::getFileName(fileName),
125 false,
126 new OnEmptySave(this)
127 );
128}
129
131{
133}
134
137}
138
141}
142
145}
146
148{
149 auto prototype = view->getPrototype();
150 basePropertiesSubController->onActionPerformed(type, node, prototype);
151}
152
154 string xml;
155 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Prototype") + "\" value=\"" + GUIParser::escapeQuotes("prototype") + "\">\n";
156 auto prototype = view->getPrototype();
157 if (prototype != nullptr) {
159 }
160 xml+= "</selectbox-parent-option>\n";
162
165 string("<dropdown-option text=\"Property\" value=\"property\" />\n")
166 );
167}
168
169void EmptyEditorTabController::updateDetails(const string& outlinerNode) {
172}
173
175 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById(view->getTabId() + "_tab_text_info"))->setText(text);
176}
177
178void EmptyEditorTabController::showErrorPopUp(const string& caption, const string& message)
179{
180 popUps->getInfoDialogScreenController()->show(caption, message);
181}
Prototype definition.
Definition: Prototype.h:49
GUI parser.
Definition: GUIParser.h:39
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
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.
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.
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
void updateDetails(BaseProperties *baseProperties, const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, BaseProperties *baseProperties)
On action performed.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, BaseProperties *baseProperties)
On context menu requested.
void createBasePropertiesXML(BaseProperties *baseProperties, string &xml)
Create base properties XML for outliner.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Action Interface.
Definition: Action.h:12