QGCToolBar.cc 27.6 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 24 25
/*=====================================================================

QGroundControl Open Source Ground Control Station

(c) 2009 - 2011 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/>.

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

#include <QToolButton>
#include <QLabel>
26
#include <QSpacerItem>
27 28
#include <QSerialPortInfo>

29
#include "SettingsDialog.h"
30 31
#include "QGCToolBar.h"
#include "UASManager.h"
lm's avatar
lm committed
32
#include "MainWindow.h"
33
#include "QGCApplication.h"
34 35
#include "UASMessageView.h"
#include "UASMessageHandler.h"
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

// Label class that sends mouse hover events
class QCGHoverLabel : public QLabel
{
public:
    QCGHoverLabel(QGCToolBar* toolBar) : QLabel(toolBar)
    {
        _toolBar = toolBar;
    }
protected:
    void enterEvent(QEvent* event)
    {
        Q_UNUSED(event);
        _toolBar->enterMessageLabel();
    }
private:
    QGCToolBar* _toolBar;
};
54 55 56

QGCToolBar::QGCToolBar(QWidget *parent) :
    QToolBar(parent),
57
    mav(NULL),
lm's avatar
lm committed
58 59 60 61
    changed(true),
    batteryPercent(0),
    batteryVoltage(0),
    wpId(0),
62
    wpDistance(0),
63
    altitudeRel(0),
64
    systemArmed(false),
65
    currentLink(NULL),
66 67 68 69
    firstAction(NULL),
    _linkMgr(LinkManager::instance()),
    _linkCombo(NULL),
    _linkComboAction(NULL),
70
    _rollDownMessages(NULL),
71 72
    _linksConnected(false),
    _linkSelected(false)
73
{
74
    setObjectName("QGCToolBar");
75
    setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
76 77 78
    connect(LinkManager::instance(), &LinkManager::linkConnected,            this, &QGCToolBar::_linkConnected);
    connect(LinkManager::instance(), &LinkManager::linkDisconnected,         this, &QGCToolBar::_linkDisconnected);
    connect(LinkManager::instance(), &LinkManager::linkConfigurationChanged, this, &QGCToolBar::_updateConfigurations);
79 80
}

81 82 83 84 85 86 87 88
void QGCToolBar::heartbeatTimeout(bool timeout, unsigned int ms)
{
    // set timeout label visible
    if (timeout)
    {
        // Alternate colors to increase visibility
        if ((ms / 1000) % 2 == 0)
        {
89
            toolBarTimeoutLabel->setStyleSheet(QString("QLabel {color: #000; background-color: #FF0037;}"));
90 91 92
        }
        else
        {
93
            toolBarTimeoutLabel->setStyleSheet(QString("QLabel {color: #FFF; background-color: #6B0017;}"));
94 95
        }
        toolBarTimeoutLabel->setText(tr("CONNECTION LOST: %1 s").arg((ms / 1000.0f), 2, 'f', 1, ' '));
96
        toolBarTimeoutAction->setVisible(true);
97
        toolBarMessageAction->setVisible(false);
Lorenz Meier's avatar
Lorenz Meier committed
98
        toolBarBatteryBarAction->setVisible(false);
99 100 101 102
    }
    else
    {
        // Check if loss text is present, reset once
103
        if (toolBarTimeoutAction->isVisible())
104
        {
105
            toolBarTimeoutAction->setVisible(false);
106
            toolBarMessageAction->setVisible(true);
Lorenz Meier's avatar
Lorenz Meier committed
107
            toolBarBatteryBarAction->setVisible(true);
108 109 110
        }
    }
}
lm's avatar
lm committed
111

112 113
void QGCToolBar::createUI()
{
114 115 116 117 118 119
    // CREATE TOOLBAR ITEMS
    // Add internal actions
    // Add MAV widget
    symbolLabel = new QLabel(this);
    addWidget(symbolLabel);

120
    toolBarNameLabel = new QLabel(this);
121 122
    toolBarNameLabel->setToolTip(tr("Currently controlled vehicle"));
    toolBarNameLabel->setAlignment(Qt::AlignCenter);
123
    toolBarNameLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
124 125
    addWidget(toolBarNameLabel);

126
    toolBarTimeoutLabel = new QLabel(this);
127 128
    toolBarTimeoutLabel->setToolTip(tr("System timed out, interval since last message"));
    toolBarTimeoutLabel->setAlignment(Qt::AlignCenter);
129
    toolBarTimeoutLabel->setObjectName("toolBarTimeoutLabel");
130 131
    toolBarTimeoutLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
    toolBarTimeoutAction = addWidget(toolBarTimeoutLabel);
132

133
    toolBarSafetyLabel = new QLabel(this);
134 135 136 137
    toolBarSafetyLabel->setToolTip(tr("Vehicle safety state"));
    toolBarSafetyLabel->setAlignment(Qt::AlignCenter);
    addWidget(toolBarSafetyLabel);

138
    toolBarModeLabel = new QLabel(this);
139
    toolBarModeLabel->setToolTip(tr("Vehicle mode"));
140
    toolBarModeLabel->setObjectName("toolBarModeLabel");
141 142 143
    toolBarModeLabel->setAlignment(Qt::AlignCenter);
    addWidget(toolBarModeLabel);

144 145 146 147 148
//    toolBarStateLabel = new QLabel(this);
//    toolBarStateLabel->setToolTip(tr("Vehicle state"));
//    toolBarStateLabel->setObjectName("toolBarStateLabel");
//    toolBarStateLabel->setAlignment(Qt::AlignCenter);
//    addWidget(toolBarStateLabel);
149 150 151 152 153 154 155 156

    toolBarBatteryBar = new QProgressBar(this);
    toolBarBatteryBar->setMinimum(0);
    toolBarBatteryBar->setMaximum(100);
    toolBarBatteryBar->setMinimumWidth(20);
    toolBarBatteryBar->setMaximumWidth(100);
    toolBarBatteryBar->setToolTip(tr("Battery charge level"));
    toolBarBatteryBar->setObjectName("toolBarBatteryBar");
157
    toolBarBatteryBar->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::MinimumExpanding);
Lorenz Meier's avatar
Lorenz Meier committed
158
    toolBarBatteryBarAction = addWidget(toolBarBatteryBar);
159

160
    toolBarBatteryVoltageLabel = new QLabel(this);
161
    toolBarBatteryVoltageLabel->setToolTip(tr("Battery voltage"));
162
    toolBarBatteryVoltageLabel->setObjectName("toolBarBatteryVoltageLabel");
163
    toolBarBatteryVoltageLabel->setAlignment(Qt::AlignCenter);
Lorenz Meier's avatar
Lorenz Meier committed
164
    toolBarBatteryVoltageAction = addWidget(toolBarBatteryVoltageLabel);
165

166
    toolBarWpLabel = new QLabel(this);
167
    toolBarWpLabel->setToolTip(tr("Current waypoint"));
168
    toolBarWpLabel->setObjectName("toolBarWpLabel");
169
    toolBarWpLabel->setAlignment(Qt::AlignCenter);
170
    toolBarWpAction = addWidget(toolBarWpLabel);
171

172
    toolBarMessageLabel = new QCGHoverLabel(this);
173
    toolBarMessageLabel->setToolTip(tr("Most recent system message"));
174
    toolBarMessageLabel->setObjectName("toolBarMessageLabel");
175
    toolBarMessageAction = addWidget(toolBarMessageLabel);
176 177 178 179 180

    QWidget* spacer = new QWidget();
    spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
    addWidget(spacer);

181
    // Links to connect to
182 183 184 185
    _linkCombo = new QComboBox(this);
    connect(_linkCombo, SIGNAL(activated(int)), SLOT(_linkComboActivated(int)));
    _linkCombo->setToolTip(tr("Choose the link to use"));
    _linkCombo->setEnabled(true);
186
    _linkCombo->setMinimumWidth(160);
187
    _linkComboAction = addWidget(_linkCombo);
188
    _updateConfigurations();
189 190 191 192 193

    _connectButton = new QPushButton(tr("Connect"), this);
    _connectButton->setObjectName("connectButton");
    addWidget(_connectButton);
    connect(_connectButton, &QPushButton::clicked, this, &QGCToolBar::_connectButtonClicked);
194

195 196
    resetToolbarUI();

lm's avatar
lm committed
197 198
    // DONE INITIALIZING BUTTONS

199 200 201
    // Set the toolbar to be updated every 2s
    connect(&updateViewTimer, SIGNAL(timeout()), this, SLOT(updateView()));

202
    // Configure the toolbar for the current default UAS
203 204
    setActiveUAS(UASManager::instance()->getActiveUAS());
    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(setActiveUAS(UASInterface*)));
lm's avatar
lm committed
205

206 207 208
    toolBarMessageAction->setVisible(false);
    toolBarBatteryBarAction->setVisible(false);

Lorenz Meier's avatar
Lorenz Meier committed
209
    changed = false;
210 211
}

212 213 214 215 216 217 218 219 220
/**
 * Reset all the labels and stuff for the toolbar to a pristine state. Done at startup after
 * all UI has been created and also when the last UAS has been deleted.
 **/
void QGCToolBar::resetToolbarUI()
{
    toolBarNameLabel->setText("------");
    toolBarNameLabel->setStyleSheet("");
    toolBarTimeoutLabel->setText(tr("UNCONNECTED"));
221
    //toolBarTimeoutLabel->show();
222 223
    toolBarSafetyLabel->setText("----");
    toolBarModeLabel->setText("------");
224
//    toolBarStateLabel->setText("------");
225 226 227 228 229
    toolBarBatteryBar->setValue(0);
    toolBarBatteryBar->setDisabled(true);
    toolBarBatteryVoltageLabel->setText("xx.x V");
    toolBarWpLabel->setText("WP--");
    toolBarMessageLabel->clear();
230 231
    lastSystemMessage = "";
    lastSystemMessageTimeMs = 0;
232 233
    symbolLabel->setStyleSheet("");
    symbolLabel->clear();
234 235
    toolBarMessageAction->setVisible(false);
    toolBarBatteryBarAction->setVisible(false);
236 237
}

Lorenz Meier's avatar
Lorenz Meier committed
238
void QGCToolBar::setPerspectiveChangeActions(const QList<QAction*> &actions)
239
{
Lorenz Meier's avatar
Lorenz Meier committed
240 241
    if (actions.count() > 1)
    {
242
        group = new QButtonGroup(this);
Lorenz Meier's avatar
Lorenz Meier committed
243 244
        group->setExclusive(true);

245
        // Add the first button.
Lorenz Meier's avatar
Lorenz Meier committed
246
        QToolButton *first = new QToolButton(this);
247
        //first->setIcon(actions.first()->icon());
Lorenz Meier's avatar
Lorenz Meier committed
248 249 250 251
        first->setText(actions.first()->text());
        first->setToolTip(actions.first()->toolTip());
        first->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
        first->setCheckable(true);
252

Lorenz Meier's avatar
Lorenz Meier committed
253
        connect(first, SIGNAL(clicked(bool)), actions.first(), SIGNAL(triggered(bool)));
254
        connect(actions.first(),SIGNAL(triggered(bool)),first,SLOT(setChecked(bool)));
255

256
        first->setObjectName("firstAction");
257 258

        //first->setStyleSheet("QToolButton { min-height: 24px; max-height: 24px; min-width: 60px; color: #222222; background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #A2A3A4, stop: 1 #B6B7B8); margin-left: 8px; margin-right: 0px; padding-left: 4px; padding-right: 8px; border-radius: 0px; border : 0px solid blue; border-bottom-left-radius: 6px; border-top-left-radius: 6px; border-left: 1px solid #484848; border-top: 1px solid #484848; border-bottom: 1px solid #484848; } QToolButton:checked { background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #555555, stop: 1 #787878); color: #DDDDDD; }");
Lorenz Meier's avatar
Lorenz Meier committed
259 260 261
        addWidget(first);
        group->addButton(first);

262
        // Add all the middle buttons.
263
        for (int i = 1; i < actions.count(); i++)
Lorenz Meier's avatar
Lorenz Meier committed
264 265
        {
            QToolButton *btn = new QToolButton(this);
266
            //btn->setIcon(actions.at(i)->icon());
Lorenz Meier's avatar
Lorenz Meier committed
267 268 269 270 271
            btn->setText(actions.at(i)->text());
            btn->setToolTip(actions.at(i)->toolTip());
            btn->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
            btn->setCheckable(true);
            connect(btn, SIGNAL(clicked(bool)), actions.at(i), SIGNAL(triggered(bool)));
272
            connect(actions.at(i),SIGNAL(triggered(bool)),btn,SLOT(setChecked(bool)));
Lorenz Meier's avatar
Lorenz Meier committed
273 274 275 276 277
            addWidget(btn);
            group->addButton(btn);
        }

        // Add last button
278
        advancedButton = new QToolButton(this);
279
        advancedButton->setIcon(QIcon(":/files/images/apps/utilities-system-monitor.svg"));
280
        advancedButton->setText(tr("More"));
281 282
        advancedButton->setToolTip(tr("Options for advanced users"));
        advancedButton->setCheckable(true);
283
        advancedButton->setObjectName("advancedButton");
284
        advancedButton->setPopupMode(QToolButton::InstantPopup);
285
        advancedButton->setToolButtonStyle(Qt::ToolButtonTextOnly);
286 287
        addWidget(advancedButton);
        group->addButton(advancedButton);
288
    } else {
Lorenz Meier's avatar
Lorenz Meier committed
289
        qDebug() << __FILE__ << __LINE__ << "Not enough perspective change actions provided";
290
    }
Lorenz Meier's avatar
Lorenz Meier committed
291

292
    // Add the "rest"
Lorenz Meier's avatar
Lorenz Meier committed
293
    createUI();
294 295
}

296 297 298 299 300 301 302 303 304 305 306 307 308
void QGCToolBar::setPerspectiveChangeAdvancedActions(const QList<QAction*> &actions)
{
    if (actions.count() > 1)
    {
        QMenu *menu = new QMenu(advancedButton);

        for (int i = 0; i < actions.count(); i++)
        {

            menu->addAction(actions.at(i));
        }

        advancedButton->setMenu(menu);
309
        connect(menu, SIGNAL(triggered(QAction*)), this, SLOT(advancedActivityTriggered(QAction*)));
310 311 312 313 314 315

    } else {
        qDebug() << __FILE__ << __LINE__ << "Not enough perspective change actions provided";
    }
}

316 317 318 319 320 321
void QGCToolBar::advancedActivityTriggered(QAction* action)
{
    if (action->isChecked())
        advancedButton->setChecked(true);
}

322 323
void QGCToolBar::setActiveUAS(UASInterface* active)
{
324
    // Do nothing if system is the same
325 326
    if (mav == active || active == NULL)
        return;
327

328
    // If switching UASes, disconnect the only one.
329 330 331 332 333 334
    if (mav)
    {
        disconnect(mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(updateState(UASInterface*,QString,QString)));
        disconnect(mav, SIGNAL(modeChanged(int,QString,QString)), this, SLOT(updateMode(int,QString,QString)));
        disconnect(mav, SIGNAL(nameChanged(QString)), this, SLOT(updateName(QString)));
        disconnect(mav, SIGNAL(systemTypeSet(UASInterface*,uint)), this, SLOT(setSystemType(UASInterface*,uint)));
LM's avatar
LM committed
335
        disconnect(mav, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(receiveTextMessage(int,int,int,QString)));
dongfang's avatar
dongfang committed
336
        disconnect(mav, SIGNAL(batteryChanged(UASInterface*, double, double, double,int)), this, SLOT(updateBatteryRemaining(UASInterface*, double, double, double, int)));
337
        disconnect(mav, SIGNAL(armingChanged(bool)), this, SLOT(updateArmingState(bool)));
338
        disconnect(mav, SIGNAL(heartbeatTimeout(bool, unsigned int)), this, SLOT(heartbeatTimeout(bool,unsigned int)));
339 340
        if (mav->getWaypointManager())
        {
341
            disconnect(mav->getWaypointManager(), SIGNAL(currentWaypointChanged(quint16)), this, SLOT(updateCurrentWaypoint(quint16)));
342 343
            disconnect(mav->getWaypointManager(), SIGNAL(waypointDistanceChanged(double)), this, SLOT(updateWaypointDistance(double)));
        }
344
    }
345 346 347 348 349
    else
    {
        // Only update the UI once a UAS has been selected.
        updateViewTimer.start(2000);
    }
350 351 352

    // Connect new system
    mav = active;
353
    if (mav)
354
    {
355 356 357 358 359
        connect(mav, SIGNAL(statusChanged(UASInterface*,QString,QString)), this, SLOT(updateState(UASInterface*, QString,QString)));
        connect(mav, SIGNAL(modeChanged(int,QString,QString)), this, SLOT(updateMode(int,QString,QString)));
        connect(mav, SIGNAL(nameChanged(QString)), this, SLOT(updateName(QString)));
        connect(mav, SIGNAL(systemTypeSet(UASInterface*,uint)), this, SLOT(setSystemType(UASInterface*,uint)));
        connect(mav, SIGNAL(textMessageReceived(int,int,int,QString)), this, SLOT(receiveTextMessage(int,int,int,QString)));
360
        connect(mav, SIGNAL(batteryChanged(UASInterface*,double,double,double,int)), this, SLOT(updateBatteryRemaining(UASInterface*,double,double,double,int)));
361 362 363 364 365 366 367
        connect(mav, SIGNAL(armingChanged(bool)), this, SLOT(updateArmingState(bool)));
        connect(mav, SIGNAL(heartbeatTimeout(bool, unsigned int)), this, SLOT(heartbeatTimeout(bool,unsigned int)));
        if (mav->getWaypointManager())
        {
            connect(mav->getWaypointManager(), SIGNAL(currentWaypointChanged(quint16)), this, SLOT(updateCurrentWaypoint(quint16)));
            connect(mav->getWaypointManager(), SIGNAL(waypointDistanceChanged(double)), this, SLOT(updateWaypointDistance(double)));
        }
368

369 370 371
        // Update all values once
        systemName = mav->getUASName();
        systemArmed = mav->isArmed();
372
        toolBarNameLabel->setText(mav->getUASName().replace("MAV", ""));
373 374
        toolBarNameLabel->setStyleSheet(QString("QLabel {color: %1;}").arg(mav->getColor().name()));
        symbolLabel->setStyleSheet(QString("QWidget {background-color: %1;}").arg(mav->getColor().name()));
375 376 377 378 379
        QString shortMode = mav->getShortMode();
        shortMode = shortMode.replace("D|", "");
        shortMode = shortMode.replace("A|", "");
        toolBarModeLabel->setText(shortMode);
//        toolBarStateLabel->setText(mav->getShortState());
380 381 382
        toolBarTimeoutAction->setVisible(false);
        toolBarMessageLabel->clear();
        lastSystemMessageTimeMs = 0;
383 384 385 386 387
        toolBarBatteryBar->setEnabled(true);
        setSystemType(mav, mav->getSystemType());
    }
    else
    {
388 389 390 391 392
        updateViewTimer.stop();
        resetToolbarUI();
    }
}

