mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
Move VisualBuilder into a new DevTools directory.
This commit is contained in:
parent
6b40b081b2
commit
3ae9fc5d88
18 changed files with 3 additions and 3 deletions
18
DevTools/VisualBuilder/VBPropertiesWindow.h
Normal file
18
DevTools/VisualBuilder/VBPropertiesWindow.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GWindow.h>
|
||||
|
||||
class GTableView;
|
||||
class GTextBox;
|
||||
|
||||
class VBPropertiesWindow final : public GWindow {
|
||||
public:
|
||||
VBPropertiesWindow();
|
||||
virtual ~VBPropertiesWindow() override;
|
||||
|
||||
GTableView& table_view() { return *m_table_view; }
|
||||
const GTableView& table_view() const { return *m_table_view; }
|
||||
|
||||
private:
|
||||
GTableView* m_table_view { nullptr };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue