1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +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

@ -7,6 +7,7 @@
#include <AK/WeakPtr.h>
class GWidget;
class GWMEvent;
enum class GStandardCursor {
None = 0,
@ -103,6 +104,9 @@ public:
virtual const char* class_name() const override { return "GWindow"; }
protected:
virtual void wm_event(GWMEvent&);
private:
virtual bool is_window() const override final { return true; }