mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
20 lines
422 B
C++
20 lines
422 B
C++
#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:
|
|
GTextBox* m_text_box { nullptr };
|
|
GTableView* m_table_view { nullptr };
|
|
};
|