1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:07:36 +00:00

Taskbar: More bringup work. We now see a basic window list.

This commit is contained in:
Andreas Kling 2019-04-04 01:44:35 +02:00
parent ea801a99dc
commit 96104b5524
20 changed files with 339 additions and 12 deletions

View file

@ -1,12 +1,13 @@
#include <LibGUI/GWindow.h>
#include <LibGUI/GWidget.h>
#include "WindowList.h"
class TaskbarWindow final : public GWindow {
public:
TaskbarWindow();
virtual ~TaskbarWindow() override;
int taskbar_height() const { return 20; }
int taskbar_height() const { return 28; }
virtual const char* class_name() const override { return "TaskbarWindow"; }
@ -14,4 +15,6 @@ private:
void on_screen_rect_change(const Rect&);
virtual void wm_event(GWMEvent&) override;
WindowList m_window_list;
};