TDME2
1.9.121
src
tdme
tools
editor
misc
PopUps.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/tools/editor/controllers/fwd-tdme.h
>
5
#include <
tdme/tools/editor/misc/fwd-tdme.h
>
6
7
using
tdme::tools::editor::controllers::AboutDialogScreenController
;
8
using
tdme::tools::editor::controllers::ColorPickerScreenController
;
9
using
tdme::tools::editor::controllers::ContextMenuScreenController
;
10
using
tdme::tools::editor::controllers::FileDialogScreenController
;
11
using
tdme::tools::editor::controllers::InfoDialogScreenController
;
12
using
tdme::tools::editor::controllers::ProgressBarScreenController
;
13
14
/**
15
* Pop ups controller accessor class
16
* @author andreas
17
*/
18
class
tdme::tools::editor::misc::PopUps
final
19
{
20
private
:
21
InfoDialogScreenController
*
infoDialogScreenController
{
nullptr
};
22
FileDialogScreenController
*
fileDialogScreenController
{
nullptr
};
23
ProgressBarScreenController
*
progressBarScreenController
{
nullptr
};
24
ColorPickerScreenController
*
colorPickerScreenController
{
nullptr
};
25
ContextMenuScreenController
*
contextMenuScreenController
{
nullptr
};
26
AboutDialogScreenController
*
aboutDialogScreenController
{
nullptr
};
27
28
public
:
29
/**
30
* Public constructor
31
*/
32
PopUps
();
33
34
/**
35
* Destructor
36
*/
37
~PopUps
();
38
39
/**
40
* @return file dialog screen controller
41
*/
42
inline
FileDialogScreenController
*
getFileDialogScreenController
() {
43
return
fileDialogScreenController
;
44
}
45
46
/**
47
* @return info dialog screen controller
48
*/
49
inline
InfoDialogScreenController
*
getInfoDialogScreenController
() {
50
return
infoDialogScreenController
;
51
}
52
53
/**
54
* @return progress bar screen controller
55
*/
56
inline
ProgressBarScreenController
*
getProgressBarScreenController
() {
57
return
progressBarScreenController
;
58
}
59
60
/**
61
* @return color picker screen controller
62
*/
63
inline
ColorPickerScreenController
*
getColorPickerScreenController
() {
64
return
colorPickerScreenController
;
65
}
66
67
/**
68
* @return context menu screen controller
69
*/
70
inline
ContextMenuScreenController
*
getContextMenuScreenController
() {
71
return
contextMenuScreenController
;
72
}
73
74
/**
75
* @return about dialog screen controller
76
*/
77
inline
AboutDialogScreenController
*
getAboutDialogScreenController
() {
78
return
aboutDialogScreenController
;
79
}
80
81
/**
82
* Init
83
*/
84
void
initialize
();
85
86
/**
87
* Dispose
88
*/
89
void
dispose
();
90
91
};
tdme::tools::editor::controllers::AboutDialogScreenController
About dialog screen controller.
Definition:
AboutDialogScreenController.h:28
tdme::tools::editor::controllers::ColorPickerScreenController
Color picker screen controller.
Definition:
ColorPickerScreenController.h:37
tdme::tools::editor::controllers::ContextMenuScreenController
Context menu screen controller.
Definition:
ContextMenuScreenController.h:34
tdme::tools::editor::controllers::FileDialogScreenController
File dialog screen controller.
Definition:
FileDialogScreenController.h:41
tdme::tools::editor::controllers::InfoDialogScreenController
Info dialog screen controller.
Definition:
InfoDialogScreenController.h:31
tdme::tools::editor::controllers::ProgressBarScreenController
Progress bar screen controller.
Definition:
ProgressBarScreenController.h:28
tdme::tools::editor::misc::PopUps
Pop ups controller accessor class.
Definition:
PopUps.h:19
tdme::tools::editor::misc::PopUps::~PopUps
~PopUps()
Destructor.
Definition:
PopUps.cpp:35
tdme::tools::editor::misc::PopUps::initialize
void initialize()
Init.
Definition:
PopUps.cpp:44
tdme::tools::editor::misc::PopUps::getAboutDialogScreenController
AboutDialogScreenController * getAboutDialogScreenController()
Definition:
PopUps.h:77
tdme::tools::editor::misc::PopUps::infoDialogScreenController
InfoDialogScreenController * infoDialogScreenController
Definition:
PopUps.h:21
tdme::tools::editor::misc::PopUps::colorPickerScreenController
ColorPickerScreenController * colorPickerScreenController
Definition:
PopUps.h:24
tdme::tools::editor::misc::PopUps::progressBarScreenController
ProgressBarScreenController * progressBarScreenController
Definition:
PopUps.h:23
tdme::tools::editor::misc::PopUps::getFileDialogScreenController
FileDialogScreenController * getFileDialogScreenController()
Definition:
PopUps.h:42
tdme::tools::editor::misc::PopUps::getProgressBarScreenController
ProgressBarScreenController * getProgressBarScreenController()
Definition:
PopUps.h:56
tdme::tools::editor::misc::PopUps::getContextMenuScreenController
ContextMenuScreenController * getContextMenuScreenController()
Definition:
PopUps.h:70
tdme::tools::editor::misc::PopUps::aboutDialogScreenController
AboutDialogScreenController * aboutDialogScreenController
Definition:
PopUps.h:26
tdme::tools::editor::misc::PopUps::PopUps
PopUps()
Public constructor.
Definition:
PopUps.cpp:25
tdme::tools::editor::misc::PopUps::contextMenuScreenController
ContextMenuScreenController * contextMenuScreenController
Definition:
PopUps.h:25
tdme::tools::editor::misc::PopUps::getColorPickerScreenController
ColorPickerScreenController * getColorPickerScreenController()
Definition:
PopUps.h:63
tdme::tools::editor::misc::PopUps::dispose
void dispose()
Dispose.
Definition:
PopUps.cpp:60
tdme::tools::editor::misc::PopUps::getInfoDialogScreenController
InfoDialogScreenController * getInfoDialogScreenController()
Definition:
PopUps.h:49
tdme::tools::editor::misc::PopUps::fileDialogScreenController
FileDialogScreenController * fileDialogScreenController
Definition:
PopUps.h:22
tdme.h
fwd-tdme.h
fwd-tdme.h
Generated by
1.9.3