WaypointEditableView.cc 19.9 KB
Newer Older
pixhawk's avatar
pixhawk committed
1
/*===================================================================
pixhawk's avatar
pixhawk committed
2 3 4 5 6 7 8 9
======================================================================*/

/**
 * @file
 *   @brief Displays one waypoint
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
 *   @author Benjamin Knecht <mavteam@student.ethz.ch>
10
 *   @author Petri Tanskanen <mavteam@student.ethz.ch>
pixhawk's avatar
pixhawk committed
11 12 13 14 15 16
 *
 */

#include <QDoubleSpinBox>
#include <QDebug>

17 18
#include <cmath>
#include <qmath.h>
pixhawk's avatar
pixhawk committed
19

20 21
#include "WaypointEditableView.h"
#include "ui_WaypointEditableView.h"
22

23
#include "MainWindow.h"
24 25 26 27 28 29 30 31 32 33 34 35 36
#include "mission/QGCMissionNavWaypoint.h"
#include "mission/QGCMissionNavLoiterUnlim.h"
#include "mission/QGCMissionNavLoiterTurns.h"
#include "mission/QGCMissionNavLoiterTime.h"
#include "mission/QGCMissionNavReturnToLaunch.h"
#include "mission/QGCMissionNavLand.h"
#include "mission/QGCMissionNavTakeoff.h"
#include "mission/QGCMissionNavSweep.h"
#include "mission/QGCMissionConditionDelay.h"
#include "mission/QGCMissionDoJump.h"
#include "mission/QGCMissionDoStartSearch.h"
#include "mission/QGCMissionDoFinishSearch.h"
#include "mission/QGCMissionOther.h"
pixhawk's avatar
pixhawk committed
37

pixhawk's avatar
pixhawk committed
38

39
WaypointEditableView::WaypointEditableView(Waypoint* wp, QWidget* parent) :
40
    QWidget(parent),
41
    wp(wp),
Lorenz Meier's avatar
Lorenz Meier committed
42
    viewMode(QGC_WAYPOINTEDITABLEVIEW_MODE_DEFAULT),
43
    m_ui(new Ui::WaypointEditableView)
