blob: 7244db5aa094bee5b3a44fb92f3f75b39cb055ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
#include <LibGUI/GEventLoop.h>
#include <LibGUI/GWindow.h>
class GDialog : public GWindow {
public:
enum ExecResult
{
ExecOK = 0,
ExecCancel = 1,
ExecAborted = 2
};
virtual ~GDialog() override;
int exec();
int result() const { return m_result; }
void done(int result);
virtual const char* class_name() const override { return "GDialog"; }
protected:
explicit GDialog(CObject* parent);
private:
OwnPtr<GEventLoop> m_event_loop;
int m_result { ExecAborted };
};
|