blob: eb10517c6f51112249121d2f882499c2c82b1a48 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Window.h>
namespace GUI {
class Dialog : public Window {
C_OBJECT(Dialog)
public:
enum ExecResult {
ExecOK = 0,
ExecCancel = 1,
ExecAborted = 2,
ExecYes = 3,
ExecNo = 4,
};
virtual ~Dialog() override;
int exec();
int result() const { return m_result; }
void done(int result);
virtual void event(Core::Event&) override;
virtual void close() override;
protected:
explicit Dialog(Window* parent_window);
private:
OwnPtr<Core::EventLoop> m_event_loop;
int m_result { ExecAborted };
};
}
template<>
struct AK::Formatter<GUI::Dialog> : Formatter<Core::Object> {
};
|