MCPcopy Create free account
hub / github.com/MyGUI/mygui / DialogManager

Class DialogManager

UnitTests/UnitTest_GraphView/DialogManager.h:14–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12namespace tools
13{
14 class DialogManager
15 {
16 MYGUI_SINGLETON_DECLARATION(DialogManager);
17
18 public:
19 DialogManager() :
20 mSingletonHolder(this)
21 {
22 }
23 void initialise();
24 void shutdown();
25
26 bool getAnyDialog();
27 void endTopDialog(bool _result = false);
28
29 public:
30 void _addDialog(Dialog* _modal);
31 void _removeDialog(Dialog* _modal);
32
33 private:
34 using VectorDialog = std::vector<Dialog*>;
35 VectorDialog mDialogs;
36 };
37
38} // namespace tools
39

Callers 1

DialogManager.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected