RallyPointController.h 3.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/****************************************************************************
 *
 *   (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 RallyPointController_H
#define RallyPointController_H

#include "PlanElementController.h"
#include "RallyPointManager.h"
#include "Vehicle.h"
#include "MultiVehicleManager.h"
#include "QGCLoggingCategory.h"
#include "QmlObjectListModel.h"

Q_DECLARE_LOGGING_CATEGORY(RallyPointControllerLog)

class GeoFenceManager;

class RallyPointController : public PlanElementController
{
    Q_OBJECT
    
public:
29
    RallyPointController(PlanMasterController* masterController, QObject* parent = NULL);
30 31 32 33 34 35 36 37 38 39
    ~RallyPointController();
    
    Q_PROPERTY(bool                 rallyPointsSupported    READ rallyPointsSupported                               NOTIFY rallyPointsSupportedChanged)
    Q_PROPERTY(QmlObjectListModel*  points                  READ points                                             CONSTANT)
    Q_PROPERTY(QString              editorQml               READ editorQml                                          CONSTANT)
    Q_PROPERTY(QObject*             currentRallyPoint       READ currentRallyPoint      WRITE setCurrentRallyPoint  NOTIFY currentRallyPointChanged)

    Q_INVOKABLE void addPoint(QGeoCoordinate point);
    Q_INVOKABLE void removePoint(QObject* rallyPoint);

DonLakeFlyer's avatar
DonLakeFlyer committed
40 41 42 43 44 45 46 47 48 49 50 51
    void save                       (QJsonObject& json) final;
    bool load                       (const QJsonObject& json, QString& errorString) final;
    void loadFromVehicle            (void) final;
    void sendToVehicle              (void) final;
    void removeAll                  (void) final;
    void removeAllFromVehicle       (void) final;
    bool syncInProgress             (void) const final;
    bool dirty                      (void) const final { return _dirty; }
    void setDirty                   (bool dirty) final;
    bool containsItems              (void) const final;
    void managerVehicleChanged      (Vehicle* managerVehicle) final;
    bool showPlanFromManagerVehicle (void) final;
52 53 54 55 56 57 58 59 60 61 62

    bool                rallyPointsSupported    (void) const;
    QmlObjectListModel* points                  (void) { return &_points; }
    QString             editorQml               (void) const;
    QObject*            currentRallyPoint       (void) const { return _currentRallyPoint; }

    void setCurrentRallyPoint(QObject* rallyPoint);

signals:
    void rallyPointsSupportedChanged(bool rallyPointsSupported);
    void currentRallyPointChanged(QObject* rallyPoint);
Don Gagne's avatar
Don Gagne committed
63
    void loadComplete(void);
64 65

private slots:
DonLakeFlyer's avatar
DonLakeFlyer committed
66
    void _managerLoadComplete(const QList<QGeoCoordinate> rgPoints);
67 68
    void _managerSendComplete(bool error);
    void _managerRemoveAllComplete(bool error);
69
    void _setFirstPointCurrent(void);
70
    void _updateContainsItems(void);
71 72

private:
73
    RallyPointManager*  _rallyPointManager;
74 75 76
    bool                _dirty;
    QmlObjectListModel  _points;
    QObject*            _currentRallyPoint;
DonLakeFlyer's avatar
DonLakeFlyer committed
77
    bool                _itemsRequested;
78 79 80 81 82 83

    static const char* _jsonFileTypeValue;
    static const char* _jsonPointsKey;
};

#endif