393 394 395 396
void QGCToolBar::updateArmingState(bool armed)
{
    systemArmed = armed;
    changed = true;
Lorenz Meier's avatar
Lorenz Meier committed
397 398
    /* important, immediately update */
    updateView();
399 400
}

lm's avatar
lm committed
401 402 403
void QGCToolBar::updateView()
{
    if (!changed) return;
404
    if (toolBarWpAction->isVisible())
405 406
        toolBarWpLabel->setText(tr("WP%1").arg(wpId));

407
    if (toolBarBatteryBarAction->isVisible()) {
408 409 410
        toolBarBatteryBar->setValue(batteryPercent);

        if (batteryPercent < 30 && toolBarBatteryBar->value() >= 30) {
411 412 413
            toolBarBatteryBar->setStyleSheet(qgcApp()->styleIsDark() ?
                                             "QProgressBar {color: #000} QProgressBar QProgressBar::chunk { background-color: #0F0}" :
                                             "QProgressBar {color: #FFF} QProgressBar::chunk { background-color: #008000}");
414
        } else if (batteryPercent >= 30 && toolBarBatteryBar->value() < 30){
415 416 417
            toolBarBatteryBar->setStyleSheet(qgcApp()->styleIsDark() ?
                                             "QProgressBar {color: #000} QProgressBar QProgressBar::chunk { background-color: #FF0}" :
                                             "QProgressBar {color: #FFF} QProgressBar::chunk { background-color: #808000}");
418
        }
419

420 421
    }
    if (toolBarBatteryVoltageLabel->isVisible()) {
422
    toolBarBatteryVoltageLabel->setText(tr("%1 V").arg(batteryVoltage, 4, 'f', 1, ' '));
Lorenz Meier's avatar
Lorenz Meier committed
423 424
    }

425 426

//    toolBarStateLabel->setText(QString("%1").arg(state));
427 428 429
    if (mode.size() > 0) {
        toolBarModeLabel->setText(QString("%1").arg(mode));
    }
lm's avatar
lm committed
430
    toolBarNameLabel->setText(systemName);
431
    // expire after 15 seconds
432

433
    if (toolBarMessageAction->isVisible()) {
434 435 436
        if (QGC::groundTimeMilliseconds() - lastSystemMessageTimeMs < 15000) {
            toolBarMessageLabel->setText(QString("%1").arg(lastSystemMessage));
        } else {
437 438 439 440 441
            if(UASMessageHandler::instance()->messages().count()) {
                toolBarMessageLabel->setText(tr("Messages"));
            } else {
                toolBarMessageLabel->setText(tr("No Messages"));
            }
442
        }
443
    }
444

445
    // Display the system armed state with a red-on-yellow background if armed or green text if safe.
446 447
    if (systemArmed)
    {
448
        toolBarSafetyLabel->setStyleSheet(QString("QLabel {color: %1; background-color: %2; font-size: 15pt;}").arg(QGC::colorRed.name()).arg(QGC::colorYellow.name()));
449 450 451 452
        toolBarSafetyLabel->setText(tr("ARMED"));
    }
    else
    {
453 454 455
        toolBarSafetyLabel->setStyleSheet(qgcApp()->styleIsDark() ?
                                          "QLabel {color: #14C814; font-size: 15pt;}" :
                                          "QLabel {color: #0D820D; font-size: 15pt;}");
Lorenz Meier's avatar
Lorenz Meier committed
456
        toolBarSafetyLabel->setText(tr("DISARMED"));
457 458
    }

lm's avatar
lm committed
459
    changed = false;
lm's avatar
lm committed
460 461
}

462 463
void QGCToolBar::updateWaypointDistance(double distance)
{
lm's avatar
lm committed
464 465
    if (wpDistance != distance) changed = true;
    wpDistance = distance;
466 467 468 469
}

void QGCToolBar::updateCurrentWaypoint(quint16 id)
{
lm's avatar
lm committed
470
    if (wpId != id) changed = true;
lm's avatar
lm committed
471
    wpId = id;
472 473
}

dongfang's avatar
dongfang committed
474
void QGCToolBar::updateBatteryRemaining(UASInterface* uas, double voltage, double current, double percent, int seconds)
LM's avatar
LM committed
475
{
476 477
    Q_UNUSED(uas);
    Q_UNUSED(seconds);
478
    Q_UNUSED(current);
479

lm's avatar
lm committed
480
    if (batteryPercent != percent || batteryVoltage != voltage) changed = true;
lm's avatar
lm committed
481 482
    batteryPercent = percent;
    batteryVoltage = voltage;
LM's avatar
LM committed
483 484
}

485 486 487 488
void QGCToolBar::updateState(UASInterface* system, QString name, QString description)
{
    Q_UNUSED(system);
    Q_UNUSED(description);
lm's avatar
lm committed
489
    if (state != name) changed = true;
lm's avatar
lm committed
490
    state = name;
Lorenz Meier's avatar
Lorenz Meier committed
491 492
    /* important, immediately update */
    updateView();
493 494 495 496 497 498
}

void QGCToolBar::updateMode(int system, QString name, QString description)
{
    Q_UNUSED(system);
    Q_UNUSED(description);
499 500 501 502 503 504 505 506 507 508
    if (name.size() == 0) {
        qDebug() << "EMPTY MODE, RETURN";
    }

    QString shortMode = name;
    shortMode = shortMode.replace("D|", "");
    shortMode = shortMode.replace("A|", "");

    if (mode != shortMode) changed = true;
    mode = shortMode;
Lorenz Meier's avatar
Lorenz Meier committed
509 510
    /* important, immediately update */
    updateView();
511 512 513 514
}

void QGCToolBar::updateName(const QString& name)
{
Lorenz Meier's avatar
Lorenz Meier committed
515 516 517 518
    if (systemName != name)
    {
        changed = true;
    }
lm's avatar
lm committed
519
    systemName = name;
520 521 522 523 524 525 526 527 528 529 530 531
}

/**
 * The current system type is represented through the system icon.
 *
 * @param uas Source system, has to be the same as this->uas
 * @param systemType type ID, following the MAVLink system type conventions
 * @see http://pixhawk.ethz.ch/software/mavlink
 */
void QGCToolBar::setSystemType(UASInterface* uas, unsigned int systemType)
{
    Q_UNUSED(uas);
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
    QPixmap newPixmap;
    switch (systemType) {
    case MAV_TYPE_GENERIC:
        newPixmap = QPixmap(":/files/images/mavs/generic.svg");
        break;
    case MAV_TYPE_FIXED_WING:
        newPixmap = QPixmap(":/files/images/mavs/fixed-wing.svg");
        break;
    case MAV_TYPE_QUADROTOR:
        newPixmap = QPixmap(":/files/images/mavs/quadrotor.svg");
        break;
    case MAV_TYPE_COAXIAL:
        newPixmap = QPixmap(":/files/images/mavs/coaxial.svg");
        break;
    case MAV_TYPE_HELICOPTER:
        newPixmap = QPixmap(":/files/images/mavs/helicopter.svg");
        break;
    case MAV_TYPE_ANTENNA_TRACKER:
        newPixmap = QPixmap(":/files/images/mavs/antenna-tracker.svg");
        break;
    case MAV_TYPE_GCS:
        newPixmap = QPixmap(":files/images/mavs/groundstation.svg");
        break;
    case MAV_TYPE_AIRSHIP:
        newPixmap = QPixmap(":files/images/mavs/airship.svg");
        break;
    case MAV_TYPE_FREE_BALLOON:
        newPixmap = QPixmap(":files/images/mavs/free-balloon.svg");
        break;
    case MAV_TYPE_ROCKET:
        newPixmap = QPixmap(":files/images/mavs/rocket.svg");
        break;
    case MAV_TYPE_GROUND_ROVER:
        newPixmap = QPixmap(":files/images/mavs/ground-rover.svg");
        break;
    case MAV_TYPE_SURFACE_BOAT:
        newPixmap = QPixmap(":files/images/mavs/surface-boat.svg");
        break;
    case MAV_TYPE_SUBMARINE:
        newPixmap = QPixmap(":files/images/mavs/submarine.svg");
        break;
    case MAV_TYPE_HEXAROTOR:
        newPixmap = QPixmap(":files/images/mavs/hexarotor.svg");
        break;
    case MAV_TYPE_OCTOROTOR:
        newPixmap = QPixmap(":files/images/mavs/octorotor.svg");
        break;
    case MAV_TYPE_TRICOPTER:
        newPixmap = QPixmap(":files/images/mavs/tricopter.svg");
        break;
    case MAV_TYPE_FLAPPING_WING:
        newPixmap = QPixmap(":files/images/mavs/flapping-wing.svg");
        break;
    case MAV_TYPE_KITE:
        newPixmap = QPixmap(":files/images/mavs/kite.svg");
        break;
    default:
        newPixmap = QPixmap(":/files/images/mavs/unknown.svg");
        break;
    }
    symbolLabel->setPixmap(newPixmap.scaledToHeight(24));
593 594
}

LM's avatar
LM committed
595 596 597 598 599
void QGCToolBar::receiveTextMessage(int uasid, int componentid, int severity, QString text)
{
    Q_UNUSED(uasid);
    Q_UNUSED(componentid);
    Q_UNUSED(severity);
lm's avatar
lm committed
600
    if (lastSystemMessage != text) changed = true;
lm's avatar
lm committed
601
    lastSystemMessage = text;
602
    lastSystemMessageTimeMs = QGC::groundTimeMilliseconds();
LM's avatar
LM committed
603 604
}

605
void QGCToolBar::_linkConnected(LinkInterface* link)
606
{
607 608
    Q_UNUSED(link);
    _updateConnectButton();
609 610
}

611
void QGCToolBar::_linkDisconnected(LinkInterface* link)
612
{
613
    _updateConnectButton(link);
614 615
}

616
void QGCToolBar::_updateConnectButton(LinkInterface *disconnectedLink)
617
{
618 619 620 621 622
    QMenu* menu = new QMenu(this);
    // If there are multiple connected links add/update the connect button menu
    int connectedCount = 0;
    QList<LinkInterface*> links = _linkMgr->getLinks();
    foreach(LinkInterface* link, links) {
623
        if (disconnectedLink != link && link->isConnected()) {
624 625 626 627 628
            connectedCount++;
            QAction* action = menu->addAction(link->getName());
            action->setData(QVariant::fromValue((void*)link));
            connect(action, &QAction::triggered, this, &QGCToolBar::_disconnectFromMenu);
        }
629
    }
630 631 632 633 634
    // Remove old menu
    QMenu* oldMenu = _connectButton->menu();
    _connectButton->setMenu(NULL);
    if (oldMenu) {
        oldMenu->deleteLater();
635
    }
636 637 638 639 640 641 642 643 644 645 646
    // Add new menu if needed
    if (connectedCount > 1) {
        _connectButton->setMenu(menu);
    } else {
        delete menu;
    }
    _linksConnected = connectedCount != 0;
    _connectButton->setText(_linksConnected ? tr("Disconnect") : tr("Connect"));
    _linkComboAction->setVisible(!_linksConnected);
    toolBarMessageAction->setVisible(_linksConnected);
    toolBarWpAction->setVisible(_linksConnected);
647 648
}

