SetupView.cc 8.17 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 26 27 28 29 30
/*=====================================================================
 
 QGroundControl Open Source Ground Control Station
 
 (c) 2009 - 2014 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/>.
 
 ======================================================================*/

/// @file
///     @author Don Gagne <don@thegagnes.com>

#include "SetupView.h"
#include "ui_SetupView.h"

#include "UASManager.h"
31
#include "AutoPilotPluginManager.h"
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
#include "VehicleComponent.h"
#include "VehicleComponentButton.h"
#include "SummaryPage.h"
#include "PX4FirmwareUpgrade.h"

#
#include <QQmlError>
#include <QQmlContext>
#include <QDebug>

SetupView::SetupView(QWidget* parent) :
    QWidget(parent),
    _uasCurrent(NULL),
    _setupWidget(NULL),
    _parameterWidget(NULL),
    _initComplete(false),
    _ui(new Ui::SetupView)
{
    _ui->setupUi(this);
    
    bool fSucceeded = connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(_setActiveUAS(UASInterface*)));
    Q_UNUSED(fSucceeded);
    Q_ASSERT(fSucceeded);
    
    connect(_ui->firmwareButton, &QPushButton::clicked, this, &SetupView::_firmwareButtonClicked);
    connect(_ui->summaryButton, &QPushButton::clicked, this, &SetupView::_summaryButtonClicked);
    
    // Summary button is not shown until we have parameters ready
    _ui->summaryButton->setVisible(false);
    
    // We show firmware upgrade until we get parameters
    _firmwareButtonClicked();
}

SetupView::~SetupView()
{
    delete _ui;
}

void SetupView::_setActiveUAS(UASInterface* uas)
{
    if (_uasCurrent) {
        disconnect(_uasCurrent->getParamManager(), SIGNAL(parameterListUpToDate()), this, SLOT(_parametersReady()));
    }
    
    // Clear all UI and fall back to Firmware ui since that is the only thing available when no UAS
    _clearWidgets();
    _clearComponentButtons();
    _ui->summaryButton->setVisible(false);
    _components.clear();
    _firmwareButtonClicked();
    
    _uasCurrent = uas;
    
    if (_uasCurrent) {
        connect(_uasCurrent, &UASInterface::connected, this, &SetupView::_uasConnected);
        connect(_uasCurrent, &UASInterface::disconnected, this, &SetupView::_uasDisconnected);
        
        bool fSucceeded = connect(_uasCurrent->getParamManager(), SIGNAL(parameterListUpToDate()), this, SLOT(_parametersReady()));
        Q_ASSERT(fSucceeded);
        Q_UNUSED(fSucceeded);
        if (_uasCurrent->getParamManager()->parametersReady()) {
            _parametersReady();
        }
    }
}

/// @brief Removes and deletes both the setup and parameter widgets from the tab view.
void SetupView::_clearWidgets(void)
{
    if (_setupWidget) {
        _ui->setupLayout->removeWidget(_setupWidget);
        delete _setupWidget;
        _setupWidget = NULL;
    }
    
    if (_parameterWidget) {
        _ui->setupLayout->removeWidget(_parameterWidget);
        delete _parameterWidget;
        _parameterWidget = NULL;
    }
}

/// @brief Removes and deletes all vehicle component setup buttons from the view.
void SetupView::_clearComponentButtons(void)
{
    QLayoutItem* item;
    while ((item = _ui->componentButtonLayout->itemAt(0))) {
        VehicleComponentButton* componentButton = dynamic_cast<VehicleComponentButton*>(item->widget());
Don Gagne's avatar
Don Gagne committed
121
        // Make sure this is really a VehicleComponentButton. If it isn't the UI has changed but the code hasn't.
122
        Q_ASSERT(componentButton);
Don Gagne's avatar
Don Gagne committed
123
        Q_UNUSED(componentButton);
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
        _ui->componentButtonLayout->removeWidget(item->widget());
    }
}

void SetupView::_summaryButtonClicked(void)
{
    // Clear previous tab widgets
    _clearWidgets();
    
    // Create new tab widgets

    _setupWidget = new SummaryPage(_components);
    Q_CHECK_PTR(_setupWidget);
    _ui->setupLayout->addWidget(_setupWidget);
    
    _parameterWidget = new ParameterEditor(_uasCurrent, QStringList(), this);
    _ui->parameterLayout->addWidget(_parameterWidget);

    _showBothTabs();
    _ui->tabWidget->setTabText(0, tr("Vehicle Summary"));
    _ui->tabWidget->setTabText(1, tr("All Parameters"));
    
    _uncheckAllButtons();
    _ui->summaryButton->setChecked(true);
}

