FlightMapSettings.cc 4.14 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
    _loadSettings();
36 37 38 39 40 41 42 43 44 45 46
}

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

void FlightMapSettings::_loadSettings(void)
{
47 48 49
#ifdef QGC_NO_GOOGLE_MAPS
    _mapProvider = _defaultMapProvider;
#else
50 51 52 53 54 55
    QSettings settings;
    settings.beginGroup(_settingsGroup);
    _mapProvider = settings.value(_mapProviderKey, _defaultMapProvider).toString();
    if (!_supportedMapProviders.contains(_mapProvider)) {
        _mapProvider = _defaultMapProvider;
    }
56
#endif
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
    _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();
78 79 80
#ifdef QGC_NO_GOOGLE_MAPS
    _mapTypes << "Street Map" << "Satellite Map" << "Hybrid Map";
#else
81 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
#endif
87 88 89
    emit mapTypesChanged(_mapTypes);
}

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

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

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
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

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();
}