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

Class Dialog

UnitTests/UnitTest_GraphView/Dialog.h:14–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12namespace tools
13{
14 class Dialog : public wraps::BaseLayout
15 {
16 public:
17 using EventHandle_Result = MyGUI::delegates::Delegate<Dialog*, bool>;
18
19 public:
20 Dialog();
21 Dialog(std::string_view _layout);
22
23 void doModal();
24 void endModal();
25
26 EventHandle_Result eventEndDialog;
27
28 protected:
29 virtual void onDoModal()
30 {
31 }
32 virtual void onEndModal()
33 {
34 }
35
36 private:
37 bool mModal;
38 };
39
40} // namespace tools
41

Callers 1

Dialog.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected