QGCCorePlugin.h 11.1 KB
Newer Older
1 2
/****************************************************************************
 *
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8 9 10 11 12
 *
 * 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
#include "QGCMAVLink.h"
15
#include "QmlObjectListModel.h"
16 17 18 19 20

#include <QObject>
#include <QVariantList>

/// @file
21 22
/// @brief Core Plugin Interface for QGroundControl
/// @author Gus Grubba <gus@auterion.com>
23 24 25 26 27

class QGCApplication;
class QGCOptions;
class QGCSettings;
class QGCCorePlugin_p;
28
class FactMetaData;
29
class QGeoPositionInfoSource;
30
class QQmlApplicationEngine;
31 32
class Vehicle;
class LinkInterface;
33
class QmlObjectListModel;
34
class VideoReceiver;
35
class VideoSink;
36
class PlanMasterController;
37 38 39 40
class QGCCameraManager;
class QGCCameraControl;
class QQuickItem;
class InstrumentValueAreaController;
41

42 43 44 45
class QGCCorePlugin : public QGCTool
{
    Q_OBJECT
public:
46
    QGCCorePlugin(QGCApplication* app, QGCToolbox* toolbox);
47 48
    ~QGCCorePlugin();

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    Q_PROPERTY(QVariantList         settingsPages                   READ settingsPages                                  NOTIFY settingsPagesChanged)
    Q_PROPERTY(QVariantList         analyzePages                    READ analyzePages                                   NOTIFY analyzePagesChanged)
    Q_PROPERTY(int                  defaultSettings                 READ defaultSettings                                CONSTANT)
    Q_PROPERTY(QGCOptions*          options                         READ options                                        CONSTANT)
    Q_PROPERTY(bool                 showTouchAreas                  READ showTouchAreas         WRITE setShowTouchAreas NOTIFY showTouchAreasChanged)
    Q_PROPERTY(bool                 showAdvancedUI                  READ showAdvancedUI         WRITE setShowAdvancedUI NOTIFY showAdvancedUIChanged)
    Q_PROPERTY(QString              showAdvancedUIMessage           READ showAdvancedUIMessage                          CONSTANT)
    Q_PROPERTY(QString              brandImageIndoor                READ brandImageIndoor                               CONSTANT)
    Q_PROPERTY(QString              brandImageOutdoor               READ brandImageOutdoor                              CONSTANT)
    Q_PROPERTY(QmlObjectListModel*  customMapItems                  READ customMapItems                                 CONSTANT)
    Q_PROPERTY(QVariantList         toolBarIndicators               READ toolBarIndicators                              NOTIFY toolBarIndicatorsChanged)
    Q_PROPERTY(int                  unitsFirstRunPromptId           MEMBER unitsFirstRunPromptId                        CONSTANT)
    Q_PROPERTY(int                  offlineVehicleFirstRunPromptId  MEMBER offlineVehicleFirstRunPromptId               CONSTANT)

    Q_INVOKABLE bool guidedActionsControllerLogging() const;
64

65 66
    /// The list of settings under the Settings Menu
    /// @return A list of QGCSettings
67
    virtual QVariantList& settingsPages();
68

69
    /// The list of pages/buttons under the Analyze Menu
70
    /// @return A list of QmlPageInfo
71
    virtual QVariantList& analyzePages();
72

73 74
    /// The default settings panel to show
    /// @return The settings index
75
    virtual int defaultSettings();
76 77 78

    /// Global options
    /// @return An instance of QGCOptions
79
    virtual QGCOptions* options();
80

Don Gagne's avatar
Don Gagne committed
81
    /// Allows the core plugin to override the visibility for a settings group
82
    ///     @param name - SettingsGroup name
83
    /// @return true: Show settings ui, false: Hide settings ui
84
    virtual bool overrideSettingsGroupVisibility(QString name);
85

86
    /// Allows the core plugin to override the setting meta data before the setting fact is created.
87
    ///     @param settingsGroup - QSettings group which contains this item
88 89
    ///     @param metaData - MetaData for setting fact
    /// @return true: Setting should be visible in ui, false: Setting should not be shown in ui
90
    virtual bool adjustSettingMetaData(const QString& settingsGroup, FactMetaData& metaData);
91

92
    /// Return the resource file which contains the brand image for for Indoor theme.
93
    virtual QString brandImageIndoor() const { return QString(); }
94 95

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

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

Patrick José Pereira's avatar
Patrick José Pereira committed
101
    /// @return An instance of an alternate position source (or NULL if not available)
102
    virtual QGeoPositionInfoSource* createPositionSource(QObject* /*parent*/) { return nullptr; }
103 104 105

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

107
    virtual void factValueGridCreateDefaultSettings(const QString& defaultSettingsGroup);
108

109 110 111
    /// Allows the plugin to override or get access to the QmlApplicationEngine to do things like add import
    /// path or stuff things into the context prior to window creation.
    virtual QQmlApplicationEngine* createQmlApplicationEngine(QObject* parent);
112

113 114
    /// Allows the plugin to override the creation of the root (native) window.
    virtual void createRootWindow(QQmlApplicationEngine* qmlEngine);
115

116 117
    /// Allows the plugin to override the creation of VideoManager.
    virtual VideoManager* createVideoManager(QGCApplication* app, QGCToolbox* toolbox);
118 119
    /// Allows the plugin to override the creation of VideoReceiver.
    virtual VideoReceiver* createVideoReceiver(QObject* parent);
120 121 122 123
    /// Allows the plugin to override the creation of VideoSink.
    virtual void* createVideoSink(QObject* parent, QQuickItem* widget);
    /// Allows the plugin to override the release of VideoSink.
    virtual void releaseVideoSink(void* sink);
