2019-04-11 22:03:55 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibGUI/GWindow.h>
|
|
|
|
|
|
|
|
class GTableView;
|
2019-04-11 23:57:58 +02:00
|
|
|
class GTextBox;
|
2019-04-11 22:03:55 +02:00
|
|
|
|
|
|
|
class VBPropertiesWindow final : public GWindow {
|
2019-09-21 20:04:00 +02:00
|
|
|
C_OBJECT(VBPropertiesWindow)
|
2019-04-11 22:03:55 +02:00
|
|
|
public:
|
|
|
|
VBPropertiesWindow();
|
|
|
|
virtual ~VBPropertiesWindow() override;
|
|
|
|
|
|
|
|
GTableView& table_view() { return *m_table_view; }
|
|
|
|
const GTableView& table_view() const { return *m_table_view; }
|
|
|
|
|
|
|
|
private:
|
2019-09-22 00:31:54 +02:00
|
|
|
RefPtr<GTableView> m_table_view;
|
2019-04-11 22:03:55 +02:00
|
|
|
};
|