mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +00:00
VisualBuilder: Move properties window to its own class.
This commit is contained in:
parent
21d4b1c2fc
commit
ec841f3a23
4 changed files with 43 additions and 22 deletions
17
Applications/VisualBuilder/VBPropertiesWindow.h
Normal file
17
Applications/VisualBuilder/VBPropertiesWindow.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GWindow.h>
|
||||
|
||||
class GTableView;
|
||||
|
||||
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