TDME2 1.9.121
InfoDialogScreenController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/gui/GUI.h>
13#include <tdme/gui/GUIParser.h>
18
19using std::string;
20
33
34InfoDialogScreenController::InfoDialogScreenController()
35{
36}
37
39{
40 screenNode = nullptr;
41}
42
44{
45 return screenNode;
46}
47
49{
50 try {
51 screenNode = GUIParser::parse("resources/engine/gui", "popup_infodialog.xml");
52 screenNode->setVisible(false);
54 tabsHeaderNode = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("infodialog_tabs-header"));
55 messageNode = dynamic_cast<GUIStyledTextNode*>(screenNode->getNodeById("infodialog_message"));
56 } catch (Exception& exception) {
57 Console::print(string("InfoDialogScreenController::initialize(): An error occurred: "));
58 Console::println(string(exception.what()));
59 }
60}
61
63{
64}
65
66void InfoDialogScreenController::show(const string& caption, const string& message)
67{
69 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById(tabsHeaderNode->getId()))->replaceSubNodes("<tab id=\"infodialog_caption\" image=\"resources/engine/images/attention.png\" text=\"" + caption + "\" closeable=\"true\"/>", true);
70 messageNode->setText(message);
72}
73
75{
76 screenNode->setVisible(false);
77}
78
80{
82 if (node->getId() == "infodialog_button1" ||
83 StringTools::startsWith(node->getId(), "infodialog_caption_close_") == true) { // TODO: a.drewke, check with DH) {
84 close();
85 }
86 }
87}
GUI parser.
Definition: GUIParser.h:39
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void setVisible(bool visible)
Set visible.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void layout() override
Layout.
void addActionListener(GUIActionListener *listener)
Add action listener.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
void setText(const MutableString &text)
Set text.
void show(const string &caption, const string &message)
Shows the pop up.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19