1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:37:35 +00:00

PaintBrush: Start fleshing out a toolbox widget.

This commit is contained in:
Andreas Kling 2019-06-12 05:58:31 +02:00
parent d7756fc09f
commit c4d24bb4e9
4 changed files with 64 additions and 7 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#include <LibGUI/GFrame.h>
class ToolboxWidget final : public GFrame {
public:
explicit ToolboxWidget(GWidget* parent);
virtual ~ToolboxWidget() override;
virtual const char* class_name() const override { return "ToolboxWidget"; }
private:
};