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:
parent
a22774ee3f
commit
aa03a07e61
16 changed files with 105 additions and 250 deletions
|
@ -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&)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue