QGCCorePlugin.h 5.64 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
#include "QGCMAVLink.h"
15
#include "QmlObjectListModel.h"
16 17 18 19 20 21 22 23 24 25 26 27 28 29

#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;
30
class FactMetaData;
31
class QGeoPositionInfoSource;
32
class QQmlApplicationEngine;
33 34
class Vehicle;
class LinkInterface;
35
class QmlObjectListModel;
36 37 38 39
class QGCCorePlugin : public QGCTool
{
    Q_OBJECT
public:
40
    QGCCorePlugin(QGCApplication* app, QGCToolbox* toolbox);
41 42
    ~QGCCorePlugin();

43 44 45 46 47 48 49 50 51 52
    Q_PROPERTY(QVariantList         settingsPages           READ settingsPages                                  NOTIFY settingsPagesChanged)
    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)
53

54 55
    /// The list of settings under the Settings Menu
    /// @return A list of QGCSettings
56
    virtual QVariantList& settingsPages(void);
57

58 59 60 61
    /// The list of PageWidget pages shown in the instrument panel
    /// @return A list of QmlPageInfo
    virtual QVariantList& instrumentPages(void);

62 63
    /// The default settings panel to show
    /// @return The settings index
64
    virtual int defaultSettings(void);
65 66 67

    /// Global options
    /// @return An instance of QGCOptions
68
    virtual QGCOptions* options(void);
69

Don Gagne's avatar
Don Gagne committed
70
    /// Allows the core plugin to override the visibility for a settings group
71 72
    ///     @param name - Setting group name
    /// @return true: Show settings ui, false: Hide settings ui
73
    virtual bool overrideSettingsGroupVisibility(QString name);
74

75 76 77
    /// 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
78
    virtual bool adjustSettingMetaData(FactMetaData& metaData);
79

80 81 82 83 84 85
    /// 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
86
    /// @return The message to show to the user when they a re prompted to confirm turning on advanced ui.
87
    virtual QString showAdvancedUIMessage(void) const;
Donald Gagne's avatar
Donald Gagne committed
88

Patrick José Pereira's avatar
Patrick José Pereira committed
89
    /// @return An instance of an alternate position source (or NULL if not available)
90 91 92 93
    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);
94

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

98 99 100
    /// Allows the plugin to override the creation of the root (native) window.
    virtual QQmlApplicationEngine* createRootWindow(QObject* parent);

101 102 103 104
    /// 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);

105 106 107 108
    /// 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(void);

DonLakeFlyer's avatar
DonLakeFlyer committed
109 110 111 112
    bool showTouchAreas(void) const { return _showTouchAreas; }
    bool showAdvancedUI(void) const { return _showAdvancedUI; }
    void setShowTouchAreas(bool show);
    void setShowAdvancedUI(bool show);
113

114
    // Override from QGCTool
115
    void                            setToolbox              (QGCToolbox* toolbox);
116 117 118

signals:
    void settingsPagesChanged   (void);
119
    void instrumentPagesChanged (void);
120 121 122 123 124 125 126
    void showTouchAreasChanged  (bool showTouchAreas);
    void showAdvancedUIChanged  (bool showAdvancedUI);

protected:
    bool                _showTouchAreas;
    bool                _showAdvancedUI;

127
private:
128
    QGCCorePlugin_p*    _p;
129
};