CoordinateVector.h 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

#ifndef CoordinateVector_H
#define CoordinateVector_H

#include <QObject>
#include <QGeoCoordinate>

class CoordinateVector : public QObject
{
    Q_OBJECT
    
public:
    CoordinateVector(QObject* parent = NULL);
    CoordinateVector(const QGeoCoordinate& coordinate1, const QGeoCoordinate& coordinate2, QObject* parent = NULL);
    
    Q_PROPERTY(QGeoCoordinate coordinate1 MEMBER _coordinate1 NOTIFY coordinate1Changed)
    Q_PROPERTY(QGeoCoordinate coordinate2 MEMBER _coordinate2 NOTIFY coordinate2Changed)
    
    void setCoordinates(const QGeoCoordinate& coordinate1, const QGeoCoordinate& coordinate2);
29 30 31 32

public slots:
    void setCoordinate1(const QGeoCoordinate& coordinate);
    void setCoordinate2(const QGeoCoordinate& coordinate);
33 34 35 36 37 38 39 40 41 42 43
    
signals:
    void coordinate1Changed(QGeoCoordinate coordinate);
    void coordinate2Changed(QGeoCoordinate coordinate);
    
private:
    QGeoCoordinate  _coordinate1;
    QGeoCoordinate  _coordinate2;
};

#endif