MeasureDistance

- Abort mode via ESCAPE added

BoxZoom, BoxSelection and BoxElementSelection
- Change the cursor to give the user feedback about active mode.
- Abort mode via ESCAPE
This commit is contained in:
uLeonis
2020-12-21 17:32:14 +01:00
parent 3b449e1ce9
commit 96f2ba2cb5
10 changed files with 299 additions and 45 deletions

View File

@@ -1759,8 +1759,15 @@ void View3DInventorViewer::startSelection(View3DInventorViewer::SelectionMode mo
navigation->startSelection(NavigationStyle::SelectionMode(mode));
}
void View3DInventorViewer::abortSelection()
{
setCursorEnabled(true);
navigation->abortSelection();
}
void View3DInventorViewer::stopSelection()
{
setCursorEnabled(true);
navigation->stopSelection();
}