pixhawk's avatar
pixhawk committed
44 45
{
    m_ui->setupUi(this);
pixhawk's avatar
pixhawk committed
46
    connect(wp, SIGNAL(destroyed(QObject*)), this, SLOT(deleted(QObject*)));
47

48
    // CUSTOM COMMAND WIDGET
pixhawk's avatar
pixhawk committed
49
    QHBoxLayout *layout = new QHBoxLayout;
50
    layout->setSpacing(2);
51
    layout->setContentsMargins(4, 0 ,4 ,0);
52
    m_ui->customActionWidget->setLayout(layout);
pixhawk's avatar
pixhawk committed
53

54
    MissionNavWaypointWidget = NULL;
55 56 57
    MissionNavLoiterUnlimWidget = NULL;
    MissionNavLoiterTurnsWidget = NULL;
    MissionNavLoiterTimeWidget = NULL;
58 59 60
    MissionNavReturnToLaunchWidget = NULL;
    MissionNavLandWidget = NULL;
    MissionNavTakeoffWidget = NULL;
61
    MissionNavSweepWidget = NULL;
62
    MissionConditionDelayWidget = NULL;
63
    MissionDoJumpWidget = NULL;
64 65
    MissionDoStartSearchWidget = NULL;
    MissionDoFinishSearchWidget = NULL;
66
    MissionOtherWidget = NULL;
67 68


69
    // add actions
70 71 72 73 74 75 76
    m_ui->comboBox_action->addItem(tr("NAV: Waypoint"),MAV_CMD_NAV_WAYPOINT);
    m_ui->comboBox_action->addItem(tr("NAV: TakeOff"),MAV_CMD_NAV_TAKEOFF);
    m_ui->comboBox_action->addItem(tr("NAV: Loiter Unlim."),MAV_CMD_NAV_LOITER_UNLIM);
    m_ui->comboBox_action->addItem(tr("NAV: Loiter Time"),MAV_CMD_NAV_LOITER_TIME);
    m_ui->comboBox_action->addItem(tr("NAV: Loiter Turns"),MAV_CMD_NAV_LOITER_TURNS);
    m_ui->comboBox_action->addItem(tr("NAV: Ret. to Launch"),MAV_CMD_NAV_RETURN_TO_LAUNCH);
    m_ui->comboBox_action->addItem(tr("NAV: Land"),MAV_CMD_NAV_LAND);
77
    //m_ui->comboBox_action->addItem(tr("NAV: Target"),MAV_CMD_NAV_TARGET);
pixhawk's avatar
pixhawk committed
78
    m_ui->comboBox_action->addItem(tr("IF: Delay over"),MAV_CMD_CONDITION_DELAY);
lm's avatar
lm committed
79
    //m_ui->comboBox_action->addItem(tr("IF: Yaw angle is"),MAV_CMD_CONDITION_YAW);
80
    m_ui->comboBox_action->addItem(tr("DO: Jump to Index"),MAV_CMD_DO_JUMP);
81
    m_ui->comboBox_action->addItem(tr("Other"), MAV_CMD_ENUM_END);
82

83
    // add frames
84 85 86
    m_ui->comboBox_frame->addItem("Global/Abs. Alt",MAV_FRAME_GLOBAL);
    m_ui->comboBox_frame->addItem("Global/Rel. Alt", MAV_FRAME_GLOBAL_RELATIVE_ALT);
    m_ui->comboBox_frame->addItem("Local(NED)",MAV_FRAME_LOCAL_NED);
87 88
    m_ui->comboBox_frame->addItem("Mission",MAV_FRAME_MISSION);

89 90 91 92 93
    // We do not want users to mess with the current waypoint in missions -
    // they have to use the one downloaded from the MAV to change the current WP.
    m_ui->selectedBox->setVisible(false);
    connect(m_ui->selectedBox, SIGNAL(stateChanged(int)), this, SLOT(changedCurrent(int)));

94
    // Initialize view correctly
95 96
    int actionID = wp->getAction();
    initializeActionView(actionID);
97
    updateValues();
98
    updateActionView(actionID);
pixhawk's avatar
pixhawk committed
99

100
    // Check for mission frame
101 102
    if (wp->getFrame() == MAV_FRAME_MISSION)
    {
103 104 105
        m_ui->comboBox_action->setCurrentIndex(m_ui->comboBox_action->count()-1);
    }

pixhawk's avatar
pixhawk committed
106 107 108 109
    connect(m_ui->upButton, SIGNAL(clicked()), this, SLOT(moveUp()));
    connect(m_ui->downButton, SIGNAL(clicked()), this, SLOT(moveDown()));
    connect(m_ui->removeButton, SIGNAL(clicked()), this, SLOT(remove()));

pixhawk's avatar
pixhawk committed
110
    connect(m_ui->autoContinue, SIGNAL(stateChanged(int)), this, SLOT(changedAutoContinue(int)));
111 112
    connect(m_ui->comboBox_action, SIGNAL(activated(int)), this, SLOT(changedAction(int)));
    connect(m_ui->comboBox_frame, SIGNAL(activated(int)), this, SLOT(changedFrame(int)));
pixhawk's avatar
pixhawk committed
113

pixhawk's avatar
pixhawk committed
114 115
}

116
void WaypointEditableView::moveUp()
pixhawk's avatar
pixhawk committed
117 118 119 120
{
    emit moveUpWaypoint(wp);
}

121
void WaypointEditableView::moveDown()
pixhawk's avatar
pixhawk committed
122 123 124 125
{
    emit moveDownWaypoint(wp);
}

Alejandro's avatar
Alejandro committed
126

127
void WaypointEditableView::remove()
pixhawk's avatar
pixhawk committed
128 129
{
    emit removeWaypoint(wp);
130
    deleteLater();
pixhawk's avatar
pixhawk committed
131 132
}

133
void WaypointEditableView::changedAutoContinue(int state)
pixhawk's avatar
pixhawk committed
134 135
{
    if (state == 0)
136
        wp->setAutocontinue(false);
pixhawk's avatar
pixhawk committed
137
    else
138
        wp->setAutocontinue(true);
pixhawk's avatar
pixhawk committed
139 140
}

141
void WaypointEditableView::updateActionView(int action)
142
{
143 144
    //Hide all
    if(MissionNavWaypointWidget) MissionNavWaypointWidget->hide();
145 146 147
    if(MissionNavLoiterUnlimWidget) MissionNavLoiterUnlimWidget->hide();
    if(MissionNavLoiterTurnsWidget) MissionNavLoiterTurnsWidget->hide();
    if(MissionNavLoiterTimeWidget) MissionNavLoiterTimeWidget->hide();
148 149 150
    if(MissionNavReturnToLaunchWidget) MissionNavReturnToLaunchWidget->hide();
    if(MissionNavLandWidget) MissionNavLandWidget->hide();
    if(MissionNavTakeoffWidget) MissionNavTakeoffWidget->hide();
151
    if(MissionNavSweepWidget) MissionNavSweepWidget->hide();
152 153
    if(MissionConditionDelayWidget) MissionConditionDelayWidget->hide();
    if(MissionDoJumpWidget) MissionDoJumpWidget->hide();
154 155
    if(MissionDoStartSearchWidget) MissionDoStartSearchWidget->hide();
    if(MissionDoFinishSearchWidget) MissionDoFinishSearchWidget->hide();
156
    if(MissionOtherWidget) MissionOtherWidget->hide();
157 158 159 160 161

    //Show only the correct one
    if (viewMode != QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING)
    {
        switch(action) {
162 163 164
        case MAV_CMD_NAV_WAYPOINT:
            if(MissionNavWaypointWidget) MissionNavWaypointWidget->show();
            break;
165
        case MAV_CMD_NAV_LOITER_UNLIM:
166 167
            if(MissionNavLoiterUnlimWidget) MissionNavLoiterUnlimWidget->show();
            break;
168
        case MAV_CMD_NAV_LOITER_TURNS:
169 170
            if(MissionNavLoiterTurnsWidget) MissionNavLoiterTurnsWidget->show();
            break;
171
        case MAV_CMD_NAV_LOITER_TIME:
172
            if(MissionNavLoiterTimeWidget) MissionNavLoiterTimeWidget->show();
173
            break;
174
        case MAV_CMD_NAV_RETURN_TO_LAUNCH:
175 176
            if(MissionNavReturnToLaunchWidget) MissionNavReturnToLaunchWidget->show();
            break;
177
        case MAV_CMD_NAV_LAND:
178 179
            if(MissionNavLandWidget) MissionNavLandWidget->show();
            break;
180
        case MAV_CMD_NAV_TAKEOFF:
181 182
            if(MissionNavTakeoffWidget) MissionNavTakeoffWidget->show();
            break;
183 184
        case MAV_CMD_CONDITION_DELAY:
            if(MissionConditionDelayWidget) MissionConditionDelayWidget->show();
185 186 187 188
            break;
        case MAV_CMD_DO_JUMP:
            if(MissionDoJumpWidget) MissionDoJumpWidget->show();
            break;
189

190 191
        default:
            if(MissionOtherWidget) MissionOtherWidget->show();
192
            viewMode = QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING;
193 194 195 196 197 198
            break;
        }
    }
    else
    {
        if(MissionOtherWidget) MissionOtherWidget->show();
199 200 201
    }
}

202 203 204
/**
 * @param index The index of the combo box of the action entry, NOT the action ID
 */
205
void WaypointEditableView::changedAction(int index)
206 207
{
    // set waypoint action
208 209 210 211 212 213 214 215 216
    int actionID = m_ui->comboBox_action->itemData(index).toUInt();
    if (actionID == QVariant::Invalid || actionID == MAV_CMD_ENUM_END)
    {
        viewMode = QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING;
    }
    else //(actionID < MAV_CMD_ENUM_END && actionID >= 0)
    {
        viewMode = QGC_WAYPOINTEDITABLEVIEW_MODE_DEFAULT;
        MAV_CMD action = (MAV_CMD) actionID;
217 218
        wp->setAction(action);
    }
219 220 221 222 223
    // change the view
    initializeActionView(actionID);
    updateValues();
    updateActionView(actionID);
}
224

