mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-10 20:52:11 +01:00
135 lines
4.4 KiB
C++
135 lines
4.4 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file fixedwingpage.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
* @addtogroup
|
|
* @{
|
|
* @addtogroup FixedWingPage
|
|
* @{
|
|
* @brief
|
|
*****************************************************************************/
|
|
/*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "airspeedpage.h"
|
|
#include "ui_airspeed.h"
|
|
#include "setupwizard.h"
|
|
|
|
AirSpeedPage::AirSpeedPage(SetupWizard *wizard, QWidget *parent) :
|
|
AbstractWizardPage(wizard, parent),
|
|
ui(new Ui::AirSpeedPage)
|
|
{
|
|
ui->setupUi(this);
|
|
QSvgRenderer *renderer = new QSvgRenderer();
|
|
renderer->load(QString(":/configgadget/images/fixedwing-shapes.svg"));
|
|
m_airspeedPic = new QGraphicsSvgItem();
|
|
m_airspeedPic->setSharedRenderer(renderer);
|
|
QGraphicsScene *scene = new QGraphicsScene(this);
|
|
scene->addItem(m_airspeedPic);
|
|
ui->typeGraphicsView->setScene(scene);
|
|
|
|
setupAirSpeedPageTypesCombo();
|
|
|
|
// Default to Software Estimation
|
|
connect(ui->typeCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(updateImageAndDescription()));
|
|
ui->typeCombo->setCurrentIndex(0);
|
|
}
|
|
|
|
AirSpeedPage::~AirSpeedPage()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void AirSpeedPage::initializePage()
|
|
{
|
|
updateAvailableTypes();
|
|
updateImageAndDescription();
|
|
}
|
|
|
|
// TODO
|
|
bool AirSpeedPage::validatePage()
|
|
{
|
|
SetupWizard::VEHICLE_SUB_TYPE type = (SetupWizard::VEHICLE_SUB_TYPE)ui->typeCombo->itemData(ui->typeCombo->currentIndex()).toInt();
|
|
|
|
getWizard()->setVehicleSubType(type);
|
|
return true;
|
|
}
|
|
|
|
void AirSpeedPage::fitInView()
|
|
{
|
|
if (m_airspeedPic) {
|
|
ui->typeGraphicsView->setSceneRect(m_airspeedPic->boundingRect());
|
|
ui->typeGraphicsView->fitInView(m_airspeedPic, Qt::KeepAspectRatio);
|
|
}
|
|
}
|
|
|
|
void AirSpeedPage::resizeEvent(QResizeEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
fitInView();
|
|
}
|
|
|
|
void AirSpeedPage::showEvent(QShowEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
fitInView();
|
|
}
|
|
|
|
// TODO
|
|
void AirSpeedPage::setupAirSpeedPageTypesCombo()
|
|
{
|
|
ui->typeCombo->addItem(tr("Aileron Dual Servos"), SetupWizard::FIXED_WING_DUAL_AILERON);
|
|
m_descriptions << tr("This setup expects a traditional airframe using two independent aileron servos on their own channel (not connected by Y adapter) plus an elevator and a rudder. ");
|
|
|
|
ui->typeCombo->addItem(tr("Aileron Single Servo"), SetupWizard::FIXED_WING_AILERON);
|
|
m_descriptions << tr("This setup expects a traditional airframe using a single alieron servo or two servos connected by a Y adapter plus an elevator and a rudder. ");
|
|
|
|
ui->typeCombo->addItem(tr("Elevon"), SetupWizard::FIXED_WING_ELEVON);
|
|
m_descriptions << tr("This setup currently expects a flying-wing setup, an elevon plus rudder setup is not yet supported. Setup should include only two elevons, and should explicitly not include a rudder.");
|
|
}
|
|
|
|
void AirSpeedPage::updateAvailableTypes()
|
|
{}
|
|
|
|
// TODO
|
|
void AirSpeedPage::updateImageAndDescription()
|
|
{
|
|
SetupWizard::VEHICLE_SUB_TYPE type = (SetupWizard::VEHICLE_SUB_TYPE)ui->typeCombo->itemData(ui->typeCombo->currentIndex()).toInt();
|
|
QString elementId = "";
|
|
QString description = m_descriptions.at(ui->typeCombo->currentIndex());
|
|
|
|
switch (type) {
|
|
case SetupWizard::FIXED_WING_DUAL_AILERON:
|
|
elementId = "aileron";
|
|
break;
|
|
case SetupWizard::FIXED_WING_AILERON:
|
|
elementId = "aileron-single";
|
|
break;
|
|
case SetupWizard::FIXED_WING_ELEVON:
|
|
elementId = "elevon";
|
|
break;
|
|
default:
|
|
elementId = "";
|
|
break;
|
|
}
|
|
m_airspeedPic->setElementId(elementId);
|
|
ui->typeGraphicsView->setSceneRect(m_airspeedPic->boundingRect());
|
|
ui->typeGraphicsView->fitInView(m_airspeedPic, Qt::KeepAspectRatio);
|
|
|
|
ui->typeDescription->setText(description);
|
|
}
|