blob: e6cefbce989bf9f93a25edaec522705bed789eef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <LibGUI/GWindow.h>
#include <LibGUI/GEventLoop.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);
protected:
explicit GDialog(GObject* parent);
private:
OwnPtr<GEventLoop> m_event_loop;
int m_result { ExecAborted };
};
|