1
Fork 0
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:
Andreas Kling 2019-04-11 22:03:55 +02:00
parent 21d4b1c2fc
commit ec841f3a23
4 changed files with 43 additions and 22 deletions

View 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 };
};