ladybird/Libraries/LibGUI/GDialog.cpp
Andreas Kling 34d0e96aec LibCore+LibGUI: Remove GEventLoop and use CEventLoop everywhere
GEventLoop was just a dummy subclass of CEventLoop anyway. The only
thing it actually did was make sure a GWindowServerConnectionw was
instantiated. We now take care of that in GApplication instead.

CEventLoop is now non-virtual and a little less confusing. :^)
2019-09-22 20:50:39 +02:00

48 lines
1.0 KiB
C++

#include <LibGUI/GDesktop.h>
#include <LibGUI/GDialog.h>
GDialog::GDialog(CObject* parent)
: GWindow(parent)
{
set_modal(true);
}
GDialog::~GDialog()
{
}
int GDialog::exec()
{
ASSERT(!m_event_loop);
m_event_loop = make<CEventLoop>();
auto new_rect = rect();
if (parent() && parent()->is_window()) {
auto& parent_window = *static_cast<GWindow*>(parent());
new_rect.center_within(parent_window.rect());
} else {
new_rect.center_within(GDesktop::the().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);
remove_from_parent();
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);
}
void GDialog::close()
{
GWindow::close();
m_event_loop->quit(ExecCancel);
}