WaypointEditableView.cc 20.1 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
 *
 */

#include <QDoubleSpinBox>
#include <QDebug>
Don Gagne's avatar
Don Gagne committed
16
#include <QGroupBox>
pixhawk's avatar
pixhawk committed
17

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

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

24
#include "MainWindow.h"
25 26 27 28 29 30 31 32 33 34 35 36 37
#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
38

pixhawk's avatar
pixhawk committed
39

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

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

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


70
    // add actions
71
    m_ui->comboBox_action->addItem(tr("NAV: MissionItem"),MAV_CMD_NAV_WAYPOINT);
72 73 74 75 76 77
    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);
78
    //m_ui->comboBox_action->addItem(tr("NAV: Target"),MAV_CMD_NAV_TARGET);
pixhawk's avatar
pixhawk committed
79
    m_ui->comboBox_action->addItem(tr("IF: Delay over"),MAV_CMD_CONDITION_DELAY);
lm's avatar
lm committed
80
    //m_ui->comboBox_action->addItem(tr("IF: Yaw angle is"),MAV_CMD_CONDITION_YAW);
81
    m_ui->comboBox_action->addItem(tr("DO: Jump to Index"),MAV_CMD_DO_JUMP);
82
    m_ui->comboBox_action->addItem(tr("Other"), MAV_CMD_ENUM_END);
83

84
    // add frames
85 86 87
    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);
88
    m_ui->comboBox_frame->addItem("Local Offset(NED)",MAV_FRAME_LOCAL_OFFSET_NED);
89 90
    m_ui->comboBox_frame->addItem("Mission",MAV_FRAME_MISSION);

91 92 93 94 95
    // 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)));

96
    // Initialize view correctly
Don Gagne's avatar
Don Gagne committed
97
    int actionID = wp->command();
98
    initializeActionView(actionID);
99
    updateValues();
100
    updateActionView(actionID);
pixhawk's avatar
pixhawk committed
101

102
    // Check for mission frame
Don Gagne's avatar
Don Gagne committed
103
    if (wp->frame() == MAV_FRAME_MISSION)
104
    {
105 106 107
        m_ui->comboBox_action->setCurrentIndex(m_ui->comboBox_action->count()-1);
    }

pixhawk's avatar
pixhawk committed
108 109 110 111
    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
112
    connect(m_ui->autoContinue, SIGNAL(stateChanged(int)), this, SLOT(changedAutoContinue(int)));
113 114
    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
115

pixhawk's avatar
pixhawk committed
116 117
}

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

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

Alejandro's avatar
Alejandro committed
128

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

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

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

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

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

204 205 206
/**
 * @param index The index of the combo box of the action entry, NOT the action ID
 */
207
void WaypointEditableView::changedAction(int index)
208 209
{
    // set waypoint action
210 211 212 213 214 215 216 217 218
    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;
219 220
        wp->setAction(action);
    }
221 222 223 224 225
    // change the view
    initializeActionView(actionID);
    updateValues();
    updateActionView(actionID);
}
226

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

305
void WaypointEditableView::deleted(QObject* waypoint)
pixhawk's avatar
pixhawk committed
306
{
307 308 309
    // Do not dynamic cast or de-reference QObject, since object is either in destructor or may have already
    // been destroyed.

310
    Q_UNUSED(waypoint);
pixhawk's avatar
pixhawk committed
311 312
}

313
void WaypointEditableView::changedFrame(int index)
314 315 316 317 318 319
{
    // set waypoint action
    MAV_FRAME frame = (MAV_FRAME)m_ui->comboBox_frame->itemData(index).toUInt();
    wp->setFrame(frame);
}

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

345
void WaypointEditableView::updateValues()
346
{
pixhawk's avatar
pixhawk committed
347 348
    // Check if we just lost the wp, delete the widget
    // accordingly
349
    if (!wp) {
pixhawk's avatar
pixhawk committed
350 351 352
        deleteLater();
        return;
    }
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 390 391 392 393 394

    //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)
        {
395
            //qDebug() << "DEACTIVATED SPINBOX #" << j;
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
            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);
                    }
                }
            }
        }
    }


420
    // update frame
Don Gagne's avatar
Don Gagne committed
421
    MAV_FRAME frame = (MAV_FRAME)wp->frame();
422
    int frame_index = m_ui->comboBox_frame->findData(frame);
423
    if (m_ui->comboBox_frame->currentIndex() != frame_index) {
424
        m_ui->comboBox_frame->setCurrentIndex(frame_index);
425 426
    }

427
    // Update action
Don Gagne's avatar
Don Gagne committed
428
    MAV_CMD action = (MAV_CMD)wp->command();
429
    int action_index = m_ui->comboBox_action->findData(action);
430 431
    if (m_ui->comboBox_action->currentIndex() != action_index)
    {
432
        if (viewMode != QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING)
433
        {
434 435
            // Set to "Other" action if it was -1
            if (action_index == -1)
436
            {
437 438
                action_index = m_ui->comboBox_action->findData(MAV_CMD_ENUM_END);
                viewMode = QGC_WAYPOINTEDITABLEVIEW_MODE_DIRECT_EDITING;
lm's avatar
lm committed
439
            }
440
            m_ui->comboBox_action->setCurrentIndex(action_index);
441
        }
pixhawk's avatar
pixhawk committed
442
    }
443

Don Gagne's avatar
Don Gagne committed
444 445 446 447 448 449 450 451 452
    emit commandBroadcast(wp->command());
    emit frameBroadcast((MAV_FRAME)wp->frame());
    emit param1Broadcast(wp->param1());
    emit param2Broadcast(wp->param2());
    emit param3Broadcast(wp->param3());
    emit param4Broadcast(wp->param4());
    emit param5Broadcast(wp->param5());
    emit param6Broadcast(wp->param6());
    emit param7Broadcast(wp->param7());
453 454


Don Gagne's avatar
Don Gagne committed
455
    if (m_ui->selectedBox->isChecked() != wp->isCurrentItem())
456
    {
457 458
        // This is never a reason to emit a changed signal
        m_ui->selectedBox->blockSignals(true);
Don Gagne's avatar
Don Gagne committed
459
        m_ui->selectedBox->setChecked(wp->isCurrentItem());
460
        m_ui->selectedBox->blockSignals(false);
pixhawk's avatar
pixhawk committed
461
    }
Don Gagne's avatar
Don Gagne committed
462
    if (m_ui->autoContinue->isChecked() != wp->autoContinue())
463
    {
Don Gagne's avatar
Don Gagne committed
464
        m_ui->autoContinue->setChecked(wp->autoContinue());
pixhawk's avatar
pixhawk committed
465
    }
466

Don Gagne's avatar
Don Gagne committed
467
    m_ui->idLabel->setText(QString::number(wp->sequenceNumber()));
468

469
    // Style alternating rows of Missions as lighter/darker.
470
    static int lastId = -1;
Don Gagne's avatar
Don Gagne committed
471
    int currId = wp->sequenceNumber() % 2;
472 473 474 475
    if (currId != lastId)
    {
        if (currId == 1)
        {
476
            this->setProperty("RowColoring", "odd");
477 478 479
        }
        else
        {
480
            this->setProperty("RowColoring", "even");
481 482 483
        }
        lastId = currId;
    }
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 544 545 546 547 548

    // 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);
549 550
}

551
void WaypointEditableView::setCurrent(bool state)
pixhawk's avatar
pixhawk committed
552
{
553 554 555 556 557 558
    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
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 593 594 595 596 597

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);
}

598
WaypointEditableView::~WaypointEditableView()
pixhawk's avatar
pixhawk committed
599 600 601 602
{
    delete m_ui;
}

603
void WaypointEditableView::changeEvent(QEvent *e)
pixhawk's avatar
pixhawk committed
604 605 606 607 608 609 610 611 612
{
    switch (e->type()) {
    case QEvent::LanguageChange:
        m_ui->retranslateUi(this);
        break;
    default:
        break;
    }
}
613

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