TDME2 1.9.121
InfoDialogScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13
22
23/**
24 * Info dialog screen controller
25 * @author Andreas Drewke
26 * @version $Id$
27 */
29 : public ScreenController
30 , public virtual GUIActionListener
31{
32
33private:
37
38public:
39 /**
40 * Public constructor
41 */
43
44 /**
45 * Destructor
46 */
48
49 GUIScreenNode* getScreenNode() override;
50 void initialize() override;
51 void dispose() override;
53
54 /**
55 * Shows the pop up
56 */
57 void show(const string& caption, const string& message);
58 /**
59 * Closes the pop up
60 */
61 void close();
62
63};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void show(const string &caption, const string &message)
Shows the pop up.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.
Screen controller, which connects GUI screen definition with code.