| 93 | } |
| 94 | |
| 95 | void QmitkPointListView::OnPointDoubleClicked(const QModelIndex &index) |
| 96 | { |
| 97 | mitk::PointSet::PointType p; |
| 98 | mitk::PointSet::PointIdentifier id; |
| 99 | m_PointListModel->GetPointForModelIndex(index, p, id); |
| 100 | QmitkEditPointDialog _EditPointDialog(this); |
| 101 | _EditPointDialog.SetPoint(m_PointListModel->GetPointSet(), id, m_PointListModel->GetTimeStep()); |
| 102 | _EditPointDialog.exec(); |
| 103 | } |
| 104 | |
| 105 | void QmitkPointListView::OnPointSetSelectionChanged() |
| 106 | { |
nothing calls this directly
no test coverage detected