84 if (fileName.empty() ==
true)
throw ExceptionBase(
"Could not save file. No filename known");
86 Tools::getPathName(fileName),
87 Tools::getFileName(fileName)
96 class OnEmptySave:
public virtual Action
99 void performAction()
override {
101 emptyEditorTabController->view->saveFile(
102 emptyEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
103 emptyEditorTabController->popUps->getFileDialogScreenController()->getFileName()
106 emptyEditorTabController->showErrorPopUp(
"Warning", (
string(exception.what())));
108 emptyEditorTabController->popUps->getFileDialogScreenController()->close();
110 OnEmptySave(
EmptyEditorTabController* emptyEditorTabController): emptyEditorTabController(emptyEditorTabController) {
117 vector<string> extensions = {
121 fileName.empty() ==
false?Tools::getPathName(fileName):
string(),
124 Tools::getFileName(fileName),
126 new OnEmptySave(
this)
155 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Prototype") +
"\" value=\"" + GUIParser::escapeQuotes(
"prototype") +
"\">\n";
157 if (prototype !=
nullptr) {
160 xml+=
"</selectbox-parent-option>\n";
165 string(
"<dropdown-option text=\"Property\" value=\"property\" />\n")
const string & getFileName()
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
std::exception Exception
Exception base class.