mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
Modernize the interface to selection system. Create and return data instead of populating incoming parameters.
76 lines
2.9 KiB
C++
76 lines
2.9 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2022 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 "RicAppendSummaryCurvesForSummaryAddressesFeature.h"
|
|
|
|
#include "Summary/RiaSummaryPlotTools.h"
|
|
|
|
#include "RimSummaryAddress.h"
|
|
#include "RimSummaryMultiPlot.h"
|
|
#include "RimSummaryPlot.h"
|
|
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicAppendSummaryCurvesForSummaryAddressesFeature, "RicAppendSummaryCurvesForSummaryAddressesFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicAppendSummaryCurvesForSummaryAddressesFeature::isCommandEnabled() const
|
|
{
|
|
return !selectedAddresses().empty();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicAppendSummaryCurvesForSummaryAddressesFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
auto addresses = selectedAddresses();
|
|
if ( addresses.empty() ) return;
|
|
|
|
auto selectedMultiPlots = RiaSummaryPlotTools::selectedSummaryMultiPlots();
|
|
for ( auto summaryMultiPlot : selectedMultiPlots )
|
|
{
|
|
for ( auto plot : summaryMultiPlot->summaryPlots() )
|
|
{
|
|
plot->handleDroppedObjects( addresses );
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicAppendSummaryCurvesForSummaryAddressesFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
auto text = QString( "Append Curves For Vector" );
|
|
actionToSetup->setText( text );
|
|
actionToSetup->setIcon( QIcon( ":/SummaryCurve16x16.png" ) );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<caf::PdmObjectHandle*> RicAppendSummaryCurvesForSummaryAddressesFeature::selectedAddresses()
|
|
{
|
|
return caf::SelectionManager::instance()->objectsByType<caf::PdmObjectHandle>();
|
|
}
|