blob: eb1b17530b1674b1f43d1068df3c6cf9ac93b576 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include <LibGUI/GWindow.h>
class GTableView;
class GTextBox;
class VBPropertiesWindow final : public GWindow {
C_OBJECT(VBPropertiesWindow)
public:
VBPropertiesWindow();
virtual ~VBPropertiesWindow() override;
GTableView& table_view() { return *m_table_view; }
const GTableView& table_view() const { return *m_table_view; }
private:
ObjectPtr<GTableView> m_table_view;
};
|