VBPropertiesWindow.cpp 499 B

123456789101112131415161718192021
  1. #include "VBPropertiesWindow.h"
  2. #include <LibGUI/GWidget.h>
  3. #include <LibGUI/GBoxLayout.h>
  4. #include <LibGUI/GTableView.h>
  5. VBPropertiesWindow::VBPropertiesWindow()
  6. {
  7. set_title("Properties");
  8. set_rect(780, 200, 200, 280);
  9. auto* widget = new GWidget;
  10. widget->set_fill_with_background_color(true);
  11. widget->set_layout(make<GBoxLayout>(Orientation::Vertical));
  12. set_main_widget(widget);
  13. m_table_view = new GTableView(widget);
  14. }
  15. VBPropertiesWindow::~VBPropertiesWindow()
  16. {
  17. }