void SetupView::_firmwareButtonClicked(void)
{
    // Clear previous tab widgets
    _clearWidgets();
    
    // Create new tab widgets
    
    _setupWidget = new PX4FirmwareUpgrade(this);
    Q_CHECK_PTR(_setupWidget);
    _ui->setupLayout->addWidget(_setupWidget);
    
    _showOnlySetupTab();
    _ui->tabWidget->setTabEnabled(1, false);
    _ui->tabWidget->setTabText(0, tr("Firmware Upgrade"));

    _uncheckAllButtons();
    _ui->firmwareButton->setChecked(true);
}

void SetupView::_componentButtonClicked(void)
{
    // Clear previous tab widgets
    _clearWidgets();
    
    // Create new tab widgets
    
    VehicleComponentButton* componentButton = dynamic_cast<VehicleComponentButton*>(sender());
    Q_ASSERT(componentButton);
    
    VehicleComponent* component = componentButton->component();
    Q_ASSERT(component);
    
    _setupWidget = component->setupWidget();
    Q_ASSERT(_setupWidget);
    _ui->setupLayout->addWidget(_setupWidget);
    
    _parameterWidget = new ParameterEditor(_uasCurrent, component->paramFilterList(), this);
    _ui->parameterLayout->addWidget(_parameterWidget);
    
    _showBothTabs();
    _ui->tabWidget->setTabText(0, tr("%1 Setup").arg(component->name()));
    _ui->tabWidget->setTabText(1, tr("%1 Parameters").arg(component->name()));

    _uncheckAllButtons();
    componentButton->setChecked(true);
}

void SetupView::_parametersReady(void)
{
    // When parameters become ready for the first time, setup the rest of the ui.
    
    if (_initComplete) {
        return;
    }
    
    _initComplete = true;
    
    disconnect(_uasCurrent->getParamManager(), SIGNAL(parameterListUpToDate()), this, SLOT(_parametersReady()));
    
    _ui->summaryButton->setVisible(true);
    
211
    _components = AutoPilotPluginManager::instance()->getInstanceForAutoPilotPlugin(_uasCurrent)->getVehicleComponents();
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
    
    foreach(VehicleComponent* component, _components) {
        VehicleComponentButton* button = new VehicleComponentButton(component, _ui->navBarWidget);
        
        button->setCheckable(true);
        
        button->setObjectName(component->name() + "Button");
        button->setText(component->name());
        
        QIcon icon;
        icon.addFile(component->icon());
        button->setIcon(icon);
        button->setIconSize(_ui->firmwareButton->iconSize());
        
        connect(button, &VehicleComponentButton::clicked, this, &SetupView::_componentButtonClicked);
        
        _ui->componentButtonLayout->addWidget(button);
    }
    
    _summaryButtonClicked();
}

void SetupView::_showOnlySetupTab(void)
{
    _ui->tabWidget->setCurrentIndex(0);
    _ui->tabWidget->removeTab(1);
}

void SetupView::_showBothTabs(void)
{
    _ui->tabWidget->setCurrentIndex(0);
    if (_ui->tabWidget->count() == 1) {
        _ui->tabWidget->insertTab(1, _ui->parameterTab, QString());
    }
}

void SetupView::_uncheckAllButtons(void)
{
    _ui->firmwareButton->setChecked(false);
    _ui->summaryButton->setChecked(false);
    
    int i = 0;
    QLayoutItem* item;
    while ((item = _ui->componentButtonLayout->itemAt(i++))) {
        VehicleComponentButton* componentButton = dynamic_cast<VehicleComponentButton*>(item->widget());
        if (componentButton != NULL) {
            componentButton->setChecked(false);
        }
    }
}

void SetupView::_uasConnected(void)
{
    qDebug() << "UAS connected";
    // FIXME: We should re-connect the UI
}

void SetupView::_uasDisconnected(void)
{
    qDebug() << "UAS disconnected";
    // FIXME: We should disconnect the UI
}