diff --git a/GUI/coregui/Views/TestView.cpp b/GUI/coregui/Views/TestView.cpp index 2a8c3bcee55a4e25d0afd21814f94ad09c148629..ca66a3e4495e48c89fccfb051260fbc61470fc45 100644 --- a/GUI/coregui/Views/TestView.cpp +++ b/GUI/coregui/Views/TestView.cpp @@ -21,6 +21,7 @@ #include "MinimizerSettingsWidget.h" #include "ApplicationModels.h" #include "SampleModel.h" +#include "SpecularDataWidget.h" #include "TestComponentView.h" #include "mainwindow.h" #include <QTreeView> @@ -42,6 +43,7 @@ TestView::TestView(MainWindow *mainWindow) // test_AccordionWidget(); // test_RunFitWidget(); // test_ba3d(); + test_specular_data_widget(); } void TestView::test_ComponentProxyModel() @@ -169,3 +171,13 @@ void TestView::test_ba3d() setLayout(layout); } + +void TestView::test_specular_data_widget() +{ + QVBoxLayout *layout = new QVBoxLayout; + layout->setMargin(0); + layout->setSpacing(0); + auto widget = new SpecularDataWidget; + layout->addWidget(widget); + setLayout(layout); +} diff --git a/GUI/coregui/Views/TestView.h b/GUI/coregui/Views/TestView.h index 41e5a044f50e481e605e9e552e89f13e437fbea2..47e24725f165a34485580f8ba3846846d3e837f1 100644 --- a/GUI/coregui/Views/TestView.h +++ b/GUI/coregui/Views/TestView.h @@ -32,6 +32,7 @@ private: void test_MinimizerSettings(); void test_AccordionWidget(); void test_ba3d(); + void test_specular_data_widget(); MainWindow* m_mainWindow; };