225 226 227 228
void WaypointEditableView::initializeActionView(int actionID)
{
    //initialize a new action-widget, if needed.
    switch(actionID) {
229 230 231 232 233
    case MAV_CMD_NAV_WAYPOINT:
        if (!MissionNavWaypointWidget)
        {
            MissionNavWaypointWidget = new QGCMissionNavWaypoint(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavWaypointWidget);
234
        }
235
        break;
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
    case MAV_CMD_NAV_LOITER_UNLIM:
        if (!MissionNavLoiterUnlimWidget)
        {
            MissionNavLoiterUnlimWidget = new QGCMissionNavLoiterUnlim(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavLoiterUnlimWidget);
        }
        break;
    case MAV_CMD_NAV_LOITER_TURNS:
        if (!MissionNavLoiterTurnsWidget)
        {
            MissionNavLoiterTurnsWidget = new QGCMissionNavLoiterTurns(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavLoiterTurnsWidget);
        }
        break;
    case MAV_CMD_NAV_LOITER_TIME:
        if (!MissionNavLoiterTimeWidget)
        {
            MissionNavLoiterTimeWidget = new QGCMissionNavLoiterTime(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavLoiterTimeWidget);
        }
        break;
    case MAV_CMD_NAV_RETURN_TO_LAUNCH:
258 259 260 261 262 263
        if (!MissionNavReturnToLaunchWidget)
        {
            MissionNavReturnToLaunchWidget = new QGCMissionNavReturnToLaunch(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavReturnToLaunchWidget);
        }
        break;
264
    case MAV_CMD_NAV_LAND:
265 266 267 268 269 270
        if (!MissionNavLandWidget)
        {
            MissionNavLandWidget = new QGCMissionNavLand(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavLandWidget);
        }
        break;
271
    case MAV_CMD_NAV_TAKEOFF:
272 273 274 275 276 277
        if (!MissionNavTakeoffWidget)
        {
            MissionNavTakeoffWidget = new QGCMissionNavTakeoff(this);
            m_ui->customActionWidget->layout()->addWidget(MissionNavTakeoffWidget);
        }
        break;
278 279 280 281 282 283 284 285
    case MAV_CMD_CONDITION_DELAY:
        if (!MissionConditionDelayWidget)
        {
            MissionConditionDelayWidget = new QGCMissionConditionDelay(this);
            m_ui->customActionWidget->layout()->addWidget(MissionConditionDelayWidget);
        }
        break;
    case MAV_CMD_DO_JUMP:
286
        if (!MissionDoJumpWidget)
287
        {
288
            MissionDoJumpWidget = new QGCMissionDoJump(this);
289
            m_ui->customActionWidget->layout()->addWidget(MissionDoJumpWidget);
290
        }
291
        break;
292 293 294
    case MAV_CMD_ENUM_END:
    default:
        if (!MissionOtherWidget)
295
        {
296 297
            MissionOtherWidget = new QGCMissionOther(this);
            m_ui->customActionWidget->layout()->addWidget(MissionOtherWidget);
298
        }
299
        break;
300 301 302
    }
}

303
void WaypointEditableView::deleted(QObject* waypoint)
pixhawk's avatar
pixhawk committed
304
{
305
    Q_UNUSED(waypoint);
pixhawk's avatar
pixhawk committed
306 307
}

308
void WaypointEditableView::changedFrame(int index)
309 310 311 312 313 314
{
    // set waypoint action
    MAV_FRAME frame = (MAV_FRAME)m_ui->comboBox_frame->itemData(index).toUInt();
    wp->setFrame(frame);
}

315
void WaypointEditableView::changedCurrent(int state)
316
{
317 318 319
    if (state == 0)
    {
        if (wp->getCurrent() == true) //User clicked on the waypoint, that is already current
320
        {
321 322 323 324
            m_ui->selectedBox->setChecked(true);
            m_ui->selectedBox->setCheckState(Qt::Checked);
        }
        else
325
        {
326
            m_ui->selectedBox->setChecked(false);
327
            m_ui->selectedBox->setCheckState(Qt::Unchecked);
328 329 330
        }
    }
    else
331
    {
pixhawk's avatar
pixhawk committed
332
        wp->setCurrent(true);
333 334 335 336
        // At this point we do not consider this signal
        // to be valid / the edit check boxes should not change the view state
        //emit changeCurrentWaypoint(wp->getId());
        //the slot changeCurrentWaypoint() in WaypointList sets all other current flags to false
337
    }
pixhawk's avatar
pixhawk committed
338 339
}

