mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 09:18:05 +03:00
24 lines
442 B
C++
24 lines
442 B
C++
#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(CObject* parent);
|
|
|
|
private:
|
|
OwnPtr<GEventLoop> m_event_loop;
|
|
int m_result { ExecAborted };
|
|
};
|