QGCToolbox.cc 3.76 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 /*=====================================================================

 QGroundControl Open Source Ground Control Station

 (c) 2009 - 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

 This file is part of the QGROUNDCONTROL project

 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

 ======================================================================*/

Don Gagne's avatar
Don Gagne committed
24 25 26
#include "AutoPilotPluginManager.h"
#include "FactSystem.h"
#include "FirmwarePluginManager.h"
27
#include "FlightMapSettings.h"
Don Gagne's avatar
Don Gagne committed
28
#include "GAudioOutput.h"
29 30
#include "HomePositionManager.h"
#include "JoystickManager.h"
Don Gagne's avatar
Don Gagne committed
31 32 33 34
#include "LinkManager.h"
#include "MAVLinkProtocol.h"
#include "MissionCommands.h"
#include "MultiVehicleManager.h"
dogmaphobic's avatar
dogmaphobic committed
35
#include "QGCImageProvider.h"
Don Gagne's avatar
Don Gagne committed
36
#include "UASMessageHandler.h"
dogmaphobic's avatar
dogmaphobic committed
37
#include "QGCMapEngineManager.h"
38 39

QGCToolbox::QGCToolbox(QGCApplication* app)
Don Gagne's avatar
Don Gagne committed
40
    : _audioOutput(NULL)
41
    , _autopilotPluginManager(NULL)
Don Gagne's avatar
Don Gagne committed
42 43
    , _factSystem(NULL)
    , _firmwarePluginManager(NULL)
44 45
    , _flightMapSettings(NULL)
    , _homePositionManager(NULL)
Don Gagne's avatar
Don Gagne committed
46
    , _imageProvider(NULL)
47
    , _joystickManager(NULL)
Don Gagne's avatar
Don Gagne committed
48 49 50 51
    , _linkManager(NULL)
    , _mavlinkProtocol(NULL)
    , _missionCommands(NULL)
    , _multiVehicleManager(NULL)
dogmaphobic's avatar
dogmaphobic committed
52
    , _mapEngineManager(NULL)
53 54
    , _uasMessageHandler(NULL)
{
Don Gagne's avatar
Don Gagne committed
55
    _audioOutput =              new GAudioOutput(app);
56
    _autopilotPluginManager =   new AutoPilotPluginManager(app);
Don Gagne's avatar
Don Gagne committed
57 58
    _factSystem =               new FactSystem(app);
    _firmwarePluginManager =    new FirmwarePluginManager(app);
59 60
    _flightMapSettings =        new FlightMapSettings(app);
    _homePositionManager =      new HomePositionManager(app);
Don Gagne's avatar
Don Gagne committed
61 62
    _imageProvider =            new QGCImageProvider(app);
    _joystickManager =          new JoystickManager(app);
63 64
    _linkManager =              new LinkManager(app);
    _mavlinkProtocol =          new MAVLinkProtocol(app);
Don Gagne's avatar
Don Gagne committed
65 66
    _missionCommands =          new MissionCommands(app);
    _multiVehicleManager =      new MultiVehicleManager(app);
dogmaphobic's avatar
dogmaphobic committed
67
    _mapEngineManager =       new QGCMapEngineManager(app);
68 69
    _uasMessageHandler =        new UASMessageHandler(app);

Don Gagne's avatar
Don Gagne committed
70
    _audioOutput->setToolbox(this);
71
    _autopilotPluginManager->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
72 73
    _factSystem->setToolbox(this);
    _firmwarePluginManager->setToolbox(this);
74 75
    _flightMapSettings->setToolbox(this);
    _homePositionManager->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
76 77
    _imageProvider->setToolbox(this);
    _joystickManager->setToolbox(this);
78 79
    _linkManager->setToolbox(this);
    _mavlinkProtocol->setToolbox(this);
Don Gagne's avatar
Don Gagne committed
80 81
    _missionCommands->setToolbox(this);
    _multiVehicleManager->setToolbox(this);
dogmaphobic's avatar
dogmaphobic committed
82
    _mapEngineManager->setToolbox(this);
83 84 85 86 87
    _uasMessageHandler->setToolbox(this);
}

QGCToolbox::~QGCToolbox()
{
Don Gagne's avatar
Don Gagne committed
88
    delete _audioOutput;
89
    delete _autopilotPluginManager;
Don Gagne's avatar
Don Gagne committed
90 91
    delete _factSystem;
    delete _firmwarePluginManager;
92 93 94
    delete _flightMapSettings;
    delete _homePositionManager;
    delete _joystickManager;
Don Gagne's avatar
Don Gagne committed
95 96 97
    delete _linkManager;
    delete _mavlinkProtocol;
    delete _missionCommands;
dogmaphobic's avatar
dogmaphobic committed
98
    delete _mapEngineManager;
Don Gagne's avatar
Don Gagne committed
99
    delete _multiVehicleManager;
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
    delete _uasMessageHandler;
}

QGCTool::QGCTool(QGCApplication* app)
    : QObject((QObject*)app)
    , _app(app)
    , _toolbox(NULL)
{

}

void QGCTool::setToolbox(QGCToolbox* toolbox)
{
    _toolbox = toolbox;
}