340
void WaypointEditableView::updateValues()
341
{
pixhawk's avatar
pixhawk committed
342 343
    // Check if we just lost the wp, delete the widget
    // accordingly
344
    if (!wp) {
pixhawk's avatar
pixhawk committed
345 346 347
        deleteLater();
        return;
    }
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389

    //wp->blockSignals(true);

    // Deactivate all QDoubleSpinBox signals due to
    // unwanted rounding effects
    for (int j = 0; j  < children().size(); ++j)
    {
        // Store only QGCToolWidgetItems
        QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(children().at(j));
        if (spin)
        {
            //qDebug() << "DEACTIVATED SPINBOX #" << j;
            spin->blockSignals(true);
        }
        else
        {
            // Store only QGCToolWidgetItems
            QWidget* item = dynamic_cast<QWidget*>(children().at(j));
            if (item)
            {
                //qDebug() << "FOUND WIDGET BOX";
                for (int k = 0; k  < item->children().size(); ++k)
                {
                    // Store only QGCToolWidgetItems
                    QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(item->children().at(k));
                    if (spin)
                    {
                        //qDebug() << "DEACTIVATED SPINBOX #" << k;
                        spin->blockSignals(true);
                    }
                }
            }
        }
    }

    // Block all custom action widget actions
    for (int j = 0; j  < m_ui->customActionWidget->children().size(); ++j)
    {
        // Store only QGCToolWidgetItems
        QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(m_ui->customActionWidget->children().at(j));
        if (spin)
        {
390
            //qDebug() << "DEACTIVATED SPINBOX #" << j;
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
            spin->blockSignals(true);
        }
        else
        {
            // Store only QGCToolWidgetItems
            QWidget* item = dynamic_cast<QWidget*>(m_ui->customActionWidget->children().at(j));
            if (item)
            {
                //qDebug() << "CUSTOM ACTIONS FOUND WIDGET BOX";
                for (int k = 0; k  < item->children().size(); ++k)
                {
                    // Store only QGCToolWidgetItems
                    QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(item->children().at(k));
                    if (spin)
                    {
                        //qDebug() << "DEACTIVATED SPINBOX #" << k;
                        spin->blockSignals(true);
                    }
                }
            }
        }
    }


415 416
    // update frame
    MAV_FRAME frame = wp->getFrame();
417
    int frame_index = m_ui->comboBox_frame->findData(frame);
418
    if (m_ui->comboBox_frame->currentIndex() != frame_index) {
419
        m_ui->comboBox_frame->setCurrentIndex(frame_index);
420 421
    }

422
    // Update action
423
    MAV_CMD action = wp->getAction();
424
    int action_index = m_ui->comboBox_action->findData(action);
425 426
    if (m_ui->comboBox_action->currentIndex() != action_index)
    {
427
        if (viewMode != QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING)
428
        {
429 430
            // Set to "Other" action if it was -1
            if (action_index == -1)
431
            {
432 433
                action_index = m_ui->comboBox_action->findData(MAV_CMD_ENUM_END);
                viewMode = QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING;
lm's avatar
lm committed
434
            }
435
            m_ui->comboBox_action->setCurrentIndex(action_index);
436
        }
pixhawk's avatar
pixhawk committed
437
    }
438

439 440 441 442 443 444 445 446 447 448 449
    emit commandBroadcast(wp->getAction());
    emit frameBroadcast(wp->getFrame());
    emit param1Broadcast(wp->getParam1());
    emit param2Broadcast(wp->getParam2());
    emit param3Broadcast(wp->getParam3());
    emit param4Broadcast(wp->getParam4());
    emit param5Broadcast(wp->getParam5());
    emit param6Broadcast(wp->getParam6());
    emit param7Broadcast(wp->getParam7());


450 451
    if (m_ui->selectedBox->isChecked() != wp->getCurrent())
    {
452 453
        // This is never a reason to emit a changed signal
        m_ui->selectedBox->blockSignals(true);
pixhawk's avatar
pixhawk committed
454
        m_ui->selectedBox->setChecked(wp->getCurrent());
455
        m_ui->selectedBox->blockSignals(false);
pixhawk's avatar
pixhawk committed
456
    }
457 458
    if (m_ui->autoContinue->isChecked() != wp->getAutoContinue())
    {
pixhawk's avatar
pixhawk committed
459 460
        m_ui->autoContinue->setChecked(wp->getAutoContinue());
    }
461

462
    m_ui->idLabel->setText(QString::number(wp->getId()));
463

464
    // Style alternating rows of Missions as lighter/darker.
465 466 467 468 469 470
    static int lastId = -1;
    int currId = wp->getId() % 2;
    if (currId != lastId)
    {
        if (currId == 1)
        {
471
            this->setProperty("RowColoring", "odd");
472 473 474
        }
        else
        {
475
            this->setProperty("RowColoring", "even");
476 477 478
        }
        lastId = currId;
    }
479 480 481 482 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 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543

    // Activate all QDoubleSpinBox signals due to
    // unwanted rounding effects
    for (int j = 0; j  < children().size(); ++j)
    {
        // Store only QGCToolWidgetItems
        QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(children().at(j));
        if (spin)
        {
            //qDebug() << "ACTIVATED SPINBOX #" << j;
            spin->blockSignals(false);
        }
        else
        {
            // Store only QGCToolWidgetItems
            QGroupBox* item = dynamic_cast<QGroupBox*>(children().at(j));
            if (item)
            {
                //qDebug() << "FOUND GROUP BOX";
                for (int k = 0; k  < item->children().size(); ++k)
                {
                    // Store only QGCToolWidgetItems
                    QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(item->children().at(k));
                    if (spin)
                    {
                        //qDebug() << "ACTIVATED SPINBOX #" << k;
                        spin->blockSignals(false);
                    }
                }
            }
        }
    }

    // Unblock all custom action widget actions
    for (int j = 0; j  < m_ui->customActionWidget->children().size(); ++j)
    {
        // Store only QGCToolWidgetItems
        QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(m_ui->customActionWidget->children().at(j));
        if (spin)
        {
            //qDebug() << "ACTIVATED SPINBOX #" << j;
            spin->blockSignals(false);
        }
        else
        {
            // Store only QGCToolWidgetItems
            QWidget* item = dynamic_cast<QWidget*>(m_ui->customActionWidget->children().at(j));
            if (item)
            {
                //qDebug() << "FOUND WIDGET BOX";
                for (int k = 0; k  < item->children().size(); ++k)
                {
                    // Store only QGCToolWidgetItems
                    QDoubleSpinBox* spin = dynamic_cast<QDoubleSpinBox*>(item->children().at(k));
                    if (spin)
                    {
                       //qDebug() << "ACTIVATED SPINBOX #" << k;
                        spin->blockSignals(false);
                    }
                }
            }
        }
    }

//    wp->blockSignals(false);
544 545
}

