FlightMapSettings.cc 4.25 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9

10 11 12 13 14 15

#include "FlightMapSettings.h"

#include <QSettings>
#include <QtQml>

dogmaphobic's avatar
dogmaphobic committed
16 17 18 19
const char* FlightMapSettings::_defaultMapProvider      = "Bing";                 // Bing is default since it support full street/satellite/hybrid set
const char* FlightMapSettings::_settingsGroup           = "FlightMapSettings";
const char* FlightMapSettings::_mapProviderKey          = "MapProvider";
const char* FlightMapSettings::_mapTypeKey              = "MapType";
20

21 22
FlightMapSettings::FlightMapSettings(QGCApplication* app)
    : QGCTool(app)
23 24 25 26
    , _mapProvider(_defaultMapProvider)
{
}

27
void FlightMapSettings::setToolbox(QGCToolbox *toolbox)
28
{
29 30
    QGCTool::setToolbox(toolbox);
    qmlRegisterUncreatableType<FlightMapSettings> ("QGroundControl", 1, 0, "FlightMapSetting", "Reference only");
31 32 33 34
    _supportedMapProviders << "Bing";
#ifndef QGC_NO_GOOGLE_MAPS
    _supportedMapProviders << "Google";
#endif
35
    _supportedMapProviders << "Statkart";
36
    _loadSettings();
37 38 39 40 41 42 43 44 45 46 47
}

void FlightMapSettings::_storeSettings(void)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.setValue(_mapProviderKey, _supportedMapProviders.contains(_mapProvider) ? _mapProvider : _defaultMapProvider);
}

void FlightMapSettings::_loadSettings(void)
{
48 49 50
#ifdef QGC_NO_GOOGLE_MAPS
    _mapProvider = _defaultMapProvider;
#else
51 52 53 54 55 56
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    _mapProvider = settings.value(_mapProviderKey, _defaultMapProvider).toString();
    if (!_supportedMapProviders.contains(_mapProvider)) {
        _mapProvider = _defaultMapProvider;
    }
57
#endif
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
    _setMapTypesForCurrentProvider();
}

QString FlightMapSettings::mapProvider(void)
{
    return _mapProvider;
}

void FlightMapSettings::setMapProvider(const QString& mapProvider)
{
    if (_supportedMapProviders.contains(mapProvider)) {
        _mapProvider = mapProvider;
        _storeSettings();
        _setMapTypesForCurrentProvider();
        emit mapProviderChanged(mapProvider);
    }
}

void FlightMapSettings::_setMapTypesForCurrentProvider(void)
{
    _mapTypes.clear();
79 80 81
#ifdef QGC_NO_GOOGLE_MAPS
    _mapTypes << "Street Map" << "Satellite Map" << "Hybrid Map";
#else
82 83 84 85
    if (_mapProvider == "Bing") {
        _mapTypes << "Street Map" << "Satellite Map" << "Hybrid Map";
    } else if (_mapProvider == "Google") {
        _mapTypes << "Street Map" << "Satellite Map" << "Terrain Map";
86 87
    } else if (_mapProvider == "Statkart") {
        _mapTypes << "Topo2";
88
    }
89
#endif
90 91 92
    emit mapTypesChanged(_mapTypes);
}

93
QString FlightMapSettings::mapType(void)
94 95 96 97
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(_mapProvider);
98
    return settings.value(_mapTypeKey, "Satellite Map").toString();
99 100
}

101
void FlightMapSettings::setMapType(const QString& mapType)
102 103 104 105 106
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(_mapProvider);
    settings.setValue(_mapTypeKey, mapType);
107
    emit mapTypeChanged(mapType);
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
}

void FlightMapSettings::saveMapSetting (const QString &mapName, const QString& key, const QString& value)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.setValue(key, value);
}

QString FlightMapSettings::loadMapSetting (const QString &mapName, const QString& key, const QString& defaultValue)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    return settings.value(key, defaultValue).toString();
}
Don Gagne's avatar
Don Gagne committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140

void FlightMapSettings::saveBoolMapSetting (const QString &mapName, const QString& key, bool value)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    settings.setValue(key, value);
}

bool FlightMapSettings::loadBoolMapSetting (const QString &mapName, const QString& key, bool defaultValue)
{
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    settings.beginGroup(mapName);
    return settings.value(key, defaultValue).toBool();
}