2018-01-10 13:55:48 +01:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2016- Statoil ASA
|
2019-02-18 13:09:50 +01:00
|
|
|
//
|
2018-01-10 13:55:48 +01:00
|
|
|
// 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.
|
2019-02-18 13:09:50 +01:00
|
|
|
//
|
2018-01-10 13:55:48 +01:00
|
|
|
// 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.
|
2019-02-18 13:09:50 +01:00
|
|
|
//
|
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2018-01-10 13:55:48 +01:00
|
|
|
// for more details.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#include "RicImportSummaryCasesFeature.h"
|
|
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
#include "RiaSummaryDefines.h"
|
2019-01-14 13:54:19 +01:00
|
|
|
#include "SummaryPlotCommands/RicNewSummaryCurveFeature.h"
|
|
|
|
|
|
2019-05-06 10:36:05 +02:00
|
|
|
#include "RiaGuiApplication.h"
|
2018-04-24 14:12:02 +02:00
|
|
|
#include "RiaLogging.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
#include "RiaPreferences.h"
|
|
|
|
|
|
2019-08-16 14:10:45 +02:00
|
|
|
#include "RicRecursiveFileSearchDialog.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2018-04-13 11:11:05 +02:00
|
|
|
#include "RifSummaryCaseRestartSelector.h"
|
|
|
|
|
|
2019-02-18 13:09:50 +01:00
|
|
|
#include "RimEnsembleCurveSet.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
#include "RimMainPlotCollection.h"
|
|
|
|
|
#include "RimOilField.h"
|
|
|
|
|
#include "RimProject.h"
|
|
|
|
|
#include "RimSummaryCase.h"
|
|
|
|
|
#include "RimSummaryCaseMainCollection.h"
|
2024-07-29 15:38:17 +02:00
|
|
|
#include "RimSummaryEnsemble.h"
|
2022-03-25 11:39:12 +01:00
|
|
|
#include "RimSummaryMultiPlot.h"
|
2019-02-18 13:09:50 +01:00
|
|
|
#include "RimSummaryPlot.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
|
|
|
|
|
#include "RiuMainWindow.h"
|
2019-02-18 13:09:50 +01:00
|
|
|
#include "RiuPlotMainWindow.h"
|
2019-10-25 13:15:02 +02:00
|
|
|
#include "RiuPlotMainWindowTools.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2022-03-25 11:39:12 +01:00
|
|
|
#include "PlotBuilderCommands/RicSummaryPlotBuilder.h"
|
2019-02-18 13:09:50 +01:00
|
|
|
#include "SummaryPlotCommands/RicNewSummaryEnsembleCurveSetFeature.h"
|
2019-08-09 09:54:55 +02:00
|
|
|
#include "SummaryPlotCommands/RicSummaryPlotFeatureImpl.h"
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2018-05-03 13:35:40 +02:00
|
|
|
#include "cafProgressInfo.h"
|
2018-05-07 12:00:34 +02:00
|
|
|
#include "cafSelectionManagerTools.h"
|
2018-05-03 13:35:40 +02:00
|
|
|
|
2018-01-10 13:55:48 +01:00
|
|
|
#include <QAction>
|
2020-08-21 18:56:12 +02:00
|
|
|
#include <QFileInfo>
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
CAF_CMD_SOURCE_INIT( RicImportSummaryCasesFeature, "RicImportSummaryCasesFeature" );
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2018-04-18 13:56:01 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-04-18 13:56:01 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
QString RicImportSummaryCasesFeature::m_pathFilter = "*";
|
2018-04-18 13:56:01 +02:00
|
|
|
QString RicImportSummaryCasesFeature::m_fileNameFilter = "*";
|
|
|
|
|
|
2018-01-10 13:55:48 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-01-10 13:55:48 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 10:40:57 +02:00
|
|
|
void RicImportSummaryCasesFeature::onActionTriggered( bool isChecked )
|
2018-01-10 13:55:48 +01:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
RiaGuiApplication* app = RiaGuiApplication::instance();
|
|
|
|
|
QString pathCacheName = "INPUT_FILES";
|
|
|
|
|
auto result = runRecursiveSummaryCaseFileSearchDialog( "Import Summary Cases", pathCacheName );
|
|
|
|
|
QStringList fileNames = result.files;
|
|
|
|
|
RiaDefines::FileType fileType = RicRecursiveFileSearchDialog::mapSummaryFileType( result.fileType );
|
2019-02-18 13:09:50 +01:00
|
|
|
|
2023-09-15 11:06:18 +02:00
|
|
|
if ( fileNames.isEmpty() ) return;
|
2023-04-20 10:16:43 +02:00
|
|
|
|
2023-09-15 11:06:18 +02:00
|
|
|
CreateConfig createConfig{ .fileType = fileType, .ensembleOrGroup = false, .allowDialogs = true };
|
|
|
|
|
auto [isOk, cases] = createSummaryCasesFromFiles( fileNames, createConfig );
|
|
|
|
|
if ( !isOk ) return;
|
2018-04-25 12:01:26 +02:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
addSummaryCases( cases );
|
|
|
|
|
if ( !cases.empty() )
|
2019-02-18 13:09:50 +01:00
|
|
|
{
|
2022-03-25 11:39:12 +01:00
|
|
|
for ( auto sumcase : cases )
|
2019-10-25 13:15:02 +02:00
|
|
|
{
|
2022-03-25 11:39:12 +01:00
|
|
|
RicSummaryPlotBuilder::createAndAppendDefaultSummaryMultiPlot( { sumcase }, {} );
|
2019-10-25 13:15:02 +02:00
|
|
|
}
|
2019-02-18 13:09:50 +01:00
|
|
|
}
|
2018-04-19 13:38:07 +02:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
addCasesToGroupIfRelevant( cases );
|
2018-05-07 12:00:34 +02:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
for ( const auto& rimCase : cases )
|
|
|
|
|
app->addToRecentFiles( rimCase->summaryHeaderFilename() );
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2018-05-07 12:00:34 +02:00
|
|
|
RiuPlotMainWindow* mainPlotWindow = app->getOrCreateAndShowMainPlotWindow();
|
2019-09-06 10:40:57 +02:00
|
|
|
if ( mainPlotWindow && !cases.empty() )
|
2018-05-07 12:00:34 +02:00
|
|
|
{
|
2022-04-07 16:24:27 +02:00
|
|
|
mainPlotWindow->updateMultiPlotToolBar();
|
2018-05-07 12:00:34 +02:00
|
|
|
}
|
|
|
|
|
|
2023-09-11 15:12:18 +02:00
|
|
|
std::vector<RimCase*> allCases = app->project()->allGridCases();
|
|
|
|
|
if ( allCases.empty() )
|
2018-01-10 13:55:48 +01:00
|
|
|
{
|
2022-05-23 10:54:09 +02:00
|
|
|
RiuMainWindow::closeIfOpen();
|
2018-01-10 13:55:48 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-01-10 13:55:48 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 10:40:57 +02:00
|
|
|
void RicImportSummaryCasesFeature::setupActionLook( QAction* actionToSetup )
|
2018-01-10 13:55:48 +01:00
|
|
|
{
|
2019-09-06 10:40:57 +02:00
|
|
|
actionToSetup->setIcon( QIcon( ":/SummaryCases16x16.png" ) );
|
|
|
|
|
actionToSetup->setText( "Import Summary Cases Recursively" );
|
2018-01-10 13:55:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-01-10 13:55:48 +01:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-04-20 10:16:43 +02:00
|
|
|
std::pair<bool, std::vector<RimSummaryCase*>> RicImportSummaryCasesFeature::createAndAddSummaryCasesFromFiles( const QStringList& fileNames,
|
|
|
|
|
bool doCreateDefaultPlot )
|
|
|
|
|
|
2018-04-19 13:38:07 +02:00
|
|
|
{
|
2019-05-06 10:36:05 +02:00
|
|
|
RiaGuiApplication* app = RiaGuiApplication::instance();
|
2018-05-11 09:52:46 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
CreateConfig createConfig{ .fileType = RiaDefines::FileType::SMSPEC, .ensembleOrGroup = false, .allowDialogs = true };
|
|
|
|
|
auto [isOk, cases] = createSummaryCasesFromFiles( fileNames, createConfig );
|
|
|
|
|
if ( isOk )
|
2018-04-19 13:38:07 +02:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
addSummaryCases( cases );
|
|
|
|
|
if ( !cases.empty() && doCreateDefaultPlot )
|
2019-02-18 13:09:50 +01:00
|
|
|
{
|
2022-05-27 12:08:39 +02:00
|
|
|
RimSummaryMultiPlot* plotToSelect = nullptr;
|
2023-04-20 10:16:43 +02:00
|
|
|
for ( auto sumCase : cases )
|
2022-05-27 12:08:39 +02:00
|
|
|
{
|
|
|
|
|
plotToSelect = RicSummaryPlotBuilder::createAndAppendDefaultSummaryMultiPlot( { sumCase }, {} );
|
|
|
|
|
}
|
2022-03-25 11:39:12 +01:00
|
|
|
|
2022-05-27 12:08:39 +02:00
|
|
|
if ( plotToSelect )
|
2019-10-25 13:15:02 +02:00
|
|
|
{
|
2022-08-18 03:37:51 -07:00
|
|
|
RiuPlotMainWindowTools::onObjectAppended( plotToSelect );
|
2019-10-25 13:15:02 +02:00
|
|
|
}
|
2019-02-18 13:09:50 +01:00
|
|
|
}
|
2018-05-11 09:52:46 +02:00
|
|
|
|
|
|
|
|
RiuPlotMainWindow* mainPlotWindow = app->getOrCreateAndShowMainPlotWindow();
|
2023-04-20 10:16:43 +02:00
|
|
|
if ( mainPlotWindow && !cases.empty() )
|
2018-05-11 09:52:46 +02:00
|
|
|
{
|
2022-04-07 16:24:27 +02:00
|
|
|
mainPlotWindow->updateMultiPlotToolBar();
|
2018-05-11 09:52:46 +02:00
|
|
|
|
|
|
|
|
// Close main window if there are no eclipse cases imported
|
2023-09-11 15:12:18 +02:00
|
|
|
std::vector<RimCase*> allCases = app->project()->allGridCases();
|
|
|
|
|
if ( allCases.empty() )
|
2018-05-11 09:52:46 +02:00
|
|
|
{
|
2022-05-23 10:54:09 +02:00
|
|
|
RiuMainWindow::closeIfOpen();
|
2018-05-11 09:52:46 +02:00
|
|
|
}
|
|
|
|
|
}
|
2023-04-20 10:16:43 +02:00
|
|
|
return std::make_pair( true, cases );
|
2018-04-19 13:38:07 +02:00
|
|
|
}
|
2018-05-11 09:52:46 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
return std::make_pair( false, cases );
|
2018-04-19 13:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-04-19 13:38:07 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-04-20 10:16:43 +02:00
|
|
|
std::pair<bool, std::vector<RimSummaryCase*>> RicImportSummaryCasesFeature::createSummaryCasesFromFiles( const QStringList& fileNames,
|
|
|
|
|
CreateConfig createConfig )
|
2018-01-10 13:55:48 +01:00
|
|
|
{
|
2019-09-13 11:12:58 +02:00
|
|
|
RiaApplication* app = RiaApplication::instance();
|
|
|
|
|
RimProject* proj = app->project();
|
|
|
|
|
|
2023-02-26 10:48:40 +01:00
|
|
|
RimSummaryCaseMainCollection* sumCaseColl = proj->activeOilField() ? proj->activeOilField()->summaryCaseMainCollection() : nullptr;
|
2018-04-18 13:56:01 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
std::vector<RimSummaryCase*> newCases;
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
if ( !sumCaseColl ) return std::make_pair( false, newCases );
|
2020-04-16 06:58:35 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
std::vector<RifSummaryCaseFileResultInfo> importFileInfos;
|
|
|
|
|
if ( createConfig.fileType == RiaDefines::FileType::SMSPEC )
|
2020-04-16 06:58:35 +02:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
RifSummaryCaseRestartSelector fileSelector;
|
2020-04-16 06:58:35 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
if ( !RiaGuiApplication::isRunning() || !createConfig.allowDialogs )
|
|
|
|
|
{
|
|
|
|
|
fileSelector.showDialog( false );
|
|
|
|
|
}
|
2018-04-24 14:12:02 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
fileSelector.setEnsembleOrGroupMode( createConfig.ensembleOrGroup );
|
|
|
|
|
fileSelector.determineFilesToImportFromSummaryFiles( fileNames );
|
2018-04-24 14:12:02 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
importFileInfos = fileSelector.summaryFileInfos();
|
|
|
|
|
|
|
|
|
|
if ( fileSelector.foundErrors() )
|
|
|
|
|
{
|
|
|
|
|
QString errorMessage = fileSelector.createCombinedErrorMessage();
|
|
|
|
|
RiaLogging::error( errorMessage );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2018-04-20 08:27:42 +02:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
// No restart files for these file types: just copy to result info
|
|
|
|
|
for ( auto f : fileNames )
|
|
|
|
|
{
|
|
|
|
|
importFileInfos.push_back( RifSummaryCaseFileResultInfo( f, false, createConfig.fileType ) );
|
|
|
|
|
}
|
2018-04-20 08:27:42 +02:00
|
|
|
}
|
2018-04-13 11:11:05 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
if ( !importFileInfos.empty() )
|
2018-04-24 14:12:02 +02:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
std::vector<RimSummaryCase*> sumCases = sumCaseColl->createSummaryCasesFromFileInfos( importFileInfos, true );
|
|
|
|
|
newCases.insert( newCases.end(), sumCases.begin(), sumCases.end() );
|
2018-04-24 14:12:02 +02:00
|
|
|
}
|
2018-04-19 13:38:07 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
return std::make_pair( true, newCases );
|
2018-04-19 13:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-04-19 13:38:07 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-11-03 12:19:24 +01:00
|
|
|
void RicImportSummaryCasesFeature::addSummaryCases( const std::vector<RimSummaryCase*>& cases )
|
2018-04-19 13:38:07 +02:00
|
|
|
{
|
2023-02-26 10:48:40 +01:00
|
|
|
RiaApplication* app = RiaApplication::instance();
|
|
|
|
|
RimProject* proj = app->project();
|
|
|
|
|
RimSummaryCaseMainCollection* sumCaseColl = proj->activeOilField() ? proj->activeOilField()->summaryCaseMainCollection() : nullptr;
|
2023-03-13 08:10:33 +01:00
|
|
|
if ( !sumCaseColl ) return;
|
|
|
|
|
|
|
|
|
|
bool expandFirstCase = sumCaseColl->allSummaryCases().empty();
|
2019-09-06 10:40:57 +02:00
|
|
|
sumCaseColl->addCases( cases );
|
2019-01-14 13:54:19 +01:00
|
|
|
|
2018-03-19 11:02:22 +01:00
|
|
|
sumCaseColl->updateAllRequiredEditors();
|
2023-03-13 08:10:33 +01:00
|
|
|
|
|
|
|
|
if ( expandFirstCase && !cases.empty() )
|
|
|
|
|
{
|
|
|
|
|
RiuPlotMainWindowTools::setExpanded( cases.front() );
|
|
|
|
|
}
|
2018-05-07 12:00:34 +02:00
|
|
|
}
|
2018-01-10 13:55:48 +01:00
|
|
|
|
2018-05-07 12:00:34 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-05-07 12:00:34 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-11-03 12:19:24 +01:00
|
|
|
void RicImportSummaryCasesFeature::addCasesToGroupIfRelevant( const std::vector<RimSummaryCase*>& cases )
|
2018-05-07 12:00:34 +02:00
|
|
|
{
|
2024-07-29 15:38:17 +02:00
|
|
|
std::vector<RimSummaryEnsemble*> selectedColl = caf::selectedObjectsByTypeStrict<RimSummaryEnsemble*>();
|
2018-03-16 09:02:28 +01:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
if ( selectedColl.size() == 1 )
|
2018-05-07 12:00:34 +02:00
|
|
|
{
|
2024-07-29 15:38:17 +02:00
|
|
|
RimSummaryEnsemble* coll = selectedColl.front();
|
2023-05-12 21:41:34 +02:00
|
|
|
RimSummaryCaseMainCollection* mainColl = coll->firstAncestorOrThisOfType<RimSummaryCaseMainCollection>();
|
2018-05-07 12:00:34 +02:00
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
if ( mainColl )
|
2018-05-07 12:00:34 +02:00
|
|
|
{
|
2019-09-06 10:40:57 +02:00
|
|
|
for ( const auto sumCase : cases )
|
2018-05-07 12:00:34 +02:00
|
|
|
{
|
2019-09-06 10:40:57 +02:00
|
|
|
mainColl->removeCase( sumCase );
|
|
|
|
|
selectedColl.front()->addCase( sumCase );
|
2018-05-07 12:00:34 +02:00
|
|
|
}
|
|
|
|
|
mainColl->updateConnectedEditors();
|
|
|
|
|
}
|
2018-03-15 14:23:48 +01:00
|
|
|
}
|
2018-01-10 13:55:48 +01:00
|
|
|
}
|
2018-04-18 13:56:01 +02:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-02-18 13:09:50 +01:00
|
|
|
///
|
2018-04-18 13:56:01 +02:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-04-20 10:16:43 +02:00
|
|
|
RicRecursiveFileSearchDialogResult
|
2023-02-26 10:48:40 +01:00
|
|
|
RicImportSummaryCasesFeature::runRecursiveSummaryCaseFileSearchDialogWithGrouping( const QString& dialogTitle, const QString& pathCacheName )
|
2018-04-18 13:56:01 +02:00
|
|
|
{
|
2019-02-18 13:09:50 +01:00
|
|
|
RiaApplication* app = RiaApplication::instance();
|
2019-09-06 10:40:57 +02:00
|
|
|
QString defaultDir = app->lastUsedDialogDirectory( pathCacheName );
|
2018-04-18 13:56:01 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
auto fileTypes = { RicRecursiveFileSearchDialog::FileType::SMSPEC,
|
|
|
|
|
RicRecursiveFileSearchDialog::FileType::REVEAL_SUMMARY,
|
|
|
|
|
RicRecursiveFileSearchDialog::FileType::STIMPLAN_SUMMARY };
|
|
|
|
|
|
|
|
|
|
RicRecursiveFileSearchDialogResult result =
|
|
|
|
|
RicRecursiveFileSearchDialog::runRecursiveSearchDialog( nullptr, dialogTitle, defaultDir, m_pathFilter, m_fileNameFilter, fileTypes );
|
2018-04-18 13:56:01 +02:00
|
|
|
|
|
|
|
|
// Remember filters
|
2019-02-18 13:09:50 +01:00
|
|
|
m_pathFilter = result.pathFilter;
|
2018-04-18 13:56:01 +02:00
|
|
|
m_fileNameFilter = result.fileNameFilter;
|
|
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
if ( !result.ok ) return result;
|
2018-04-18 13:56:01 +02:00
|
|
|
|
|
|
|
|
// Remember the path to next time
|
2019-09-06 10:40:57 +02:00
|
|
|
app->setLastUsedDialogDirectory( pathCacheName, QFileInfo( result.rootDir ).absoluteFilePath() );
|
2018-04-18 13:56:01 +02:00
|
|
|
|
2023-04-20 10:16:43 +02:00
|
|
|
return result;
|
2021-09-21 22:27:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
///
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2023-04-20 10:16:43 +02:00
|
|
|
RicRecursiveFileSearchDialogResult RicImportSummaryCasesFeature::runRecursiveSummaryCaseFileSearchDialog( const QString& dialogTitle,
|
|
|
|
|
const QString& pathCacheName )
|
2021-09-21 22:27:36 +02:00
|
|
|
{
|
2023-04-20 10:16:43 +02:00
|
|
|
return runRecursiveSummaryCaseFileSearchDialogWithGrouping( dialogTitle, pathCacheName );
|
2018-04-18 13:56:01 +02:00
|
|
|
}
|