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:
parent
ea801a99dc
commit
96104b5524
20 changed files with 339 additions and 12 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue