///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2018- Equinor ASA // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicMeasurementPickEventHandler.h" #include "RiaApplication.h" #include "RiuViewer.h" #include "RiuViewerCommands.h" #include "Rim3dView.h" #include "RimExtrudedCurveIntersection.h" #include "RimGridView.h" #include "RimMeasurement.h" #include "RimProject.h" #include "cafDisplayCoordTransform.h" #include "cafSelectionManager.h" #include "RivPartPriority.h" #include "cvfPart.h" #include //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RicMeasurementPickEventHandler* RicMeasurementPickEventHandler::instance() { static RicMeasurementPickEventHandler* singleton = new RicMeasurementPickEventHandler; return singleton; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicMeasurementPickEventHandler::registerAsPickEventHandler() { RiuViewer::setHoverCursor( Qt::CrossCursor ); RiuViewerCommands::setPickEventHandler( RicMeasurementPickEventHandler::instance() ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicMeasurementPickEventHandler::unregisterAsPickEventHandler() { RiuViewer::clearHoverCursor(); RiuViewerCommands::removePickEventHandlerIfActive( RicMeasurementPickEventHandler::instance() ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RicMeasurementPickEventHandler::RicMeasurementPickEventHandler() : m_polyLineModeEnabled( false ) { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicMeasurementPickEventHandler::enablePolyLineMode( bool polyLineModeEnabled ) { m_polyLineModeEnabled = polyLineModeEnabled; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicMeasurementPickEventHandler::handle3dPickEvent( const Ric3dPickEvent& eventObject ) { RimMeasurement* measurement = RimProject::current()->measurement(); if ( measurement && measurement->measurementMode() ) { const RiuPickItemInfo* firstGeometryPickInfo = nullptr; for ( const auto& info : eventObject.m_pickItemInfos ) { auto partCandidate = info.pickedPart(); if ( !firstGeometryPickInfo && partCandidate->priority() != RivPartPriority::PartType::Text ) { firstGeometryPickInfo = &info; } } Rim3dView* rimView = dynamic_cast( RiaApplication::instance()->activeMainOrComparisonGridView() ); if ( firstGeometryPickInfo && rimView ) { cvf::ref transForm = rimView->displayCoordTransform(); cvf::Vec3d domainCoord = transForm->transformToDomainCoord( firstGeometryPickInfo->globalPickedPoint() ); bool isControlButtonDown = QApplication::keyboardModifiers() & Qt::ControlModifier; bool isPolyLineMode = m_polyLineModeEnabled != isControlButtonDown; if ( !isPolyLineMode ) { if ( measurement->pointsInDomainCoords().size() > 1 ) { measurement->removeAllPoints(); } } measurement->addPointInDomainCoords( domainCoord ); } // Further Ui processing is stopped when true is returned return true; } return false; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicMeasurementPickEventHandler::notifyUnregistered() { }