14 lines
375 B
C++
14 lines
375 B
C++
#include "waypointparamitem.h"
|
|
#include <QIcon>
|
|
|
|
WayPointParamItem::WayPointParamItem(QGraphicsItem *parent, Qt::WindowFlags wFlags) :
|
|
QGraphicsProxyWidget(parent, wFlags)
|
|
{
|
|
dialog = new WayPointParamDialog();
|
|
setWidget(dialog);
|
|
// setWindowFlags(dialog->windowFlags() );
|
|
// this->setWindowTitle(u8"参数:");
|
|
// dialog->setWindowIcon(QIcon() );
|
|
|
|
}
|