mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-07 06:33:05 -06:00
103 lines
3.7 KiB
C++
103 lines
3.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2019- 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 "RicCreateGridCrossPlotFeature.h"
|
|
|
|
#include "RiaGuiApplication.h"
|
|
|
|
#include "RimEclipseView.h"
|
|
#include "RimGridCrossPlot.h"
|
|
#include "RimGridCrossPlotCollection.h"
|
|
#include "RimGridCrossPlotDataSet.h"
|
|
#include "RimGridView.h"
|
|
#include "RimMainPlotCollection.h"
|
|
#include "RimProject.h"
|
|
|
|
#include "RiuPlotMainWindowTools.h"
|
|
#include "RiuViewer.h"
|
|
|
|
#include "cafCmdFeatureManager.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicCreateGridCrossPlotFeature, "RicCreateGridCrossPlotFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicCreateGridCrossPlotFeature::isCommandEnabled()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicCreateGridCrossPlotFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
RimProject* project = RimProject::current();
|
|
RimGridCrossPlotCollection* collection =
|
|
caf::SelectionManager::instance()->selectedItemAncestorOfType<RimGridCrossPlotCollection>();
|
|
if ( !collection )
|
|
{
|
|
collection = project->mainPlotCollection()->gridCrossPlotCollection();
|
|
}
|
|
RimGridCrossPlot* plot = collection->createGridCrossPlot();
|
|
RimGridCrossPlotDataSet* dataSet = plot->createDataSet();
|
|
|
|
auto contextViewer = dynamic_cast<RiuViewer*>( caf::CmdFeatureManager::instance()->currentContextMenuTargetWidget() );
|
|
if ( contextViewer != nullptr )
|
|
{
|
|
// Command is triggered from viewer
|
|
dataSet->setCellFilterView( RiaApplication::instance()->activeMainOrComparisonGridView() );
|
|
}
|
|
else
|
|
{
|
|
// Triggered from context menu: get the selected view
|
|
// TODO: get the filter from somewhere
|
|
}
|
|
|
|
plot->loadDataAndUpdate();
|
|
plot->zoomAll();
|
|
plot->updateConnectedEditors();
|
|
|
|
collection->updateAllRequiredEditors();
|
|
RiaGuiApplication::instance()->getOrCreateAndShowMainPlotWindow();
|
|
RiuPlotMainWindowTools::selectAsCurrentItem( dataSet );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicCreateGridCrossPlotFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
auto contextViewer = dynamic_cast<RiuViewer*>( caf::CmdFeatureManager::instance()->currentContextMenuTargetWidget() );
|
|
if ( contextViewer != nullptr )
|
|
{
|
|
// Command is triggered from viewer
|
|
actionToSetup->setText( "Create Grid Cross Plot from 3d View" );
|
|
}
|
|
else
|
|
{
|
|
// Command triggered from project tree or file menu
|
|
actionToSetup->setText( "Create Grid Cross Plot" );
|
|
}
|
|
|
|
actionToSetup->setIcon( QIcon( ":/SummaryXPlotsLight16x16.png" ) );
|
|
}
|