mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-08 23:23:01 -06:00
137 lines
5.0 KiB
C++
137 lines
5.0 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// 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 <vector>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
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<Rim3dView*>( RiaApplication::instance()->activeMainOrComparisonGridView() );
|
|
if ( firstGeometryPickInfo && rimView )
|
|
{
|
|
cvf::ref<caf::DisplayCoordTransform> 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()
|
|
{
|
|
}
|