MainWindow.cc 36.8 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
/*=====================================================================

3
QGroundControl Open Source Ground Control Station
pixhawk's avatar
pixhawk committed
4

5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
6

7
This file is part of the QGROUNDCONTROL project
pixhawk's avatar
pixhawk committed
8

9
    QGROUNDCONTROL is free software: you can redistribute it and/or modify
pixhawk's avatar
pixhawk committed
10 11 12 13
    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.

14
    QGROUNDCONTROL is distributed in the hope that it will be useful,
pixhawk's avatar
pixhawk committed
15 16 17 18 19
    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
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21 22 23 24 25

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

/**
 * @file
26
 *   @brief Implementation of class MainWindow
27
 *   @author Lorenz Meier <mail@qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 */

#include <QSettings>
#include <QDockWidget>
#include <QNetworkInterface>
#include <QMessageBox>
#include <QDebug>
#include <QTimer>
#include <QHostInfo>

#include "MG.h"
#include "MAVLinkSimulationLink.h"
#include "SerialLink.h"
#include "UDPLink.h"
#include "MAVLinkProtocol.h"
#include "CommConfigurationWindow.h"
#include "WaypointList.h"
#include "MainWindow.h"
#include "JoystickWidget.h"
pixhawk's avatar
pixhawk committed
47
#include "GAudioOutput.h"
48

49
#ifdef QGC_OSG_ENABLED
50
#include "Q3DWidgetFactory.h"
51
#endif
pixhawk's avatar
pixhawk committed
52

lm's avatar
lm committed
53 54 55 56
// FIXME Move
#include "PxQuadMAV.h"
#include "SlugsMAV.h"

pixhawk's avatar
pixhawk committed
57 58 59 60 61 62 63 64 65 66

#include "LogCompressor.h"

/**
* Create new mainwindow. The constructor instantiates all parts of the user
* interface. It does NOT show the mainwindow. To display it, call the show()
* method.
*
* @see QMainWindow::show()
**/
67
MainWindow::MainWindow(QWidget *parent) :
pixhawk's avatar
pixhawk committed
68 69
        QMainWindow(parent),
        settings()
pixhawk's avatar
pixhawk committed
70
{
71 72 73
    this->hide();
    this->setVisible(false);

pixhawk's avatar
pixhawk committed
74 75 76
    // Setup user interface
    ui.setupUi(this);

77 78 79 80 81 82 83
    buildWidgets();

    connectWidgets();

    arrangeCenterStack();

    configureWindowName();
pixhawk's avatar
pixhawk committed
84 85

    // Add status bar
86
    //setStatusBar(createStatusBar());
pixhawk's avatar
pixhawk committed
87 88 89 90

    // Set the application style (not the same as a style sheet)
    // Set the style to Plastique
    qApp->setStyle("plastique");
91

pixhawk's avatar
pixhawk committed
92 93 94 95
    // Set style sheet as last step
    reloadStylesheet();


96 97 98
    // Create actions
    connectActions();

99
    // Load widgets and show application windowa
100 101 102 103
    loadWidgets();

    // Adjust the size
    adjustSize();
pixhawk's avatar
pixhawk committed
104 105
}

pixhawk's avatar
pixhawk committed
106
MainWindow::~MainWindow()
pixhawk's avatar
pixhawk committed
107 108 109 110 111
{
    delete statusBar;
    statusBar = NULL;
}

112 113 114

