TDME2 1.9.121
AboutDialogScreenController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
14#include <tdme/gui/GUI.h>
15#include <tdme/gui/GUIParser.h>
20
21using std::string;
22
37
38AboutDialogScreenController::AboutDialogScreenController()
39{
40}
41
43{
44 screenNode = nullptr;
45}
46
48{
49 return screenNode;
50}
51
53{
54 try {
55 screenNode = GUIParser::parse("resources/engine/gui", "popup_about.xml");
56 screenNode->setVisible(false);
58 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById("about_version"))->setText(MutableString(Version::getVersion()));
59 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById("about_platform"))->setText(MutableString("Platform: " + Application::getOSName() + "/" + Application::getCPUName()));
60 required_dynamic_cast<GUIStyledTextNode*>(screenNode->getNodeById("about_graphics"))->setText(MutableString("Graphics: " + StringTools::replace(StringTools::replace(Engine::getInstance()->getGraphicsRenderer(), "[", "\\["), "]", "\\]")));
61 } catch (Exception& exception) {
62 Console::print(string("AboutDialogScreenController::initialize(): An error occurred: "));
63 Console::println(string(exception.what()));
64 }
65}
66
68{
69}
70
72{
75}
76
78{
79 screenNode->setVisible(false);
80}
81
83{
85 if (StringTools::startsWith(node->getId(), "about_caption_close_") == true) { // TODO: a.drewke, check with DH) {
86 close();
87 }
88 }
89}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
Engine main class.
Definition: Engine.h:122
GUI parser.
Definition: GUIParser.h:39
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.
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