mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
40 lines
920 B
C++
40 lines
920 B
C++
#include <LibGUI/GDialog.h>
|
|
#include <LibGUI/GEventLoop.h>
|
|
|
|
GDialog::GDialog(GObject* parent)
|
|
: GWindow(parent)
|
|
{
|
|
set_modal(true);
|
|
set_should_exit_event_loop_on_close(true);
|
|
}
|
|
|
|
GDialog::~GDialog()
|
|
{
|
|
}
|
|
|
|
int GDialog::exec()
|
|
{
|
|
ASSERT(!m_event_loop);
|
|
m_event_loop = make<GEventLoop>();
|
|
if (parent() && parent()->is_window()) {
|
|
auto& parent_window = *static_cast<GWindow*>(parent());
|
|
auto new_rect = rect();
|
|
new_rect.center_within(parent_window.rect());
|
|
set_rect(new_rect);
|
|
}
|
|
show();
|
|
auto result = m_event_loop->exec();
|
|
m_event_loop = nullptr;
|
|
dbgprintf("%s: event loop returned with result %d\n", class_name(), result);
|
|
return result;
|
|
}
|
|
|
|
void GDialog::done(int result)
|
|
{
|
|
if (!m_event_loop)
|
|
return;
|
|
m_result = result;
|
|
dbgprintf("%s: quit event loop with result %d\n", class_name(), result);
|
|
m_event_loop->quit(result);
|
|
}
|