546
void WaypointEditableView::setCurrent(bool state)
pixhawk's avatar
pixhawk committed
547
{
548 549 550 551 552 553
    if (m_ui->selectedBox->isChecked() != state)
    {
        m_ui->selectedBox->blockSignals(true);
        m_ui->selectedBox->setChecked(state);
        m_ui->selectedBox->blockSignals(false);
    }
pixhawk's avatar
pixhawk committed
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

void WaypointEditableView::changedCommand(int mav_cmd_id)
{
    if (mav_cmd_id<MAV_CMD_ENUM_END)
    {
        wp->setAction(mav_cmd_id);
    }
}
void WaypointEditableView::changedParam1(double value)
{
    wp->setParam1(value);
}
void WaypointEditableView::changedParam2(double value)
{
    wp->setParam2(value);
}
void WaypointEditableView::changedParam3(double value)
{
    wp->setParam3(value);
}
void WaypointEditableView::changedParam4(double value)
{
    wp->setParam4(value);
}
void WaypointEditableView::changedParam5(double value)
{
    wp->setParam5(value);
}
void WaypointEditableView::changedParam6(double value)
{
    wp->setParam6(value);
}
void WaypointEditableView::changedParam7(double value)
{
    wp->setParam7(value);
}

593
WaypointEditableView::~WaypointEditableView()
pixhawk's avatar
pixhawk committed
594 595 596 597
{
    delete m_ui;
}

598
void WaypointEditableView::changeEvent(QEvent *e)
pixhawk's avatar
pixhawk committed
599 600 601 602 603 604 605 606 607
{
    switch (e->type()) {
    case QEvent::LanguageChange:
        m_ui->retranslateUi(this);
        break;
    default:
        break;
    }
}
608

609 610 611
/**
 * Implement paintEvent() so that stylesheets work for our custom widget.
 */
612 613 614 615 616 617 618
void WaypointEditableView::paintEvent(QPaintEvent *)
 {
     QStyleOption opt;
     opt.init(this);
     QPainter p(this);
     style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
 }