void MainWindow::buildWidgets()
{
pixhawk's avatar
pixhawk committed
115 116 117 118 119 120 121 122
    //FIXME: memory of acceptList will never be freed again
    QStringList* acceptList = new QStringList();
    acceptList->append("roll IMU");
    acceptList->append("pitch IMU");
    acceptList->append("yaw IMU");
    acceptList->append("rollspeed IMU");
    acceptList->append("pitchspeed IMU");
    acceptList->append("yawspeed IMU");
123

pixhawk's avatar
pixhawk committed
124 125 126 127
    //FIXME: memory of acceptList2 will never be freed again
    QStringList* acceptList2 = new QStringList();
    acceptList2->append("Battery");
    acceptList2->append("Pressure");
128

pixhawk's avatar
pixhawk committed
129 130
    //TODO:  move protocol outside UI
    mavlink     = new MAVLinkProtocol();
131

pixhawk's avatar
pixhawk committed
132 133
    // Center widgets
    linechartWidget   = new Linecharts(this);
134
    hudWidget         = new HUD(320, 240, this);
pixhawk's avatar
pixhawk committed
135 136 137
    mapWidget         = new MapWidget(this);
    protocolWidget    = new XMLCommProtocolWidget(this);
    dataplotWidget    = new QGCDataPlot2D(this);
138
    #ifdef QGC_OSG_ENABLED
139
    _3DWidget         = Q3DWidgetFactory::get("PIXHAWK");
140
    #endif
141

142 143 144
#ifdef QGC_OSGEARTH_ENABLED
    _3DMapWidget = Q3DWidgetFactory::get("MAP3D");
#endif
pixhawk's avatar
pixhawk committed
145
    gEarthWidget = new QGCGoogleEarthView(this);
146

pixhawk's avatar
pixhawk committed
147 148 149
    // Dock widgets
    controlDockWidget = new QDockWidget(tr("Control"), this);
    controlDockWidget->setWidget( new UASControlWidget(this) );
150

pixhawk's avatar
pixhawk committed
151 152
    listDockWidget = new QDockWidget(tr("Unmanned Systems"), this);
    listDockWidget->setWidget( new UASListWidget(this) );
153

pixhawk's avatar
pixhawk committed
154 155
    waypointsDockWidget = new QDockWidget(tr("Waypoint List"), this);
    waypointsDockWidget->setWidget( new WaypointList(this, NULL) );
156

pixhawk's avatar
pixhawk committed
157 158
    infoDockWidget = new QDockWidget(tr("Status Details"), this);
    infoDockWidget->setWidget( new UASInfoWidget(this) );
159

pixhawk's avatar
pixhawk committed
160 161
    detectionDockWidget = new QDockWidget(tr("Object Recognition"), this);
    detectionDockWidget->setWidget( new ObjectDetectionView("images/patterns", this) );
162

pixhawk's avatar
pixhawk committed
163 164
    debugConsoleDockWidget = new QDockWidget(tr("Communication Console"), this);
    debugConsoleDockWidget->setWidget( new DebugConsole(this) );
165

pixhawk's avatar
pixhawk committed
166 167
    parametersDockWidget = new QDockWidget(tr("Onboard Parameters"), this);
    parametersDockWidget->setWidget( new ParameterInterface(this) );
168

pixhawk's avatar
pixhawk committed
169 170
    watchdogControlDockWidget = new QDockWidget(tr("Process Control"), this);
    watchdogControlDockWidget->setWidget( new WatchdogControl(this) );
171

pixhawk's avatar
pixhawk committed
172 173
    hsiDockWidget = new QDockWidget(tr("Horizontal Situation Indicator"), this);
    hsiDockWidget->setWidget( new HSIDisplay(this) );
174

pixhawk's avatar
pixhawk committed
175 176
    headDown1DockWidget = new QDockWidget(tr("Primary Flight Display"), this);
    headDown1DockWidget->setWidget( new HDDisplay(acceptList, this) );
177

pixhawk's avatar
pixhawk committed
178 179
    headDown2DockWidget = new QDockWidget(tr("Payload Status"), this);
    headDown2DockWidget->setWidget( new HDDisplay(acceptList2, this) );
180

pixhawk's avatar
pixhawk committed
181 182
    rcViewDockWidget = new QDockWidget(tr("Radio Control"), this);
    rcViewDockWidget->setWidget( new QGCRemoteControlView(this) );
183

184 185 186
    headUpDockWidget = new QDockWidget(tr("Control Indicator"), this);
    headUpDockWidget->setWidget( new HUD(320, 240, this));

pixhawk's avatar
pixhawk committed
187 188 189
    // Dialogue widgets
    //FIXME: free memory in destructor
    joystick    = new JoystickInput();
190

191 192
}

pixhawk's avatar
pixhawk committed
193 194 195
/**
 * Connect all signals and slots of the main window widgets
 */
196 197
void MainWindow::connectWidgets()
{
pixhawk's avatar
pixhawk committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
    if (linechartWidget)
    {
        connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)),
                linechartWidget, SLOT(addSystem(UASInterface*)));
        connect(UASManager::instance(), SIGNAL(activeUASSet(int)),
                linechartWidget, SLOT(selectSystem(int)));
        connect(linechartWidget, SIGNAL(logfileWritten(QString)),
                this, SLOT(loadDataView(QString)));
    }
    if (infoDockWidget && infoDockWidget->widget())
    {
        connect(mavlink, SIGNAL(receiveLossChanged(int, float)),
                infoDockWidget->widget(), SLOT(updateSendLoss(int, float)));
    }
    if (mapWidget && waypointsDockWidget->widget())
    {
        // clear path create on the map
        connect(waypointsDockWidget->widget(), SIGNAL(clearPathclicked()), mapWidget, SLOT(clearPath()));
        // add Waypoint widget in the WaypointList widget when mouse clicked
        connect(mapWidget, SIGNAL(captureMapCoordinateClick(QPointF)), waypointsDockWidget->widget(), SLOT(addWaypointMouse(QPointF)));
        // it notifies that a waypoint global goes to do create
219 220
        //connect(mapWidget, SIGNAL(createGlobalWP(bool, QPointF)), waypointsDockWidget->widget(), SLOT(setIsWPGlobal(bool, QPointF)));
        //connect(mapWidget, SIGNAL(sendGeometryEndDrag(QPointF,int)), waypointsDockWidget->widget(), SLOT(waypointGlobalChanged(QPointF,int)) );
221 222 223 224

        // it notifies that a waypoint global goes to do create and a map graphic too
        connect(waypointsDockWidget->widget(), SIGNAL(createWaypointAtMap(QPointF)), mapWidget, SLOT(createWaypointGraphAtMap(QPointF)));
        // it notifies that a waypoint global change its position by spinBox on Widget WaypointView
225
        //connect(waypointsDockWidget->widget(), SIGNAL(changePositionWPGlobalBySpinBox(int,float,float)), mapWidget, SLOT(changeGlobalWaypointPositionBySpinBox(int,float,float)));
pixhawk's avatar
pixhawk committed
226
    }
227 228
}

229 230
void MainWindow::arrangeCenterStack()
{
231

pixhawk's avatar
pixhawk committed
232 233 234 235 236
    QStackedWidget *centerStack = new QStackedWidget(this);
    if (!centerStack) return;
    if (linechartWidget) centerStack->addWidget(linechartWidget);
    if (protocolWidget) centerStack->addWidget(protocolWidget);
    if (mapWidget) centerStack->addWidget(mapWidget);
237
    #ifdef QGC_OSG_ENABLED
238
    if (_3DWidget) centerStack->addWidget(_3DWidget);
239 240
#endif
    #ifdef QGC_OSGEARTH_ENABLED
241
    if (_3DMapWidget) centerStack->addWidget(_3DMapWidget);
242
    #endif
pixhawk's avatar
pixhawk committed
243
    if (gEarthWidget) centerStack->addWidget(gEarthWidget);
pixhawk's avatar
pixhawk committed
244 245
    if (hudWidget) centerStack->addWidget(hudWidget);
    if (dataplotWidget) centerStack->addWidget(dataplotWidget);
246

pixhawk's avatar
pixhawk committed
247
    setCentralWidget(centerStack);
248 249
}

250 251
void MainWindow::configureWindowName()
{
pixhawk's avatar
pixhawk committed
252 253 254
    QList<QHostAddress> hostAddresses = QNetworkInterface::allAddresses();
    QString windowname = qApp->applicationName() + " " + qApp->applicationVersion();
    bool prevAddr = false;
255

pixhawk's avatar
pixhawk committed
256
    windowname.append(" (" + QHostInfo::localHostName() + ": ");
257

pixhawk's avatar
pixhawk committed
258 259 260 261 262 263 264 265 266 267
    for (int i = 0; i < hostAddresses.size(); i++)
    {
        // Exclude loopback IPv4 and all IPv6 addresses
        if (hostAddresses.at(i) != QHostAddress("127.0.0.1") && !hostAddresses.at(i).toString().contains(":"))
        {
            if(prevAddr) windowname.append("/");
            windowname.append(hostAddresses.at(i).toString());
            prevAddr = true;
        }
    }
268

pixhawk's avatar
pixhawk committed
269
    windowname.append(")");
270

pixhawk's avatar
pixhawk committed
271
    setWindowTitle(windowname);
272 273

#ifndef Q_WS_MAC
pixhawk's avatar
pixhawk committed
274
    //qApp->setWindowIcon(QIcon(":/core/images/qtcreator_logo_128.png"));
275 276 277
#endif
}

pixhawk's avatar
pixhawk committed
278
QStatusBar* MainWindow::createStatusBar()
pixhawk's avatar
pixhawk committed
279 280 281 282 283 284 285 286
{
    QStatusBar* bar = new QStatusBar();
    /* Add status fields and messages */
    /* Enable resize grip in the bottom right corner */
    bar->setSizeGripEnabled(true);
    return bar;
}

pixhawk's avatar
pixhawk committed
287
void MainWindow::startVideoCapture()
pixhawk's avatar
pixhawk committed
288 289 290 291 292 293 294 295 296 297 298
{
    QString format = "bmp";
    QString initialPath = QDir::currentPath() + tr("/untitled.") + format;

    QString screenFileName = QFileDialog::getSaveFileName(this, tr("Save As"),
                                                          initialPath,
                                                          tr("%1 Files (*.%2);;All Files (*)")
                                                          .arg(format.toUpper())
                                                          .arg(format));
    delete videoTimer;
    videoTimer = new QTimer(this);
299 300 301
    //videoTimer->setInterval(40);
    //connect(videoTimer, SIGNAL(timeout()), this, SLOT(saveScreen()));
    //videoTimer->stop();
pixhawk's avatar
pixhawk committed
302 303
}

pixhawk's avatar
pixhawk committed
304
void MainWindow::stopVideoCapture()
pixhawk's avatar
pixhawk committed
305 306 307 308 309 310
{
    videoTimer->stop();

    // TODO Convert raw images to PNG
}

pixhawk's avatar
pixhawk committed
311
void MainWindow::saveScreen()
pixhawk's avatar
pixhawk committed
312 313 314 315 316 317 318 319 320 321
{
    QPixmap window = QPixmap::grabWindow(this->winId());
    QString format = "bmp";

    if (!screenFileName.isEmpty())
    {
        window.save(screenFileName, format.toAscii());
    }
}

322 323 324 325 326 327
/**
 * Reload the style sheet from disk. The function tries to load "qgroundcontrol.css" from the application
 * directory (which by default does not exist). If it fails, it will load the bundled default CSS
 * from memory.
 * To customize the application, just create a qgroundcontrol.css file in the application directory
 */
pixhawk's avatar
pixhawk committed
328
void MainWindow::reloadStylesheet()
pixhawk's avatar
pixhawk committed
329 330
{
    // Load style sheet
331 332 333 334 335
    QFile* styleSheet = new QFile(QCoreApplication::applicationDirPath() + "/qgroundcontrol.css");
    if (!styleSheet->exists())
    {
        styleSheet = new QFile(":/images/style-mission.css");
    }
336 337
    if (styleSheet->open(QIODevice::ReadOnly | QIODevice::Text))
    {
338 339
        QString style = QString(styleSheet->readAll());
        style.replace("ICONDIR", QCoreApplication::applicationDirPath()+ "/images/");
pixhawk's avatar
pixhawk committed
340
        qApp->setStyleSheet(style);
341 342 343
    }
    else
    {
344
        qDebug() << "Style not set:" << styleSheet->fileName() << "opened: " << styleSheet->isOpen();
pixhawk's avatar
pixhawk committed
345
    }
346
    delete styleSheet;
pixhawk's avatar
pixhawk committed
347 348
}

pixhawk's avatar
pixhawk committed
349
void MainWindow::showStatusMessage(const QString& status, int timeout)
pixhawk's avatar
pixhawk committed
350
{
351
    //statusBar->showMessage(status, timeout);
pixhawk's avatar
pixhawk committed
352 353
}

354
void MainWindow::showStatusMessage(const QString& status)
pixhawk's avatar
pixhawk committed
355
{
356
    //statusBar->showMessage(status, 5);
pixhawk's avatar
pixhawk committed
357 358 359 360 361 362
}

/**
* @brief Create all actions associated to the main window
*
**/
pixhawk's avatar
pixhawk committed
363
void MainWindow::connectActions()
pixhawk's avatar
pixhawk committed
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
{
    // Connect actions from ui
    connect(ui.actionAdd_Link, SIGNAL(triggered()), this, SLOT(addLink()));

    // Connect internal actions
    connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)), this, SLOT(UASCreated(UASInterface*)));

    // Connect user interface controls
    connect(ui.actionLiftoff, SIGNAL(triggered()), UASManager::instance(), SLOT(launchActiveUAS()));
    connect(ui.actionLand, SIGNAL(triggered()), UASManager::instance(), SLOT(returnActiveUAS()));
    connect(ui.actionEmergency_Land, SIGNAL(triggered()), UASManager::instance(), SLOT(stopActiveUAS()));
    connect(ui.actionEmergency_Kill, SIGNAL(triggered()), UASManager::instance(), SLOT(killActiveUAS()));

    connect(ui.actionConfiguration, SIGNAL(triggered()), UASManager::instance(), SLOT(configureActiveUAS()));

    // User interface actions
    connect(ui.actionPilotView, SIGNAL(triggered()), this, SLOT(loadPilotView()));
    connect(ui.actionEngineerView, SIGNAL(triggered()), this, SLOT(loadEngineerView()));
    connect(ui.actionOperatorView, SIGNAL(triggered()), this, SLOT(loadOperatorView()));
383
    connect(ui.action3DView, SIGNAL(triggered()), this, SLOT(load3DView()));
384
    connect(ui.action3DMapView, SIGNAL(triggered()), this, SLOT(load3DMapView()));
385
    connect(ui.actionShow_full_view, SIGNAL(triggered()), this, SLOT(loadAllView()));
386
    connect(ui.actionShow_MAVLink_view, SIGNAL(triggered()), this, SLOT(loadMAVLinkView()));
387
    connect(ui.actionShow_data_analysis_view, SIGNAL(triggered()), this, SLOT(loadDataView()));
pixhawk's avatar
pixhawk committed
388
    connect(ui.actionStyleConfig, SIGNAL(triggered()), this, SLOT(reloadStylesheet()));
389
    connect(ui.actionGlobalOperatorView, SIGNAL(triggered()), this, SLOT(loadGlobalOperatorView()));
390 391 392
    connect(ui.actionOnline_documentation, SIGNAL(triggered()), this, SLOT(showHelp()));
    connect(ui.actionCredits_Developers, SIGNAL(triggered()), this, SLOT(showCredits()));
    connect(ui.actionProject_Roadmap, SIGNAL(triggered()), this, SLOT(showRoadMap()));
pixhawk's avatar
pixhawk committed
393
    connect(ui.actionGoogleEarthView, SIGNAL(triggered()), this, SLOT(loadGoogleEarthView()));
394

pixhawk's avatar
pixhawk committed
395 396
    // Joystick configuration
    connect(ui.actionJoystickSettings, SIGNAL(triggered()), this, SLOT(configure()));
397 398


pixhawk's avatar
pixhawk committed
399 400
}

401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
void MainWindow::showHelp()
{
    if(!QDesktopServices::openUrl(QUrl("http://qgroundcontrol.org/user_guide")))
    {
        QMessageBox msgBox;
        msgBox.setIcon(QMessageBox::Critical);
        msgBox.setText("Could not open help in browser");
        msgBox.setInformativeText("To get to the online help, please open http://qgroundcontrol.org/user_guide in a browser.");
        msgBox.setStandardButtons(QMessageBox::Ok);
        msgBox.setDefaultButton(QMessageBox::Ok);
        msgBox.exec();
    }
}

void MainWindow::showCredits()
{
    if(!QDesktopServices::openUrl(QUrl("http://qgroundcontrol.org/credits")))
    {
        QMessageBox msgBox;
        msgBox.setIcon(QMessageBox::Critical);
        msgBox.setText("Could not open credits in browser");
        msgBox.setInformativeText("To get to the online help, please open http://qgroundcontrol.org/credits in a browser.");
        msgBox.setStandardButtons(QMessageBox::Ok);
        msgBox.setDefaultButton(QMessageBox::Ok);
        msgBox.exec();
    }
}

void MainWindow::showRoadMap()
{
    if(!QDesktopServices::openUrl(QUrl("http://qgroundcontrol.org/roadmap")))
    {
        QMessageBox msgBox;
        msgBox.setIcon(QMessageBox::Critical);
        msgBox.setText("Could not open roadmap in browser");
        msgBox.setInformativeText("To get to the online help, please open http://qgroundcontrol.org/roadmap in a browser.");
        msgBox.setStandardButtons(QMessageBox::Ok);
        msgBox.setDefaultButton(QMessageBox::Ok);
        msgBox.exec();
    }
}

pixhawk's avatar
pixhawk committed
443
void MainWindow::configure()
pixhawk's avatar
pixhawk committed
444 445 446 447
{
    joystickWidget = new JoystickWidget(joystick, this);
}

pixhawk's avatar
pixhawk committed
448
void MainWindow::addLink()
pixhawk's avatar
pixhawk committed
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
{
    SerialLink* link = new SerialLink();
    // TODO This should be only done in the dialog itself

    LinkManager::instance()->addProtocol(link, mavlink);

    CommConfigurationWindow* commWidget = new CommConfigurationWindow(link, mavlink, this);

    ui.menuNetwork->addAction(commWidget->getAction());

    commWidget->show();

    // TODO Implement the link removal!
}

pixhawk's avatar
pixhawk committed
464 465
void MainWindow::addLink(LinkInterface *link)
{
466
    LinkManager::instance()->addProtocol(link, mavlink);
pixhawk's avatar
pixhawk committed
467 468 469 470 471 472 473
    CommConfigurationWindow* commWidget = new CommConfigurationWindow(link, mavlink, this);
    ui.menuNetwork->addAction(commWidget->getAction());

    // Special case for simulationlink
    MAVLinkSimulationLink* sim = dynamic_cast<MAVLinkSimulationLink*>(link);
    if (sim)
    {
474
        //connect(sim, SIGNAL(valueChanged(int,QString,double,quint64)), linechart, SLOT(appendData(int,QString,double,quint64)));
pixhawk's avatar
pixhawk committed
475 476 477 478
        connect(ui.actionSimulate, SIGNAL(triggered(bool)), sim, SLOT(connectLink(bool)));
    }
}

pixhawk's avatar
pixhawk committed
479
void MainWindow::UASCreated(UASInterface* uas)
pixhawk's avatar
pixhawk committed
480 481 482
{
    // Connect the UAS to the full user interface

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
    if (uas != NULL)
    {
        QIcon icon;
        // Set matching icon
        switch (uas->getSystemType())
        {
        case 0:
            icon = QIcon(":/images/mavs/generic.svg");
            break;
        case 1:
            icon = QIcon(":/images/mavs/fixed-wing.svg");
            break;
        case 2:
            icon = QIcon(":/images/mavs/quadrotor.svg");
            break;
        case 3:
            icon = QIcon(":/images/mavs/coaxial.svg");
            break;
        case 4:
            icon = QIcon(":/images/mavs/helicopter.svg");
            break;
        case 5:
            icon = QIcon(":/images/mavs/groundstation.svg");
            break;
        default:
            icon = QIcon(":/images/mavs/unknown.svg");
            break;
        }

        ui.menuConnected_Systems->addAction(icon, tr("Select %1 for control").arg(uas->getUASName()), uas, SLOT(setSelected()));

        // FIXME Should be not inside the mainwindow
515 516
        if (debugConsoleDockWidget)
        {
pixhawk's avatar
pixhawk committed
517 518 519 520 521 522
            DebugConsole *debugConsole = dynamic_cast<DebugConsole*>(debugConsoleDockWidget->widget());
            if (debugConsole)
            {
                connect(uas, SIGNAL(textMessageReceived(int,int,int,QString)),
                        debugConsole, SLOT(receiveTextMessage(int,int,int,QString)));
            }
523
        }
524 525

        // Health / System status indicator
526 527
        if (infoDockWidget)
        {
pixhawk's avatar
pixhawk committed
528 529 530 531 532
            UASInfoWidget *infoWidget = dynamic_cast<UASInfoWidget*>(infoDockWidget->widget());
            if (infoWidget)
            {
                infoWidget->addUAS(uas);
            }
533
        }
534 535

        // UAS List
536 537
        if (listDockWidget)
        {
pixhawk's avatar
pixhawk committed
538 539 540 541 542
            UASListWidget *listWidget = dynamic_cast<UASListWidget*>(listDockWidget->widget());
            if (listWidget)
            {
                listWidget->addUAS(uas);
            }
543
        }
544 545 546 547 548 549 550 551 552 553 554 555 556

        // Camera view
        //camera->addUAS(uas);

        // Revalidate UI
        // TODO Stylesheet reloading should in theory not be necessary
        reloadStylesheet();

        // Check which type this UAS is of
        PxQuadMAV* mav = dynamic_cast<PxQuadMAV*>(uas);
        if (mav) loadPixhawkView();
        SlugsMAV* mav2 = dynamic_cast<SlugsMAV*>(uas);
        if (mav2) loadSlugsView();
lm's avatar
lm committed
557

558
    }
pixhawk's avatar
pixhawk committed
559 560
}

561 562 563
/**
 * Clears the current view completely
 */
pixhawk's avatar
pixhawk committed
564
void MainWindow::clearView()
pixhawk's avatar
pixhawk committed
565 566
{ 
    // Halt HUD
567 568 569 570 571 572 573 574 575
    if (hudWidget) hudWidget->stop();
    // Disable linechart
    if (linechartWidget) linechartWidget->setActive(false);
    // Halt HDDs
    if (headDown1DockWidget)
    {
        HDDisplay* hddWidget = dynamic_cast<HDDisplay*>( headDown1DockWidget->widget() );
        if (hddWidget) hddWidget->stop();
    }
pixhawk's avatar
pixhawk committed
576
    if (headDown2DockWidget)
577 578 579 580 581 582 583 584 585 586
    {
        HDDisplay* hddWidget = dynamic_cast<HDDisplay*>( headDown2DockWidget->widget() );
        if (hddWidget) hddWidget->stop();
    }
    // Halt HSI
    if (hsiDockWidget)
    {
        HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
        if (hsi) hsi->stop();
    }
pixhawk's avatar
pixhawk committed
587

588 589
    // Remove all dock widgets from main window
    QObjectList childList( this->children() );
pixhawk's avatar
pixhawk committed
590

591 592 593
    QObjectList::iterator i;
    QDockWidget* dockWidget;
    for (i = childList.begin(); i != childList.end(); ++i)
pixhawk's avatar
pixhawk committed
594
    {
595 596
        dockWidget = dynamic_cast<QDockWidget*>(*i);
        if (dockWidget)
pixhawk's avatar
pixhawk committed
597
        {
598 599 600 601 602
            // Remove dock widget from main window
            this->removeDockWidget(dockWidget);
            // Deletion of dockWidget would also delete all child
            // widgets of dockWidget
            // Is there a way to unset a widget from QDockWidget?
pixhawk's avatar
pixhawk committed
603 604 605 606
        }
    }
}

