///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2020 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 "RicNewVfpPlotFeature.h" #include "RiaApplication.h" #include "RiaGuiApplication.h" #include "RimMainPlotCollection.h" #include "RimSimWellInView.h" #include "RimVfpPlot.h" #include "RimVfpPlotCollection.h" #include "RimWellLogPlot.h" #include "RimWellLogTrack.h" #include "RimWellPath.h" #include "RiuFileDialogTools.h" #include "RiuPlotMainWindow.h" #include "RiuPlotMainWindowTools.h" #include "cafSelectionManagerTools.h" #include #include #include CAF_CMD_SOURCE_INIT( RicNewVfpPlotFeature, "RicNewVfpPlotFeature" ); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- bool RicNewVfpPlotFeature::isCommandEnabled() { RimVfpPlotCollection* plotColl = caf::firstAncestorOfTypeFromSelectedObject(); return ( plotColl != nullptr ); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewVfpPlotFeature::onActionTriggered( bool isChecked ) { RiaApplication* app = RiaGuiApplication::instance(); RiuPlotMainWindow* mpw = RiaGuiApplication::instance()->mainPlotWindow(); const QString vfpDataKey = "VFP_DATA"; QString defaultDir = app->lastUsedDialogDirectory( vfpDataKey ); QStringList fileNames = RiuFileDialogTools::getOpenFileNames( mpw, "Import VFP Files", defaultDir, "VFP Text Files (*.ecl *.vfp);;All Files (*.*)" ); if ( fileNames.isEmpty() ) return; app->setLastUsedDialogDirectory( vfpDataKey, QFileInfo( fileNames.last() ).absolutePath() ); RimVfpPlotCollection* vfpPlotColl = RimMainPlotCollection::current()->vfpPlotCollection(); if ( vfpPlotColl ) { std::vector vfpPlots; for ( const auto& fileName : fileNames ) { RimVfpPlot* vfpPlot = new RimVfpPlot(); vfpPlot->setFileName( fileName ); vfpPlotColl->addPlot( vfpPlot ); vfpPlots.push_back( vfpPlot ); } vfpPlotColl->updateConnectedEditors(); for ( auto plot : vfpPlots ) { plot->loadDataAndUpdate(); } RiuPlotMainWindowTools::showPlotMainWindow(); if ( !vfpPlots.empty() ) { RiuPlotMainWindowTools::onObjectAppended( vfpPlots.front() ); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicNewVfpPlotFeature::setupActionLook( QAction* actionToSetup ) { actionToSetup->setText( "New VFP Plots" ); actionToSetup->setIcon( QIcon( ":/VfpPlot.svg" ) ); }