diff --git a/src/uas/UASWaypointManager.cc b/src/uas/UASWaypointManager.cc index e246821d2c7447138b071fa937f78f1cb7136048..557a74df92ac1f179f25e2d30047313ba942706b 100644 --- a/src/uas/UASWaypointManager.cc +++ b/src/uas/UASWaypointManager.cc @@ -173,7 +173,7 @@ void UASWaypointManager::handleWaypoint(quint8 systemId, quint8 compId, mavlink_ protocol_timer.stop(); emit readGlobalWPFromUAS(false); - if (currentWaypointEditable) emit currentWaypointChanged(currentWaypointEditable->getId()); + //if (currentWaypointEditable) emit currentWaypointChanged(currentWaypointEditable->getId()); emit updateStatusString("done."); // // qDebug() << "got all waypoints from ID " << systemId; @@ -283,19 +283,6 @@ int UASWaypointManager::setCurrentWaypoint(quint16 seq) if (seq < waypointsViewOnly.size()) { if(current_state == WP_IDLE) { - /* - //update local main storage - for(int i = 0; i < waypointsViewOnly.size(); i++) { - if (waypointsViewOnly[i]->getId() == seq) { - waypointsViewOnly[i]->setCurrent(true); - //currentWaypointEditable = waypoints[i]; - } else { - waypointsViewOnly[i]->setCurrent(false); - } - } - */ - - //send change to UAS - important to note: if the transmission fails, we have inconsistencies protocol_timer.start(PROTOCOL_TIMEOUT_MS); current_retries = PROTOCOL_MAX_RETRIES; diff --git a/src/ui/WaypointEditableView.cc b/src/ui/WaypointEditableView.cc index 757e789d7c16f68881e1f75614af1c07d8f88d20..156a2189c8026c3d00ad7d69e9027b83968dfd98 100644 --- a/src/ui/WaypointEditableView.cc +++ b/src/ui/WaypointEditableView.cc @@ -359,27 +359,30 @@ void WaypointEditableView::changedFrame(int index) void WaypointEditableView::changedCurrent(int state) { - m_ui->selectedBox->blockSignals(true); + //m_ui->selectedBox->blockSignals(true); if (state == 0) { if (wp->getCurrent() == true) //User clicked on the waypoint, that is already current { + qDebug() << "Editable " << wp->getId() << " changedCurrent: State 0, current true" ; m_ui->selectedBox->setChecked(true); m_ui->selectedBox->setCheckState(Qt::Checked); } else { + qDebug() << "Editable " << wp->getId() << " changedCurrent: State 0, current false"; m_ui->selectedBox->setChecked(false); m_ui->selectedBox->setCheckState(Qt::Unchecked); - wp->setCurrent(false); + //wp->setCurrent(false); } } else { + qDebug() << "Editable " << wp->getId() << " changedCurrent: State 2"; wp->setCurrent(true); - //emit changeCurrentWaypoint(wp->getId()); //the slot changeCurrentWaypoint() in WaypointList sets all other current flags to false + emit changeCurrentWaypoint(wp->getId()); //the slot changeCurrentWaypoint() in WaypointList sets all other current flags to false } - m_ui->selectedBox->blockSignals(false); + //m_ui->selectedBox->blockSignals(false); } void WaypointEditableView::updateValues() diff --git a/src/ui/WaypointList.cc b/src/ui/WaypointList.cc index d837b87050270c46aca72395b1629e7b8a73f65a..4b323e44239db05f604727167eb62d40d7ad7c6a 100644 --- a/src/ui/WaypointList.cc +++ b/src/ui/WaypointList.cc @@ -306,8 +306,12 @@ void WaypointList::changeCurrentWaypoint(quint16 seq) void WaypointList::currentWaypointEditableChanged(quint16 seq) { + qDebug() << "WaypointList::currentWaypointEditableChanged"; + if (uas) { + uas->getWaypointManager()->setCurrentEditable(seq); + /* const QVector &waypoints = uas->getWaypointManager()->getWaypointEditableList(); if (seq < waypoints.size()) @@ -326,7 +330,9 @@ void WaypointList::currentWaypointEditableChanged(quint16 seq) } } } + */ } + } void WaypointList::currentWaypointViewOnlyChanged(quint16 seq) @@ -458,8 +464,8 @@ void WaypointList::waypointEditableListChanged() connect(wpview, SIGNAL(moveDownWaypoint(Waypoint*)), this, SLOT(moveDown(Waypoint*))); connect(wpview, SIGNAL(moveUpWaypoint(Waypoint*)), this, SLOT(moveUp(Waypoint*))); connect(wpview, SIGNAL(removeWaypoint(Waypoint*)), this, SLOT(removeWaypoint(Waypoint*))); - //connect(wpview, SIGNAL(currentWaypointChanged(quint16)), this, SLOT(currentWaypointChanged(quint16))); commented, because unused - connect(wpview, SIGNAL(changeCurrentWaypoint(quint16)), this, SLOT(changeCurrentWaypointEditable(quint16))); + //connect(wpview, SIGNAL(currentWaypointChanged(quint16)), this, SLOT(currentWaypointChanged(quint16))); + connect(wpview, SIGNAL(changeCurrentWaypoint(quint16)), this, SLOT(currentWaypointEditableChanged(quint16))); editableListLayout->insertWidget(i, wpview); } WaypointEditableView *wpv = wpEditableViews.value(wp);