mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:47:44 +00:00
LibGUI: Start working on a GTreeView class.
This commit is contained in:
parent
add38b3981
commit
12ec55ee74
3 changed files with 38 additions and 0 deletions
16
LibGUI/GTreeView.h
Normal file
16
LibGUI/GTreeView.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GAbstractView.h>
|
||||
|
||||
class GTreeView : public GAbstractView {
|
||||
public:
|
||||
explicit GTreeView(GWidget*);
|
||||
virtual ~GTreeView() override;
|
||||
|
||||
virtual const char* class_name() const override { return "GTreeView"; }
|
||||
|
||||
protected:
|
||||
virtual void paint_event(GPaintEvent&) override;
|
||||
|
||||
private:
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue