QGCCorePlugin.h 9.36 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
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
Gus Grubba's avatar
Gus Grubba committed
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
class QGCCameraManager;
38
class QGCCameraControl;
39
class QQuickItem;
40

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

48
    Q_PROPERTY(QVariantList         settingsPages           READ settingsPages                                  NOTIFY settingsPagesChanged)
49
    Q_PROPERTY(QVariantList         analyzePages            READ analyzePages                                   NOTIFY analyzePagesChanged)
50 51 52 53 54 55 56 57 58
    Q_PROPERTY(QVariantList         instrumentPages         READ instrumentPages                                NOTIFY instrumentPagesChanged)
    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)
59

60
    Q_INVOKABLE bool guidedActionsControllerLogging() const;
61

62 63
    /// The list of settings under the Settings Menu
    /// @return A list of QGCSettings
64
    virtual QVariantList& settingsPages();
65

66 67 68 69
    /// The list of pages/buttons under the Analyze Menu
    /// @return A list of QmlPageInfo
    virtual QVariantList& analyzePages();

70 71
    /// The list of PageWidget pages shown in the instrument panel
    /// @return A list of QmlPageInfo
72
    virtual QVariantList& instrumentPages();
73

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

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

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

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

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

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

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

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

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

108 109 110
    /// Return the default Intrument Value model for the Values Widget. The returned model will be
    /// re-parented to valuesModelParent for ownership.
    virtual QmlObjectListModel* valuesWidgetDefaultSettings(QObject* valuesModelParent);
111

112 113 114
    /// Allows the plugin to override the creation of the root (native) window.
    virtual QQmlApplicationEngine* createRootWindow(QObject* parent);

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

122 123 124 125
    /// 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);

Gus Grubba's avatar
Gus Grubba committed
126
    /// Allows custom builds to add custom items to the FlightMap. Objects put into QmlObjectListModel should derive from QmlComponentInfo and set the url property.
127
    virtual QmlObjectListModel* customMapItems();
128

Gus Grubba's avatar
Gus Grubba committed
129 130 131 132
    /// 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*/) {}
133

Gus Grubba's avatar
Gus Grubba committed
134 135 136 137
    /// 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*/) {}
138

Gus Grubba's avatar
Gus Grubba committed
139 140 141 142
    /// 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*/) {}
143

Don Gagne's avatar
Don Gagne committed
144
    /// Returns the url to download the stable version check file. Return QString() to indicate no version check should be performed.
145 146
    /// 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
147 148 149
    /// The contents of this file should be a single line in the form:
    ///     v3.4.4
    /// This indicates the latest stable version number.
150
    virtual QString stableVersionCheckFileUrl() const;
Don Gagne's avatar
Don Gagne committed
151 152 153

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

156
    /// Returns the complex mission items to display in the Plan UI
Gus Grubba's avatar
Gus Grubba committed
157
    /// @param complexMissionItemNames Default set of complex items
158
    /// @return Complex items to be made available to user
Gus Grubba's avatar
Gus Grubba committed
159
    virtual QStringList complexMissionItemNames(Vehicle* /*vehicle*/, const QStringList& complexMissionItemNames) { return complexMissionItemNames; }
160

161 162
    bool showTouchAreas() const { return _showTouchAreas; }
    bool showAdvancedUI() const { return _showAdvancedUI; }
DonLakeFlyer's avatar
DonLakeFlyer committed
163 164
    void setShowTouchAreas(bool show);
    void setShowAdvancedUI(bool show);
165

166
    // Override from QGCTool
167
    void                            setToolbox              (QGCToolbox* toolbox);
168 169

signals:
170
    void settingsPagesChanged   ();
171
    void analyzePagesChanged    ();
172
    void instrumentPagesChanged ();
173 174 175
    void showTouchAreasChanged  (bool showTouchAreas);
    void showAdvancedUIChanged  (bool showAdvancedUI);

176 177 178 179
protected slots:
    void _activeVehicleChanged  (Vehicle* activeVehicle);
    void _dynamicCamerasChanged ();
    void _currentCameraChanged  ();
180
    void _autoStreamChanged     ();
181 182 183 184

protected:
    void _resetInstrumentPages  ();

185 186 187
protected:
    bool                _showTouchAreas;
    bool                _showAdvancedUI;
188 189
    Vehicle*            _activeVehicle  = nullptr;
    QGCCameraManager*   _dynamicCameras = nullptr;
190
    QGCCameraControl*   _currentCamera  = nullptr;
191

192
private:
193
    QGCCorePlugin_p*    _p;
194
};