ladybird/LibGUI/GDialog.cpp
Andreas Kling f88e550998 LibGUI: More work on GInputBox.
- If the GInputBox has a parent and the parent is a GWindow, center the
  input box window within the parent window. This looks quite nice.

- Stop processing events in a nested event loop immediately after it's
  been asked to quit.

- Fix GWidget::parent_widget() behavior for non-widget parents.
2019-03-19 02:22:49 +01:00

39 lines
871 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("event loop returned with result %d\n", result);
return result;
}
void GDialog::done(int result)
{
ASSERT(m_event_loop);
m_result = result;
dbgprintf("quit event loop with result %d\n", result);
m_event_loop->quit(result);
}