38AboutDialogScreenController::AboutDialogScreenController()
55 screenNode = GUIParser::parse(
"resources/engine/gui",
"popup_about.xml");
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(),
"[",
"\\["),
"]",
"\\]")));
62 Console::print(
string(
"AboutDialogScreenController::initialize(): An error occurred: "));
63 Console::println(
string(exception.what()));
85 if (StringTools::startsWith(node->
getId(),
"about_caption_close_") ==
true) {
Application base class, please make sure to allocate application on heap to have correct application ...
GUI screen node that represents a screen that can be rendered via GUI system.
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.
std::exception Exception
Exception base class.