1
Fork 0
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:
Andreas Kling 2019-05-08 13:53:34 +02:00
parent 6b40b081b2
commit 3ae9fc5d88
18 changed files with 3 additions and 3 deletions

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