///////////////////////////////////////////////////////////////////////////////// // // 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicNewMultiPlotFeature.h" #include "RicSummaryPlotBuilder.h" #include "RimPlot.h" #include "RimWellLogTrack.h" #include "RiuPlotMainWindowTools.h" #include "cafSelectionManager.h" #include "cvfAssert.h" #include RICF_SOURCE_INIT( RicNewMultiPlotFeature, "RicNewMultiPlotFeature", "createMultiPlot" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RicNewMultiPlotFeature::RicNewMultiPlotFeature() { CAF_PDM_InitFieldNoDefault( &m_plots, "plots", "Plots" ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::PdmScriptResponse RicNewMultiPlotFeature::execute() { if ( !m_plots().empty() ) { std::vector plots; for ( auto ptr : m_plots() ) { plots.push_back( reinterpret_cast( ptr ) ); } auto copyOfPlots = RicSummaryPlotBuilder::duplicatePlots( plots ); RicSummaryPlotBuilder::createAndAppendMultiPlot( copyOfPlots ); } return caf::PdmScriptResponse(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicNewMultiPlotFeature::isCommandEnabled() const { auto plots = selectedPlots(); std::vector selectedUiItems; caf::SelectionManager::instance()->selectedItems( selectedUiItems ); return !plots.empty() && plots.size() == selectedUiItems.size(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewMultiPlotFeature::onActionTriggered( bool isChecked ) { m_plots.v().clear(); auto plots = selectedPlots(); for ( RimPlot* plot : plots ) { m_plots.v().push_back( reinterpret_cast( plot ) ); } execute(); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewMultiPlotFeature::setupActionLook( QAction* actionToSetup ) { actionToSetup->setText( "Create Multi Plot from Selected Plots" ); actionToSetup->setIcon( QIcon( ":/MultiPlot16x16.png" ) ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- std::vector RicNewMultiPlotFeature::selectedPlots() { std::vector uiItems; caf::SelectionManager::instance()->selectedItems( uiItems ); std::vector plots; for ( caf::PdmUiItem* uiItem : uiItems ) { RimPlot* plotInterface = dynamic_cast( uiItem ); // Special case for all well log tracks which currently need to be in Well Log Plot for // depth information and cannot be moved into multiplots. // TODO: copy depth information into well log tracks to allow their use separately. RimWellLogTrack* wellLogTrack = dynamic_cast( plotInterface ); if ( plotInterface && !wellLogTrack ) { plots.push_back( plotInterface ); } } return plots; }