1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

Taskbar+LibGUI: More work on bringup.

This commit is contained in:
Andreas Kling 2019-04-03 21:03:12 +02:00
parent a22774ee3f
commit aa03a07e61
16 changed files with 105 additions and 250 deletions

View file

@ -258,6 +258,9 @@ void GWindow::event(GEvent& event)
return;
}
if (event.type() == GEvent::WM_WindowAdded || event.type() == GEvent::WM_WindowRemoved || event.type() == GEvent::WM_WindowStateChanged)
return wm_event(static_cast<GWMEvent&>(event));
GObject::event(event);
}
@ -422,3 +425,7 @@ void GWindow::set_modal(bool modal)
ASSERT(!m_window_id);
m_modal = modal;
}
void GWindow::wm_event(GWMEvent&)
{
}