649
void QGCToolBar::_connectButtonClicked(bool checked)
650
{
651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
    Q_UNUSED(checked);
    if (_linksConnected) {
        // Disconnect
        // Should be just one connected link, disconnect it
        int connectedCount = 0;
        LinkInterface* connectedLink = NULL;
        QList<LinkInterface*> links = _linkMgr->getLinks();
        foreach(LinkInterface* link, links) {
            if (link->isConnected()) {
                connectedCount++;
                connectedLink = link;
            }
        }
        Q_ASSERT(connectedCount == 1);
        Q_ASSERT(connectedLink);
666 667
        // TODO The link is "disconnected" but not deleted. On subsequent connections,
        // new links are created. Why's that?
668 669
        _linkMgr->disconnectLink(connectedLink);
    } else {
670 671
        // We don't want the combo box updating under our feet
        _linkMgr->suspendConfigurationUpdates(true);
672
        // Connect
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
        int valid = _linkCombo->currentData().toInt();
        // Is this a valid option?
        if(valid == 1) {
            // Get the configuration name
            QString confName = _linkCombo->currentText();
            // Create a link for it
            LinkInterface* link = _linkMgr->createLink(confName);
            if(link) {
                // Connect it
                _linkMgr->connectLink(link);
                // Save last used connection
                MainWindow::instance()->saveLastUsedConnection(confName);
            }
            _linkMgr->suspendConfigurationUpdates(false);
        // Else, it must be Manage Links
        } else if(valid == 0) {
            _linkMgr->suspendConfigurationUpdates(false);
            MainWindow::instance()->manageLinks();
691
        }
692 693 694
    }
}

695
void QGCToolBar::_disconnectFromMenu(bool checked)
696
{
697 698 699 700 701 702
    Q_UNUSED(checked);
    QAction* action = qobject_cast<QAction*>(sender());
    Q_ASSERT(action);
    LinkInterface* link = (LinkInterface*)(action->data().value<void *>());
    Q_ASSERT(link);
    _linkMgr->disconnectLink(link);
703 704
}

705
void QGCToolBar::_linkComboActivated(int index)
706
{
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
    int type = _linkCombo->itemData(index).toInt();
    // Check if we should "Manage Connections"
    if(type == 0) {
        MainWindow::instance()->manageLinks();
    } else {
        _linkSelected = true;
    }
}

void QGCToolBar::_updateConfigurations()
{
    bool resetSelected = false;
    QString selected = _linkCombo->currentText();
    _linkCombo->clear();
    _linkCombo->addItem("Manage Links", 0);
    QList<LinkConfiguration*> configs = LinkManager::instance()->getLinkConfigurationList();
    foreach(LinkConfiguration* conf, configs) {
        if(conf) {
            _linkCombo->addItem(conf->name(), 1);
            if(!_linkSelected && conf->isPreferred()) {
                selected = conf->name();
                resetSelected = true;
            }
        }
    }
    int index = _linkCombo->findText(selected);
    if(index >= 0) {
        _linkCombo->setCurrentIndex(index);
    }
    if(resetSelected) {
        _linkSelected = false;
    }
739
}
740 741 742 743 744 745

/**
 * @brief Mouse entered Message label area
 */
void QGCToolBar::enterMessageLabel()
{
dogmaphobic's avatar
dogmaphobic committed
746
    /*
747 748
    // If not already there and messages are actually present
    if(!_rollDownMessages && UASMessageHandler::instance()->messages().count())
749 750
    {
        QPoint p = toolBarMessageLabel->mapToGlobal(QPoint(0,0));
751
        _rollDownMessages = new UASMessageViewRollDown(MainWindow::instance(),this);
752 753
        _rollDownMessages->setAttribute(Qt::WA_DeleteOnClose);
        _rollDownMessages->move(mapFromGlobal(p));
754
        _rollDownMessages->setMinimumSize(360,200);
755 756
        _rollDownMessages->show();
    }
dogmaphobic's avatar
dogmaphobic committed
757
    */
758 759 760 761 762 763 764 765 766
}

/**
 * @brief Mouse left message drop down list area (and closed it)
 */
void QGCToolBar::leaveMessageView()
{
    _rollDownMessages = NULL;
}