lm's avatar
lm committed
607 608 609 610 611 612
void MainWindow::loadSlugsView()
{
    clearView();
    // Engineer view, used in EMAV2009

    // LINE CHART
613 614 615 616 617 618 619 620 621
    if (linechartWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            linechartWidget->setActive(true);
            centerStack->setCurrentWidget(linechartWidget);
        }
    }
lm's avatar
lm committed
622 623

    // UAS CONTROL
624 625 626 627 628
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
lm's avatar
lm committed
629 630

    // UAS LIST
631 632 633 634 635
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
lm's avatar
lm committed
636 637

    // UAS STATUS
638 639 640 641 642
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
lm's avatar
lm committed
643 644

    // HORIZONTAL SITUATION INDICATOR
645 646 647 648 649 650 651 652 653 654
    if (hsiDockWidget)
    {
        HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
        if (hsi)
        {
            hsi->start();
            addDockWidget(Qt::LeftDockWidgetArea, hsiDockWidget);
            hsiDockWidget->show();
        }
    }
lm's avatar
lm committed
655 656

    // WAYPOINT LIST
657 658 659 660 661
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
lm's avatar
lm committed
662 663

    // DEBUG CONSOLE
664 665 666 667 668
    if (debugConsoleDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, debugConsoleDockWidget);
        debugConsoleDockWidget->show();
    }
lm's avatar
lm committed
669 670

    // ONBOARD PARAMETERS
671 672 673 674 675
    if (parametersDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, parametersDockWidget);
        parametersDockWidget->show();
    }
lm's avatar
lm committed
676 677 678 679 680 681 682 683 684

    this->show();
}

void MainWindow::loadPixhawkView()
{
    clearView();
    // Engineer view, used in EMAV2009

685
#ifdef QGC_OSG_ENABLED
686
    // 3D map
687
    if (_3DWidget)
688 689 690 691
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
692
            //map3DWidget->setActive(true);
693
            centerStack->setCurrentWidget(_3DWidget);
694 695
        }
    }
696
#endif
lm's avatar
lm committed
697 698

    // UAS CONTROL
699 700 701 702 703
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
lm's avatar
lm committed
704

705 706 707 708 709 710 711 712 713 714 715 716
    // HORIZONTAL SITUATION INDICATOR
    if (hsiDockWidget)
    {
        HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
        if (hsi)
        {
            hsi->start();
            addDockWidget(Qt::LeftDockWidgetArea, hsiDockWidget);
            hsiDockWidget->show();
        }
    }

lm's avatar
lm committed
717
    // UAS LIST
718 719 720 721 722
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
lm's avatar
lm committed
723 724

    // UAS STATUS
725 726 727 728 729
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
lm's avatar
lm committed
730 731

    // WAYPOINT LIST
732 733 734 735 736
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
lm's avatar
lm committed
737 738

    // DEBUG CONSOLE
739 740 741 742 743
    if (debugConsoleDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, debugConsoleDockWidget);
        debugConsoleDockWidget->show();
    }
lm's avatar
lm committed
744 745

    // ONBOARD PARAMETERS
746 747 748 749 750
    if (parametersDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, parametersDockWidget);
        parametersDockWidget->show();
    }
lm's avatar
lm committed
751 752 753 754

    this->show();
}

755 756 757
void MainWindow::loadDataView()
{
    clearView();
758 759 760 761 762 763 764 765

    // DATAPLOT
    if (dataplotWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
            centerStack->setCurrentWidget(dataplotWidget);
    }
766 767
}

768 769 770
void MainWindow::loadDataView(QString fileName)
{
    clearView();
pixhawk's avatar
pixhawk committed
771

772 773 774 775 776 777 778 779 780 781
    // DATAPLOT
    if (dataplotWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            centerStack->setCurrentWidget(dataplotWidget);
            dataplotWidget->loadFile(fileName);
        }
    }
782 783
}

pixhawk's avatar
pixhawk committed
784
void MainWindow::loadPilotView()
pixhawk's avatar
pixhawk committed
785 786 787 788
{
    clearView();

    // HEAD UP DISPLAY
789 790 791 792 793 794 795 796 797
    if (hudWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            centerStack->setCurrentWidget(hudWidget);
            hudWidget->start();
        }
    }
pixhawk's avatar
pixhawk committed
798 799

    //connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), pfd, SLOT(setActiveUAS(UASInterface*)));
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
    if (headDown1DockWidget)
    {
        HDDisplay *hdd = dynamic_cast<HDDisplay*>(headDown1DockWidget->widget());
        if (hdd)
        {
            addDockWidget(Qt::RightDockWidgetArea, headDown1DockWidget);
            headDown1DockWidget->show();
            hdd->start();
        }
        
    }
    if (headDown2DockWidget)
    {
        HDDisplay *hdd = dynamic_cast<HDDisplay*>(headDown2DockWidget->widget());
        if (hdd)
        {
            addDockWidget(Qt::RightDockWidgetArea, headDown2DockWidget);
            headDown2DockWidget->show();
            hdd->start();
        }
    }
pixhawk's avatar
pixhawk committed
821

pixhawk's avatar
pixhawk committed
822 823 824
    this->show();
}

pixhawk's avatar
pixhawk committed
825
void MainWindow::loadOperatorView()
pixhawk's avatar
pixhawk committed
826 827 828
{
    clearView();

829
    // MAP
830 831 832 833 834 835 836 837
    if (mapWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            centerStack->setCurrentWidget(mapWidget);
        }
    }
