mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
1da509166a
Add default implementation of isEnabled() and add const
75 lines
2.8 KiB
C++
75 lines
2.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2015- Statoil ASA
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
|
//
|
|
// 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 "Ric3dWellLogCurveDeleteFeature.h"
|
|
|
|
#include "Rim3dWellLogCurve.h"
|
|
#include "Rim3dWellLogCurveCollection.h"
|
|
#include "RimProject.h"
|
|
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( Ric3dWellLogCurveDeleteFeature, "Ric3dWellLogCurveDeleteFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool Ric3dWellLogCurveDeleteFeature::isCommandEnabled() const
|
|
{
|
|
std::vector<Rim3dWellLogCurve*> objects;
|
|
caf::SelectionManager::instance()->objectsByType( &objects );
|
|
|
|
return !objects.empty();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void Ric3dWellLogCurveDeleteFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
std::vector<Rim3dWellLogCurve*> objects;
|
|
caf::SelectionManager::instance()->objectsByType( &objects );
|
|
|
|
if ( objects.empty() ) return;
|
|
|
|
Rim3dWellLogCurve* firstCurve = objects[0];
|
|
|
|
Rim3dWellLogCurveCollection* curveCollection = firstCurve->firstAncestorOrThisOfType<Rim3dWellLogCurveCollection>();
|
|
if ( !curveCollection ) return;
|
|
|
|
for ( Rim3dWellLogCurve* curve : objects )
|
|
{
|
|
curveCollection->remove3dWellLogCurve( curve );
|
|
delete curve;
|
|
}
|
|
curveCollection->redrawAffectedViewsAndEditors();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void Ric3dWellLogCurveDeleteFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Delete 3D Well Log Curve(s)" );
|
|
actionToSetup->setIcon( QIcon( ":/Erase.svg" ) );
|
|
applyShortcutWithHintToAction( actionToSetup, QKeySequence::Delete );
|
|
}
|