20 lines
391 B
C++
20 lines
391 B
C++
#ifndef WAYPOINTPARAMITEM_H
|
|
#define WAYPOINTPARAMITEM_H
|
|
|
|
#include <QGraphicsProxyWidget>
|
|
#include <QObject>
|
|
#include "waypointparamdialog.h"
|
|
|
|
class WayPointParamItem : public QGraphicsProxyWidget
|
|
{
|
|
public:
|
|
WayPointParamItem(QGraphicsItem *parent = Q_NULLPTR, Qt::WindowFlags wFlags = Qt::WindowFlags() );
|
|
|
|
|
|
|
|
private:
|
|
WayPointParamDialog *dialog;
|
|
};
|
|
|
|
#endif // WAYPOINTPARAMITEM_H
|