TDME2 1.9.121
ProgressBarScreenController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
12
13using std::string;
14
20
21/**
22 * Progress bar screen controller
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27 : public ScreenController
28{
29
30private:
35
36public:
37 /**
38 * Public constructor
39 */
41
42 /**
43 * Destructor
44 */
46
47 GUIScreenNode* getScreenNode() override;
48 void initialize() override;
49 void dispose() override;
50
51 /**
52 * Shows the pop up
53 * @param showProgressBar show progress bar
54 */
55 void show(const string& message, bool showProgressBar = true);
56
57 /**
58 * Show progress
59 * @param value value
60 */
61 void progress(float value);
62
63 /**
64 * Show progress 2
65 * @param value value
66 */
67 void progress2(float value);
68
69 /**
70 * Closes the pop up
71 */
72 void close();
73
74};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void show(const string &message, bool showProgressBar=true)
Shows the pop up.
Mutable string class.
Definition: MutableString.h:16
Screen controller, which connects GUI screen definition with code.