TDME2 1.9.121
AboutDialogScreenController.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
19
20/**
21 * About dialog screen controller
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26 : public ScreenController
27 , public virtual GUIActionListener
28{
29
30private:
32
33public:
34 /**
35 * Public constructor
36 */
38
39 /**
40 * Destructor
41 */
43
44 GUIScreenNode* getScreenNode() override;
45 void initialize() override;
46 void dispose() override;
48
49 /**
50 * Shows the pop up
51 */
52 void show();
53 /**
54 * Closes the pop up
55 */
56 void close();
57
58};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
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.