VBPropertiesWindow.h 422 B

12345678910111213141516171819
  1. #pragma once
  2. #include <LibGUI/GWindow.h>
  3. class GTableView;
  4. class GTextBox;
  5. class VBPropertiesWindow final : public GWindow {
  6. public:
  7. VBPropertiesWindow();
  8. virtual ~VBPropertiesWindow() override;
  9. GTableView& table_view() { return *m_table_view; }
  10. const GTableView& table_view() const { return *m_table_view; }
  11. private:
  12. GTextBox* m_text_box { nullptr };
  13. GTableView* m_table_view { nullptr };
  14. };