QGCToolbox.h 4.25 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

#ifndef QGCToolbox_h
#define QGCToolbox_h

#include <QObject>

Don Gagne's avatar
Don Gagne committed
16 17
class FactSystem;
class FirmwarePluginManager;
18
class AudioOutput;
19
class GPSManager;
Don Gagne's avatar
Don Gagne committed
20
class JoystickManager;
Jimmy Johnson's avatar
Jimmy Johnson committed
21
class FollowMe;
22 23
class LinkManager;
class MAVLinkProtocol;
24
class MissionCommandTree;
25
class MultiVehicleManager;
dogmaphobic's avatar
dogmaphobic committed
26
class QGCMapEngineManager;
Don Gagne's avatar
Don Gagne committed
27
class QGCApplication;
dogmaphobic's avatar
dogmaphobic committed
28
class QGCImageProvider;
Don Gagne's avatar
Don Gagne committed
29
class UASMessageHandler;
Jimmy Johnson's avatar
Jimmy Johnson committed
30
class QGCPositionManager;
31
class VideoManager;
Gus Grubba's avatar
Gus Grubba committed
32
class MAVLinkLogManager;
33
class QGCCorePlugin;
34
class SettingsManager;
35 36

/// This is used to manage all of our top level services/tools
37 38
class QGCToolbox : public QObject {
    Q_OBJECT
39 40 41 42

public:
    QGCToolbox(QGCApplication* app);

Don Gagne's avatar
Don Gagne committed
43
    FirmwarePluginManager*      firmwarePluginManager(void)     { return _firmwarePluginManager; }
44
    AudioOutput*                audioOutput(void)               { return _audioOutput; }
Don Gagne's avatar
Don Gagne committed
45
    JoystickManager*            joystickManager(void)           { return _joystickManager; }
dogmaphobic's avatar
dogmaphobic committed
46 47
    LinkManager*                linkManager(void)               { return _linkManager; }
    MAVLinkProtocol*            mavlinkProtocol(void)           { return _mavlinkProtocol; }
48
    MissionCommandTree*         missionCommandTree(void)        { return _missionCommandTree; }
dogmaphobic's avatar
dogmaphobic committed
49
    MultiVehicleManager*        multiVehicleManager(void)       { return _multiVehicleManager; }
dogmaphobic's avatar
dogmaphobic committed
50
    QGCMapEngineManager*        mapEngineManager(void)          { return _mapEngineManager; }
dogmaphobic's avatar
dogmaphobic committed
51
    QGCImageProvider*           imageProvider()                 { return _imageProvider; }
Don Gagne's avatar
Don Gagne committed
52
    UASMessageHandler*          uasMessageHandler(void)         { return _uasMessageHandler; }
Jimmy Johnson's avatar
Jimmy Johnson committed
53
    FollowMe*                   followMe(void)                  { return _followMe; }
Jimmy Johnson's avatar
Jimmy Johnson committed
54
    QGCPositionManager*         qgcPositionManager(void)        { return _qgcPositionManager; }
55
    VideoManager*               videoManager(void)              { return _videoManager; }
Gus Grubba's avatar
Gus Grubba committed
56
    MAVLinkLogManager*          mavlinkLogManager(void)         { return _mavlinkLogManager; }
57
    QGCCorePlugin*              corePlugin(void)                { return _corePlugin; }
58
    SettingsManager*            settingsManager(void)           { return _settingsManager; }
Gus Grubba's avatar
Gus Grubba committed
59

Don Gagne's avatar
Don Gagne committed
60 61 62
#ifndef __mobile__
    GPSManager*                 gpsManager(void)                { return _gpsManager; }
#endif
63 64

private:
65
    void setChildToolboxes(void);
66 67
    void _scanAndLoadPlugins(QGCApplication *app);

68

69
    AudioOutput*                _audioOutput;
Don Gagne's avatar
Don Gagne committed
70 71
    FactSystem*                 _factSystem;
    FirmwarePluginManager*      _firmwarePluginManager;
Don Gagne's avatar
Don Gagne committed
72
#ifndef __mobile__
73
    GPSManager*                 _gpsManager;
Don Gagne's avatar
Don Gagne committed
74
#endif
Don Gagne's avatar
Don Gagne committed
75
    QGCImageProvider*           _imageProvider;
dogmaphobic's avatar
dogmaphobic committed
76
    JoystickManager*            _joystickManager;
Don Gagne's avatar
Don Gagne committed
77 78
    LinkManager*                _linkManager;
    MAVLinkProtocol*            _mavlinkProtocol;
79
    MissionCommandTree*         _missionCommandTree;
Don Gagne's avatar
Don Gagne committed
80
    MultiVehicleManager*        _multiVehicleManager;
81
    QGCMapEngineManager*        _mapEngineManager;
dogmaphobic's avatar
dogmaphobic committed
82
    UASMessageHandler*          _uasMessageHandler;
Jimmy Johnson's avatar
Jimmy Johnson committed
83
    FollowMe*                   _followMe;
Jimmy Johnson's avatar
Jimmy Johnson committed
84
    QGCPositionManager*         _qgcPositionManager;
85
    VideoManager*               _videoManager;
Gus Grubba's avatar
Gus Grubba committed
86
    MAVLinkLogManager*          _mavlinkLogManager;
87
    QGCCorePlugin*              _corePlugin;
88
    SettingsManager*            _settingsManager;
89 90

    friend class QGCApplication;
91 92 93 94 95 96 97
};

/// This is the base class for all tools
class QGCTool : public QObject {
    Q_OBJECT

public:
98 99 100 101
    // All tools must be parented to the QGCToolbox and go through a two phase creation. In the constructor the toolbox
    // should only be passed to QGCTool constructor for correct parenting. It should not be referenced or set in the
    // protected member. Then in the second phase of setToolbox calls is where you can reference the toolbox.
    QGCTool(QGCApplication* app, QGCToolbox* toolbox);
102

103
    // If you override this method, you must call the base class.
104 105 106 107 108 109 110 111
    virtual void setToolbox(QGCToolbox* toolbox);

protected:
    QGCApplication* _app;
    QGCToolbox*     _toolbox;
};

#endif