pixhawk's avatar
pixhawk committed
838 839

    // UAS CONTROL
840 841 842 843 844
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
845 846

    // UAS LIST
847 848 849 850 851
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
852 853

    // UAS STATUS
854 855 856 857 858
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
859 860

    // WAYPOINT LIST
861 862 863 864 865
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
866

lm's avatar
lm committed
867
    // HORIZONTAL SITUATION INDICATOR
868 869 870 871 872 873 874 875 876 877
    if (hsiDockWidget)
    {
        HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
        if (hsi)
        {
            addDockWidget(Qt::BottomDockWidgetArea, hsiDockWidget);
            hsiDockWidget->show();
            hsi->start();
        }
    }
pixhawk's avatar
pixhawk committed
878 879

    // OBJECT DETECTION
880 881 882 883 884
    if (detectionDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, detectionDockWidget);
        detectionDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
885

pixhawk's avatar
pixhawk committed
886
    // PROCESS CONTROL
887 888 889 890 891 892
    if (watchdogControlDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, watchdogControlDockWidget);
        watchdogControlDockWidget->show();
    }

pixhawk's avatar
pixhawk committed
893 894 895
    this->show();
}

896 897 898 899 900
void MainWindow::loadGlobalOperatorView()
{
    clearView();

    // MAP
901 902 903 904 905 906 907 908
    if (mapWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            centerStack->setCurrentWidget(mapWidget);
        }
    }
909 910

    // UAS CONTROL
911 912 913 914 915
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
916 917

    // UAS LIST
918 919 920 921 922
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
923 924

    // UAS STATUS
925 926 927 928 929
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
930 931

    // WAYPOINT LIST
932 933 934 935 936
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
937

938 939 940 941 942 943 944 945 946 947 948
//    // HORIZONTAL SITUATION INDICATOR
//    if (hsiDockWidget)
//    {
//        HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
//        if (hsi)
//        {
//            addDockWidget(Qt::BottomDockWidgetArea, hsiDockWidget);
//            hsiDockWidget->show();
//            hsi->start();
//        }
//    }
949 950

    // PROCESS CONTROL
951 952 953 954 955
    if (watchdogControlDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, watchdogControlDockWidget);
        watchdogControlDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
956

957 958 959 960 961 962
    // HEAD UP DISPLAY
    if (headUpDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, headUpDockWidget);
        // FIXME Replace with default ->show() call
        HUD* hud = dynamic_cast<HUD*>(headUpDockWidget->widget());
pixhawk's avatar
pixhawk committed
963

964 965 966 967 968 969
        if (hud)
        {
            headUpDockWidget->show();
            hud->start();
        }
    }
pixhawk's avatar
pixhawk committed
970 971 972

}

973 974
void MainWindow::load3DMapView()
{
975
        #ifdef QGC_OSGEARTH_ENABLED
976 977 978
            clearView();

            // 3D map
979
            if (_3DMapWidget)
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
            {
                QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
                if (centerStack)
                {
                    //map3DWidget->setActive(true);
                    centerStack->setCurrentWidget(_3DMapWidget);
                }
            }

            // UAS CONTROL
            if (controlDockWidget)
            {
                addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
                controlDockWidget->show();
            }

            // UAS LIST
            if (listDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
                listDockWidget->show();
            }

            // WAYPOINT LIST
            if (waypointsDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
                waypointsDockWidget->show();
            }

            // HORIZONTAL SITUATION INDICATOR
            if (hsiDockWidget)
            {
                HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
                if (hsi)
                {
                    hsi->start();
                    addDockWidget(Qt::LeftDockWidgetArea, hsiDockWidget);
                    hsiDockWidget->show();
                }
            }
#endif
            this->show();
pixhawk's avatar
pixhawk committed
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
        }

void MainWindow::loadGoogleEarthView()
{
            clearView();

            // 3D map
            if (gEarthWidget)
            {
                QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
                if (centerStack)
                {
                    centerStack->setCurrentWidget(gEarthWidget);
                }
            }

            // UAS CONTROL
            if (controlDockWidget)
            {
                addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
                controlDockWidget->show();
            }

            // UAS LIST
            if (listDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
                listDockWidget->show();
            }

            // WAYPOINT LIST
            if (waypointsDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
                waypointsDockWidget->show();
            }

            // HORIZONTAL SITUATION INDICATOR
            if (hsiDockWidget)
            {
                HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
                if (hsi)
                {
                    hsi->start();
                    addDockWidget(Qt::LeftDockWidgetArea, hsiDockWidget);
                    hsiDockWidget->show();
                }
            }
            this->show();
1072 1073 1074 1075

        }


1076
void MainWindow::load3DView()
pixhawk's avatar
pixhawk committed
1077
{
1078
        #ifdef QGC_OSG_ENABLED
1079
            clearView();
pixhawk's avatar
pixhawk committed
1080

1081
            // 3D map
1082
            if (_3DWidget)
1083 1084 1085 1086 1087
            {
                QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
                if (centerStack)
                {
                    //map3DWidget->setActive(true);
1088
                    centerStack->setCurrentWidget(_3DWidget);
1089 1090
                }
            }
pixhawk's avatar
pixhawk committed
1091

1092 1093 1094 1095 1096 1097
            // UAS CONTROL
            if (controlDockWidget)
            {
                addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
                controlDockWidget->show();
            }
pixhawk's avatar
pixhawk committed
1098

1099 1100 1101 1102 1103 1104
            // UAS LIST
            if (listDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
                listDockWidget->show();
            }
1105

1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
            // WAYPOINT LIST
            if (waypointsDockWidget)
            {
                addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
                waypointsDockWidget->show();
            }

            // HORIZONTAL SITUATION INDICATOR
            if (hsiDockWidget)
            {
                HSIDisplay* hsi = dynamic_cast<HSIDisplay*>( hsiDockWidget->widget() );
                if (hsi)
                {
                    hsi->start();
                    addDockWidget(Qt::LeftDockWidgetArea, hsiDockWidget);
                    hsiDockWidget->show();
                }
            }
1124
#endif
1125
            this->show();
1126

1127
        }
