QGCCorePlugin.h 4.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/****************************************************************************
 *
 *   (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 "QGCToolbox.h"
13
#include "QGCPalette.h"
14 15 16 17 18 19 20 21 22 23 24 25 26 27

#include <QObject>
#include <QVariantList>

/// @file
///     @brief Core Plugin Interface for QGroundControl
///     @author Gus Grubba <mavlink@grubba.com>

// Work In Progress

class QGCApplication;
class QGCOptions;
class QGCSettings;
class QGCCorePlugin_p;
28
class FactMetaData;
29
class QGeoPositionInfoSource;
30
class QQmlApplicationEngine;
31 32 33 34 35

class QGCCorePlugin : public QGCTool
{
    Q_OBJECT
public:
36
    QGCCorePlugin(QGCApplication* app, QGCToolbox* toolbox);
37 38
    ~QGCCorePlugin();

39
    Q_PROPERTY(QVariantList settingsPages       READ settingsPages      NOTIFY settingsPagesChanged)
40 41
    Q_PROPERTY(int          defaultSettings     READ defaultSettings    CONSTANT)
    Q_PROPERTY(QGCOptions*  options             READ options            CONSTANT)
42

DonLakeFlyer's avatar
DonLakeFlyer committed
43 44
    Q_PROPERTY(bool         showTouchAreas      READ showTouchAreas     WRITE setShowTouchAreas    NOTIFY showTouchAreasChanged)
    Q_PROPERTY(bool         showAdvancedUI      READ showAdvancedUI     WRITE setShowAdvancedUI    NOTIFY showAdvancedUIChanged)
Donald Gagne's avatar
Donald Gagne committed
45
    Q_PROPERTY(QString                  showAdvancedUIMessage           READ showAdvancedUIMessage          CONSTANT)
46 47

    Q_PROPERTY(QString      brandImageIndoor    READ brandImageIndoor   CONSTANT)
Donald Gagne's avatar
Donald Gagne committed
48
    Q_PROPERTY(QString      brandImageOutdoor   READ brandImageOutdoor  CONSTANT)
49

50 51
    /// The list of settings under the Settings Menu
    /// @return A list of QGCSettings
52
    virtual QVariantList& settingsPages(void);
53

54 55
    /// The default settings panel to show
    /// @return The settings index
56
    virtual int defaultSettings(void);
57 58 59

    /// Global options
    /// @return An instance of QGCOptions
60
    virtual QGCOptions* options(void);
61

Don Gagne's avatar
Don Gagne committed
62
    /// Allows the core plugin to override the visibility for a settings group
63 64
    ///     @param name - Setting group name
    /// @return true: Show settings ui, false: Hide settings ui
65
    virtual bool overrideSettingsGroupVisibility(QString name);
66

67 68 69
    /// Allows the core plugin to override the setting meta data before the setting fact is created.
    ///     @param metaData - MetaData for setting fact
    /// @return true: Setting should be visible in ui, false: Setting should not be shown in ui
70
    virtual bool adjustSettingMetaData(FactMetaData& metaData);
71

72 73 74 75 76 77
    /// Return the resource file which contains the brand image for for Indoor theme.
    virtual QString brandImageIndoor(void) const { return QString(); }

    /// Return the resource file which contains the brand image for for Outdoor theme.
    virtual QString brandImageOutdoor(void) const { return QString(); }

Donald Gagne's avatar
Donald Gagne committed
78
    /// @return The message to show to the user when they a re prompted to confirm turning on advanced ui.
79
    virtual QString showAdvancedUIMessage(void) const;
Donald Gagne's avatar
Donald Gagne committed
80

Patrick José Pereira's avatar
Patrick José Pereira committed
81
    /// @return An instance of an alternate position source (or NULL if not available)
82 83 84 85
    virtual QGeoPositionInfoSource* createPositionSource(QObject* parent) { Q_UNUSED(parent); return NULL; }

    /// Allows a plugin to override the specified color name from the palette
    virtual void paletteOverride(QString colorName, QGCPalette::PaletteColorInfo_t& colorInfo);
86

87
    /// Allows the plugin to override the default settings for the Values Widget large and small values
88 89
    virtual void valuesWidgetDefaultSettings(QStringList& largeValues, QStringList& smallValues);

90 91 92
    /// Allows the plugin to override the creation of the root (native) window.
    virtual QQmlApplicationEngine* createRootWindow(QObject* parent);

DonLakeFlyer's avatar
DonLakeFlyer committed
93 94 95 96
    bool showTouchAreas(void) const { return _showTouchAreas; }
    bool showAdvancedUI(void) const { return _showAdvancedUI; }
    void setShowTouchAreas(bool show);
    void setShowAdvancedUI(bool show);
97

98
    // Override from QGCTool
99
    void                            setToolbox              (QGCToolbox* toolbox);
100 101 102 103 104 105 106 107 108 109

signals:
    void settingsPagesChanged   (void);
    void showTouchAreasChanged  (bool showTouchAreas);
    void showAdvancedUIChanged  (bool showAdvancedUI);

protected:
    bool                _showTouchAreas;
    bool                _showAdvancedUI;

110
private:
111
    QGCCorePlugin_p*    _p;
112
};