TDME2 1.9.121
TextEditorTabController.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>
25
26#include <ext/tinyxml/tinyxml.h>
27
29
30using std::string;
31
36using tdme::gui::GUI;
50
54
55#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
56
57TextEditorTabController::TextEditorTabController(TextEditorTabView* view)
58{
59 this->view = view;
60 this->popUps = view->getPopUps();
61}
62
64}
65
67 return view;
68}
69
71{
72 return screenNode;
73}
74
76{
77 this->screenNode = screenNode;
78}
79
81{
82}
83
85{
86}
87
89{
90}
91
92void TextEditorTabController::showErrorPopUp(const string& caption, const string& message)
93{
94 popUps->getInfoDialogScreenController()->show(caption, message);
95}
96
98{
99}
100
102}
103
105}
106
108}
109
111 string xml;
112 xml+= "<selectbox-option text=\"Text\" value=\"texture\" />\n";
114}
115
118}
119
121{
122}
GUI parser.
Definition: GUIParser.h:39
GUI module class.
Definition: GUI.h:66
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
File system singleton class.
Definition: FileSystem.h:14
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onUnfocus(GUIElementNode *node) override
On unfocus.
void onValueChanged(GUIElementNode *node) override
On value changed.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void initialize(GUIScreenNode *screenNode) override
Init.
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
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
An attribute is a name-value pair.
Definition: tinyxml.h:734
Always the top level node.
Definition: tinyxml.h:1317
The element is a container class.
Definition: tinyxml.h:886
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