QGCMapPolygonTest.h 2.05 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 29 30
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/

#pragma once

#include "UnitTest.h"
#include "MultiSignalSpy.h"
#include "QGCMapPolygon.h"
#include "QmlObjectListModel.h"

class QGCMapPolygonTest : public UnitTest
{
    Q_OBJECT
    
public:
    QGCMapPolygonTest(void);

protected:
    void init(void) final;
    void cleanup(void) final;
    
private slots:
    void _testDirty(void);
    void _testVertexManipulation(void);
DonLakeFlyer's avatar
DonLakeFlyer committed
31
    void _testKMLLoad(void);
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

private:
    enum {
        polygonCountChangedIndex = 0,
        pathChangedIndex,
        polygonDirtyChangedIndex,
        clearedIndex,
        centerChangedIndex,
        maxPolygonSignalIndex
    };

    enum {
        polygonCountChangedMask =   1 << polygonCountChangedIndex,
        pathChangedMask =           1 << pathChangedIndex,
        polygonDirtyChangedMask =   1 << polygonDirtyChangedIndex,
        clearedMask =               1 << clearedIndex,
        centerChangedMask =         1 << centerChangedIndex,
    };

    static const size_t _cPolygonSignals = maxPolygonSignalIndex;
    const char*         _rgPolygonSignals[_cPolygonSignals];

    void countChanged(int count);
    void dirtyChanged(bool dirtyChanged);

    enum {
        modelCountChangedIndex = 0,
        modelDirtyChangedIndex,
        maxModelSignalIndex
    };

    enum {
        modelCountChangedMask = 1 << modelCountChangedIndex,
        modelDirtyChangedMask = 1 << modelDirtyChangedIndex,
    };

    static const size_t _cModelSignals = maxModelSignalIndex;
    const char*         _rgModelSignals[_cModelSignals];

    MultiSignalSpy*         _multiSpyPolygon;
    MultiSignalSpy*         _multiSpyModel;
    QGCMapPolygon*          _mapPolygon;
    QmlObjectListModel*     _pathModel;
    QList<QGeoCoordinate>   _polyPoints;
};