pixhawk's avatar
pixhawk committed
1128

pixhawk's avatar
pixhawk committed
1129
void MainWindow::loadEngineerView()
pixhawk's avatar
pixhawk committed
1130 1131 1132 1133 1134
{
    clearView();
    // Engineer view, used in EMAV2009

    // LINE CHART
1135 1136 1137 1138 1139 1140 1141 1142 1143
    if (linechartWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            linechartWidget->setActive(true);
            centerStack->setCurrentWidget(linechartWidget);
        }
    }
pixhawk's avatar
pixhawk committed
1144 1145

    // UAS CONTROL
1146 1147 1148 1149 1150
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
1151 1152

    // UAS LIST
1153 1154 1155 1156 1157
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
1158 1159

    // UAS STATUS
1160 1161 1162 1163 1164
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
1165

lm's avatar
lm committed
1166
    // WAYPOINT LIST
1167 1168 1169 1170 1171
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
1172 1173

    // DEBUG CONSOLE
1174 1175 1176 1177 1178
    if (debugConsoleDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, debugConsoleDockWidget);
        debugConsoleDockWidget->show();
    }
pixhawk's avatar
pixhawk committed
1179

lm's avatar
lm committed
1180
    // ONBOARD PARAMETERS
1181 1182 1183 1184 1185
    if (parametersDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, parametersDockWidget);
        parametersDockWidget->show();
    }
lm's avatar
lm committed
1186

1187 1188 1189 1190 1191 1192 1193
    // RADIO CONTROL VIEW
    if (rcViewDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, rcViewDockWidget);
        rcViewDockWidget->show();
    }

pixhawk's avatar
pixhawk committed
1194 1195 1196
    this->show();
}

1197 1198 1199
void MainWindow::loadMAVLinkView()
{
    clearView();
1200 1201 1202 1203 1204 1205 1206 1207 1208 1209

    if (protocolWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            centerStack->setCurrentWidget(protocolWidget);
        }
    }

1210
    this->show();
1211 1212
}

1213 1214
void MainWindow::loadAllView()
{
1215 1216
    clearView();

1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
    if (headDown1DockWidget)
    {
        HDDisplay *hdd = dynamic_cast<HDDisplay*>(headDown1DockWidget->widget());
        if (hdd)
        {
            addDockWidget(Qt::RightDockWidgetArea, headDown1DockWidget);
            headDown1DockWidget->show();
            hdd->start();
        }
        
    }
    if (headDown2DockWidget)
    {
        HDDisplay *hdd = dynamic_cast<HDDisplay*>(headDown2DockWidget->widget());
        if (hdd)
        {
            addDockWidget(Qt::RightDockWidgetArea, headDown2DockWidget);
            headDown2DockWidget->show();
            hdd->start();
        }
    }
1238 1239

    // UAS CONTROL
1240 1241 1242 1243 1244
    if (controlDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, controlDockWidget);
        controlDockWidget->show();
    }
1245 1246

    // UAS LIST
1247 1248 1249 1250 1251
    if (listDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, listDockWidget);
        listDockWidget->show();
    }
1252 1253

    // UAS STATUS
1254 1255 1256 1257 1258
    if (infoDockWidget)
    {
        addDockWidget(Qt::LeftDockWidgetArea, infoDockWidget);
        infoDockWidget->show();
    }
1259 1260

    // WAYPOINT LIST
1261 1262 1263 1264 1265
    if (waypointsDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, waypointsDockWidget);
        waypointsDockWidget->show();
    }
1266 1267

    // DEBUG CONSOLE
1268 1269 1270 1271 1272
    if (debugConsoleDockWidget)
    {
        addDockWidget(Qt::BottomDockWidgetArea, debugConsoleDockWidget);
        debugConsoleDockWidget->show();
    }
1273 1274

    // OBJECT DETECTION
1275 1276
    if (detectionDockWidget)
    {
pixhawk's avatar
pixhawk committed
1277 1278
        addDockWidget(Qt::RightDockWidgetArea, detectionDockWidget);
        detectionDockWidget->show();
1279
    }
1280 1281

    // LINE CHART
1282 1283 1284 1285 1286 1287 1288 1289 1290
    if (linechartWidget)
    {
        QStackedWidget *centerStack = dynamic_cast<QStackedWidget*>(centralWidget());
        if (centerStack)
        {
            linechartWidget->setActive(true);
            centerStack->setCurrentWidget(linechartWidget);
        }
    }
1291 1292

    // ONBOARD PARAMETERS
1293 1294 1295 1296 1297
    if (parametersDockWidget)
    {
        addDockWidget(Qt::RightDockWidgetArea, parametersDockWidget);
        parametersDockWidget->show();
    }
1298 1299

    this->show();
1300 1301
}

pixhawk's avatar
pixhawk committed
1302
void MainWindow::loadWidgets()
pixhawk's avatar
pixhawk committed
1303
{
1304 1305
    //loadOperatorView();
    loadEngineerView();
pixhawk's avatar
pixhawk committed
1306 1307
    //loadPilotView();
}