124

125 126 127 128
    /// Allows the plugin to see all mavlink traffic to a vehicle
    /// @return true: Allow vehicle to continue processing, false: Vehicle should not process message
    virtual bool mavlinkMessage(Vehicle* vehicle, LinkInterface* link, mavlink_message_t message);

129 130
    /// Allows custom builds to add custom items to the FlightMap. Objects put into QmlObjectListModel should derive from QmlComponentInfo and set the url property.
    virtual QmlObjectListModel* customMapItems();
131

132 133 134 135
    /// Allows custom builds to add custom items to the plan file before the document is created.
    virtual void    preSaveToJson           (PlanMasterController* /*pController*/, QJsonObject& /*json*/) {}
    /// Allows custom builds to add custom items to the plan file after the document is created.
    virtual void    postSaveToJson          (PlanMasterController* /*pController*/, QJsonObject& /*json*/) {}
136

137 138 139 140
    /// Allows custom builds to add custom items to the mission section of the plan file before the item is created.
    virtual void    preSaveToMissionJson    (PlanMasterController* /*pController*/, QJsonObject& /*missionJson*/) {}
    /// Allows custom builds to add custom items to the mission section of the plan file after the item is created.
    virtual void    postSaveToMissionJson   (PlanMasterController* /*pController*/, QJsonObject& /*missionJson*/) {}
141

142 143 144 145
    /// Allows custom builds to load custom items from the plan file before the document is parsed.
    virtual void    preLoadFromJson     (PlanMasterController* /*pController*/, QJsonObject& /*json*/) {}
    /// Allows custom builds to load custom items from the plan file after the document is parsed.
    virtual void    postLoadFromJson    (PlanMasterController* /*pController*/, QJsonObject& /*json*/) {}
146

Don Gagne's avatar
Don Gagne committed
147
    /// Returns the url to download the stable version check file. Return QString() to indicate no version check should be performed.
148 149
    /// Default QGC mainline implemenentation returns QGC Stable file location. Default QGC custom build code returns QString().
    /// Custom builds can override to turn on and provide their own location.
Don Gagne's avatar
Don Gagne committed
150 151 152
    /// The contents of this file should be a single line in the form:
    ///     v3.4.4
    /// This indicates the latest stable version number.
153
    virtual QString stableVersionCheckFileUrl() const;
Don Gagne's avatar
Don Gagne committed
154 155 156

    /// Returns the user visible url to show user where to download new stable builds from.
    /// Custom builds must override to provide their own location.
157
    virtual QString stableDownloadLocation() const { return QString("qgroundcontrol.com"); }
Don Gagne's avatar
Don Gagne committed
158

159
    /// Returns the complex mission items to display in the Plan UI
160
    /// @param complexMissionItemNames Default set of complex items
161
    /// @return Complex items to be made available to user
162 163 164 165 166 167 168 169 170 171 172
    virtual QStringList complexMissionItemNames(Vehicle* /*vehicle*/, const QStringList& complexMissionItemNames) { return complexMissionItemNames; }

    /// Returns the standard list of first run prompt ids for possible display. Actual display is based on the
    /// current AppSettings::firstRunPromptIds value. The order of this list also determines the order the prompts
    /// will be displayed in.
    virtual QList<int> firstRunPromptStdIds(void);

    /// Returns the custom build list of first run prompt ids for possible display. Actual display is based on the
    /// current AppSettings::firstRunPromptIds value. The order of this list also determines the order the prompts
    /// will be displayed in.
    virtual QList<int> firstRunPromptCustomIds(void);
173

174 175 176 177 178 179 180 181 182 183 184 185 186
    /// Returns the resource which contains the specified first run prompt for display
    Q_INVOKABLE virtual QString firstRunPromptResource(int id);

    /// Returns the list of toolbar indicators which are not related to a vehicle
    ///     signals toolbarIndicatorsChanged
    /// @return A list of QUrl with the indicators
    virtual const QVariantList& toolBarIndicators(void);

    /// Returns the list of first run prompt ids which need to be displayed according to current settings
    Q_INVOKABLE QVariantList firstRunPromptsToShow(void);

    bool showTouchAreas() const { return _showTouchAreas; }
    bool showAdvancedUI() const { return _showAdvancedUI; }
DonLakeFlyer's avatar
DonLakeFlyer committed
187 188
    void setShowTouchAreas(bool show);
    void setShowAdvancedUI(bool show);
189

190
    // Override from QGCTool
191
    void                            setToolbox              (QGCToolbox* toolbox);
192

193 194 195 196 197 198 199
    // Standard first run prompt ids
    static const int unitsFirstRunPromptId =            1;
    static const int offlineVehicleFirstRunPromptId =   2;

    // Custom builds can start there first run prompt ids from here
    static const int firstRunPromptIdsFirstCustomId = 10000;

200
signals:
201 202 203 204 205
    void settingsPagesChanged       ();
    void analyzePagesChanged        ();
    void showTouchAreasChanged      (bool showTouchAreas);
    void showAdvancedUIChanged      (bool showAdvancedUI);
    void toolBarIndicatorsChanged   ();
206 207 208 209

protected:
    bool                _showTouchAreas;
    bool                _showAdvancedUI;
210 211 212 213
    Vehicle*            _activeVehicle  = nullptr;
    QGCCameraManager*   _cameraManager  = nullptr;
    QGCCameraControl*   _currentCamera  = nullptr;
    QVariantList        _toolBarIndicatorList;
214

215
private:
216
    QGCCorePlugin_p*    _p;
217
};