mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
* Select top level summary cases and ensembles for reload Simplifies the summary case reloading process by removing the unnecessary `createAddressObjects` parameter and instead using the `showTreeNodes` flag to determine when to create address objects. This change optimizes the loading process, especially for ensembles, by avoiding the creation of addresses for all cases, which improves performance. It also moves the responsibility of building tree nodes into a dedicated function `buildTreeNodesIfRequired` which is only called when needed. * Remove obsolete parallel loop * Use zoomAll * Add updateConnectedEditors to make sure the tree nodes are updated correctly
85 lines
3.0 KiB
C++
85 lines
3.0 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 "RicShowDataSourcesForRealization.h"
|
|
|
|
#include "RimSummaryCase.h"
|
|
|
|
#include "cafSelectionManager.h"
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicShowDataSourcesForRealization, "RicShowDataSourcesForRealization" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicShowDataSourcesForRealization::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Show Data Sources" );
|
|
|
|
actionToSetup->setCheckable( true );
|
|
actionToSetup->setChecked( isCommandChecked() );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicShowDataSourcesForRealization::isCommandChecked() const
|
|
{
|
|
const auto selection = caf::SelectionManager::instance()->objectsByType<RimSummaryCase>();
|
|
if ( !selection.empty() )
|
|
{
|
|
return selection.front()->showTreeNodes();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicShowDataSourcesForRealization::isCommandEnabled() const
|
|
{
|
|
const auto selection = caf::SelectionManager::instance()->objectsByType<RimSummaryCase>();
|
|
|
|
for ( RimSummaryCase* summaryCase : selection )
|
|
{
|
|
if ( summaryCase->ensemble() )
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicShowDataSourcesForRealization::onActionTriggered( bool isChecked )
|
|
{
|
|
const auto selection = caf::SelectionManager::instance()->objectsByType<RimSummaryCase>();
|
|
if ( selection.empty() ) return;
|
|
|
|
bool enableDataSources = !selection.front()->showTreeNodes();
|
|
|
|
for ( auto summaryCase : selection )
|
|
{
|
|
summaryCase->setShowTreeNodes( enableDataSources );
|
|
}
|
|
}
|