You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#include "PropertyWidget.h"
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
#include "MainWindow.h"
|
|
|
|
|
#include <QGroupBox>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
#include <QGridLayout>
|
|
|
|
|
#include <QLabel>
|
|
|
|
|
#include <QScrollArea>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#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.")));
|
|
|
|
|
}
|
|
|
|
|
}
|