TDME2 1.9.121
TextureTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/gui/GUI.h>
11#include <tdme/gui/GUIParser.h>
24
25#include <ext/tinyxml/tinyxml.h>
26
28
29using std::string;
30
34using tdme::gui::GUI;
48
52
53#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
54
55TextureTabController::TextureTabController(TextureTabView* view)
56{
57 this->view = view;
58 this->popUps = view->getPopUps();
59}
60
62}
63
65 return view;
66}
67
69{
70 return screenNode;
71}
72
74{
75 this->screenNode = screenNode;
76}
77
79{
80}
81
83{
84}
85
87{
88}
89
90void TextureTabController::showErrorPopUp(const string& caption, const string& message)
91{
92 popUps->getInfoDialogScreenController()->show(caption, message);
93}
94
96{
97}
98
100}
101
103}
104
106}
107
109 string xml;
110 xml+= "<selectbox-option text=\"Texture\" value=\"texture\" />\n";
112}
113
116}
117
119{
120}
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 onFocus(GUIElementNode *node) override
On focus.
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