#include "PropertyWidget.h" #include #include "MainWindow.h" #include #include #include #include #include #include #include "GUIWidget/PropertyEmptyWidget.h" namespace GUI { PropertyWidget::PropertyWidget(MainWindow *mainWindow) : PanelWidgetBase(mainWindow) { this->setTitle(tr("Property Area")); init(); } void PropertyWidget::init() { //auto scrollArea = new QScrollArea(this); //scrollArea->setWidget(); setWidget(new PropertyEmptyWidget(m_MainWindow, tr("Welcome to FlowApp."))); } }