2013-04-07 08:49:13 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file opmap_edit_waypoint_dialog.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup OPMapPlugin OpenPilot Map Plugin
|
|
|
|
* @{
|
2013-05-19 16:37:30 +02:00
|
|
|
* @brief The OpenPilot Map plugin
|
2013-04-07 08:49:13 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* 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 "opmap_edit_waypoint_dialog.h"
|
|
|
|
#include "ui_opmap_edit_waypoint_dialog.h"
|
|
|
|
#include "opmapcontrol/opmapcontrol.h"
|
|
|
|
#include "widgetdelegates.h"
|
|
|
|
// *********************************************************************
|
|
|
|
|
|
|
|
// constructor
|
2013-05-19 16:37:30 +02:00
|
|
|
opmap_edit_waypoint_dialog::opmap_edit_waypoint_dialog(QWidget *parent, QAbstractItemModel *model, QItemSelectionModel *selection) :
|
|
|
|
QWidget(parent, Qt::Window), model(model), itemSelection(selection),
|
2013-04-07 08:49:13 +02:00
|
|
|
ui(new Ui::opmap_edit_waypoint_dialog)
|
2013-05-19 16:37:30 +02:00
|
|
|
{
|
2013-04-07 08:49:13 +02:00
|
|
|
ui->setupUi(this);
|
2013-05-19 16:37:30 +02:00
|
|
|
connect(ui->checkBoxLocked, SIGNAL(toggled(bool)), this, SLOT(enableEditWidgets(bool)));
|
|
|
|
connect(ui->cbMode, SIGNAL(currentIndexChanged(int)), this, SLOT(setupModeWidgets()));
|
|
|
|
connect(ui->cbCondition, SIGNAL(currentIndexChanged(int)), this, SLOT(setupConditionWidgets()));
|
|
|
|
connect(ui->pushButtonCancel, SIGNAL(clicked()), this, SLOT(pushButtonCancel_clicked()));
|
|
|
|
MapDataDelegate::loadComboBox(ui->cbMode, flightDataModel::MODE);
|
|
|
|
MapDataDelegate::loadComboBox(ui->cbCondition, flightDataModel::CONDITION);
|
|
|
|
MapDataDelegate::loadComboBox(ui->cbCommand, flightDataModel::COMMAND);
|
2013-04-07 08:49:13 +02:00
|
|
|
mapper = new QDataWidgetMapper(this);
|
|
|
|
|
|
|
|
mapper->setItemDelegate(new MapDataDelegate(this));
|
2013-05-19 16:37:30 +02:00
|
|
|
connect(mapper, SIGNAL(currentIndexChanged(int)), this, SLOT(currentIndexChanged(int)));
|
2013-04-07 08:49:13 +02:00
|
|
|
mapper->setModel(model);
|
|
|
|
mapper->setSubmitPolicy(QDataWidgetMapper::AutoSubmit);
|
2013-05-19 16:37:30 +02:00
|
|
|
mapper->addMapping(ui->checkBoxLocked, flightDataModel::LOCKED);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxLatitude, flightDataModel::LATPOSITION);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxLongitude, flightDataModel::LNGPOSITION);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxAltitude, flightDataModel::ALTITUDE);
|
|
|
|
mapper->addMapping(ui->lineEditDescription, flightDataModel::WPDESCRITPTION);
|
|
|
|
mapper->addMapping(ui->checkBoxRelative, flightDataModel::ISRELATIVE);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxBearing, flightDataModel::BEARELATIVE);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxVelocity, flightDataModel::VELOCITY);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxDistance, flightDataModel::DISRELATIVE);
|
|
|
|
mapper->addMapping(ui->doubleSpinBoxRelativeAltitude, flightDataModel::ALTITUDERELATIVE);
|
|
|
|
mapper->addMapping(ui->cbMode, flightDataModel::MODE);
|
|
|
|
mapper->addMapping(ui->dsb_modeParam1, flightDataModel::MODE_PARAMS0);
|
|
|
|
mapper->addMapping(ui->dsb_modeParam2, flightDataModel::MODE_PARAMS1);
|
|
|
|
mapper->addMapping(ui->dsb_modeParam3, flightDataModel::MODE_PARAMS2);
|
|
|
|
mapper->addMapping(ui->dsb_modeParam4, flightDataModel::MODE_PARAMS3);
|
2013-04-07 08:49:13 +02:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
mapper->addMapping(ui->cbCondition, flightDataModel::CONDITION);
|
|
|
|
mapper->addMapping(ui->dsb_condParam1, flightDataModel::CONDITION_PARAMS0);
|
|
|
|
mapper->addMapping(ui->dsb_condParam2, flightDataModel::CONDITION_PARAMS1);
|
|
|
|
mapper->addMapping(ui->dsb_condParam3, flightDataModel::CONDITION_PARAMS2);
|
|
|
|
mapper->addMapping(ui->dsb_condParam4, flightDataModel::CONDITION_PARAMS0);
|
2013-04-07 08:49:13 +02:00
|
|
|
|
2013-05-19 16:37:30 +02:00
|
|
|
mapper->addMapping(ui->cbCommand, flightDataModel::COMMAND);
|
|
|
|
mapper->addMapping(ui->sbJump, flightDataModel::JUMPDESTINATION);
|
|
|
|
mapper->addMapping(ui->sbError, flightDataModel::ERRORDESTINATION);
|
|
|
|
connect(itemSelection, SIGNAL(currentRowChanged(QModelIndex, QModelIndex)), this, SLOT(currentRowChanged(QModelIndex, QModelIndex)));
|
2013-04-07 08:49:13 +02:00
|
|
|
}
|
|
|
|
void opmap_edit_waypoint_dialog::currentIndexChanged(int index)
|
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
ui->lbNumber->setText(QString::number(index + 1));
|
|
|
|
QModelIndex idx = mapper->model()->index(index, 0);
|
|
|
|
if (index == itemSelection->currentIndex().row()) {
|
2013-04-07 08:49:13 +02:00
|
|
|
return;
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
2013-04-07 08:49:13 +02:00
|
|
|
itemSelection->clear();
|
2013-05-19 16:37:30 +02:00
|
|
|
itemSelection->setCurrentIndex(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
2013-04-07 08:49:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
opmap_edit_waypoint_dialog::~opmap_edit_waypoint_dialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::on_pushButtonOK_clicked()
|
|
|
|
{
|
|
|
|
mapper->submit();
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::setupModeWidgets()
|
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
MapDataDelegate::ModeOptions mode = (MapDataDelegate::ModeOptions)ui->cbMode->itemData(ui->cbMode->currentIndex()).toInt();
|
|
|
|
|
|
|
|
switch (mode) {
|
2013-04-07 08:49:13 +02:00
|
|
|
case MapDataDelegate::MODE_FLYENDPOINT:
|
|
|
|
case MapDataDelegate::MODE_FLYVECTOR:
|
|
|
|
case MapDataDelegate::MODE_FLYCIRCLERIGHT:
|
|
|
|
case MapDataDelegate::MODE_FLYCIRCLELEFT:
|
|
|
|
case MapDataDelegate::MODE_DRIVEENDPOINT:
|
|
|
|
case MapDataDelegate::MODE_DRIVEVECTOR:
|
|
|
|
case MapDataDelegate::MODE_DRIVECIRCLELEFT:
|
|
|
|
case MapDataDelegate::MODE_DRIVECIRCLERIGHT:
|
|
|
|
case MapDataDelegate::MODE_DISARMALARM:
|
|
|
|
ui->modeParam1->setVisible(false);
|
|
|
|
ui->modeParam2->setVisible(false);
|
|
|
|
ui->modeParam3->setVisible(false);
|
|
|
|
ui->modeParam4->setVisible(false);
|
|
|
|
ui->dsb_modeParam1->setVisible(false);
|
|
|
|
ui->dsb_modeParam2->setVisible(false);
|
|
|
|
ui->dsb_modeParam3->setVisible(false);
|
|
|
|
ui->dsb_modeParam4->setVisible(false);
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::MODE_FIXEDATTITUDE:
|
|
|
|
ui->modeParam1->setText("pitch");
|
|
|
|
ui->modeParam2->setText("roll");
|
|
|
|
ui->modeParam3->setText("yaw");
|
2014-02-09 19:33:29 +01:00
|
|
|
ui->modeParam4->setText("thrust");
|
2013-04-07 08:49:13 +02:00
|
|
|
ui->modeParam1->setVisible(true);
|
|
|
|
ui->modeParam2->setVisible(true);
|
|
|
|
ui->modeParam3->setVisible(true);
|
|
|
|
ui->modeParam4->setVisible(true);
|
|
|
|
ui->dsb_modeParam1->setVisible(true);
|
|
|
|
ui->dsb_modeParam2->setVisible(true);
|
|
|
|
ui->dsb_modeParam3->setVisible(true);
|
|
|
|
ui->dsb_modeParam4->setVisible(true);
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::MODE_SETACCESSORY:
|
|
|
|
ui->modeParam1->setText("Acc.channel");
|
|
|
|
ui->modeParam2->setText("Value");
|
|
|
|
ui->modeParam1->setVisible(true);
|
|
|
|
ui->modeParam2->setVisible(true);
|
|
|
|
ui->modeParam3->setVisible(false);
|
|
|
|
ui->modeParam4->setVisible(false);
|
|
|
|
ui->dsb_modeParam1->setVisible(true);
|
|
|
|
ui->dsb_modeParam2->setVisible(true);
|
|
|
|
ui->dsb_modeParam3->setVisible(false);
|
|
|
|
ui->dsb_modeParam4->setVisible(false);
|
2013-05-19 16:37:30 +02:00
|
|
|
break;
|
2013-04-07 08:49:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void opmap_edit_waypoint_dialog::setupConditionWidgets()
|
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
MapDataDelegate::EndConditionOptions mode = (MapDataDelegate::EndConditionOptions)ui->cbCondition->itemData(ui->cbCondition->currentIndex()).toInt();
|
|
|
|
|
|
|
|
switch (mode) {
|
2013-04-07 08:49:13 +02:00
|
|
|
case MapDataDelegate::ENDCONDITION_NONE:
|
|
|
|
case MapDataDelegate::ENDCONDITION_IMMEDIATE:
|
|
|
|
case MapDataDelegate::ENDCONDITION_PYTHONSCRIPT:
|
|
|
|
ui->condParam1->setVisible(false);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(false);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_TIMEOUT:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
2014-01-14 00:29:52 +01:00
|
|
|
ui->condParam1->setText("Timeout(s)");
|
2013-04-07 08:49:13 +02:00
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_DISTANCETOTARGET:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(true);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(true);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("Distance(m)");
|
2013-05-19 16:37:30 +02:00
|
|
|
ui->condParam2->setText("Flag(0=2D,1=3D)"); // FIXME
|
2013-04-07 08:49:13 +02:00
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_LEGREMAINING:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("Relative Distance(0=complete,1=just starting)");
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_BELOWERROR:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("error margin (in m)");
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_ABOVEALTITUDE:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("Altitude in meters (negative)");
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_ABOVESPEED:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(true);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(true);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("Speed in meters/second");
|
|
|
|
ui->condParam2->setText("flag: 0=groundspeed 1=airspeed");
|
|
|
|
break;
|
|
|
|
case MapDataDelegate::ENDCONDITION_POINTINGTOWARDSNEXT:
|
|
|
|
ui->condParam1->setVisible(true);
|
|
|
|
ui->condParam2->setVisible(false);
|
|
|
|
ui->condParam3->setVisible(false);
|
|
|
|
ui->condParam4->setVisible(false);
|
|
|
|
ui->dsb_condParam1->setVisible(true);
|
|
|
|
ui->dsb_condParam2->setVisible(false);
|
|
|
|
ui->dsb_condParam3->setVisible(false);
|
|
|
|
ui->dsb_condParam4->setVisible(false);
|
|
|
|
ui->condParam1->setText("Degrees variation allowed");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::pushButtonCancel_clicked()
|
|
|
|
{
|
|
|
|
mapper->revert();
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
void opmap_edit_waypoint_dialog::editWaypoint(mapcontrol::WayPointItem *waypoint_item)
|
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
if (!waypoint_item) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!isVisible()) {
|
2013-04-07 08:49:13 +02:00
|
|
|
show();
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
if (isMinimized()) {
|
2013-04-07 08:49:13 +02:00
|
|
|
showNormal();
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
if (!isActiveWindow()) {
|
2013-04-07 08:49:13 +02:00
|
|
|
activateWindow();
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
2013-04-07 08:49:13 +02:00
|
|
|
raise();
|
|
|
|
setFocus(Qt::OtherFocusReason);
|
|
|
|
mapper->setCurrentIndex(waypoint_item->Number());
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::on_pushButton_clicked()
|
|
|
|
{
|
|
|
|
mapper->toPrevious();
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::on_pushButton_2_clicked()
|
|
|
|
{
|
|
|
|
mapper->toNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::enableEditWidgets(bool value)
|
|
|
|
{
|
2013-05-19 16:37:30 +02:00
|
|
|
QWidget *w;
|
|
|
|
|
|
|
|
foreach(QWidget * obj, this->findChildren<QWidget *>()) {
|
|
|
|
w = qobject_cast<QComboBox *>(obj);
|
|
|
|
if (w) {
|
2013-04-07 08:49:13 +02:00
|
|
|
w->setEnabled(!value);
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
w = qobject_cast<QLineEdit *>(obj);
|
|
|
|
if (w) {
|
2013-04-07 08:49:13 +02:00
|
|
|
w->setEnabled(!value);
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
w = qobject_cast<QDoubleSpinBox *>(obj);
|
|
|
|
if (w) {
|
2013-04-07 08:49:13 +02:00
|
|
|
w->setEnabled(!value);
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
w = qobject_cast<QCheckBox *>(obj);
|
|
|
|
if (w && w != ui->checkBoxLocked) {
|
2013-04-07 08:49:13 +02:00
|
|
|
w->setEnabled(!value);
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
|
|
|
w = qobject_cast<QSpinBox *>(obj);
|
|
|
|
if (w) {
|
2013-04-07 08:49:13 +02:00
|
|
|
w->setEnabled(!value);
|
2013-05-19 16:37:30 +02:00
|
|
|
}
|
2013-04-07 08:49:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void opmap_edit_waypoint_dialog::currentRowChanged(QModelIndex current, QModelIndex previous)
|
|
|
|
{
|
|
|
|
Q_UNUSED(previous);
|
|
|
|
|
|
|
|
mapper->setCurrentIndex(current.row());
|
|
|
|
}
|