|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
|
|
|
|
*
|
|
|
|
* QGroundControl is licensed according to the terms in the file
|
|
|
|
* COPYING.md in the root of the source code directory.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QGCMapPolygon_H
|
|
|
|
#define QGCMapPolygon_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QGeoCoordinate>
|
|
|
|
#include <QVariantList>
|
|
|
|
|
|
|
|
class QGCMapPolygon : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QGCMapPolygon(QObject* parent = NULL);
|
|
|
|
|
|
|
|
const QGCMapPolygon& operator=(const QGCMapPolygon& other);
|
|
|
|
|
|
|
|
Q_PROPERTY(QVariantList path READ path WRITE setPath NOTIFY pathChanged)
|
|
|
|
Q_PROPERTY(bool dirty READ dirty WRITE setDirty NOTIFY dirtyChanged)
|
|
|
|
|
|
|
|
Q_INVOKABLE void clear(void);
|
|
|
|
Q_INVOKABLE void adjustCoordinate(int vertexIndex, const QGeoCoordinate coordinate);
|
|
|
|
Q_INVOKABLE QGeoCoordinate center(void) const;
|
|
|
|
Q_INVOKABLE int count(void) const { return _polygonPath.count(); }
|
|
|
|
|
|
|
|
QVariantList path(void) const { return _polygonPath; }
|
|
|
|
void setPath(const QList<QGeoCoordinate>& path);
|
|
|
|
void setPath(const QVariantList& path);
|
|
|
|
|
|
|
|
QList<QGeoCoordinate> coordinateList(void) const;
|
|
|
|
|
|
|
|
QGeoCoordinate operator[](int index) const { return _polygonPath[index].value<QGeoCoordinate>(); }
|
|
|
|
|
|
|
|
bool dirty(void) const { return _dirty; }
|
|
|
|
void setDirty(bool dirty);
|
|
|
|
|
|
|
|
/// Saves the polygon to the json object.
|
|
|
|
/// @param json Json object to save to
|
|
|
|
void saveToJson(QJsonObject& json);
|
|
|
|
|
|
|
|
/// Load a polygon from json
|
|
|
|
/// @param json Json object to load from
|
|
|
|
/// @param required true: no polygon in object will generate error
|
|
|
|
/// @param errorString Error string if return is false
|
|
|
|
/// @return true: success, false: failure (errorString set)
|
|
|
|
bool loadFromJson(const QJsonObject& json, bool required, QString& errorString);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void pathChanged(void);
|
|
|
|
void dirtyChanged(bool dirty);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QVariantList _polygonPath;
|
|
|
|
bool _dirty;
|
|
|
|
|
|
|
|
static const char* _jsonPolygonKey;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|