2020-11-13 08:37:08 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RicCreateGridStatisticsPlotFeature.h"
|
|
|
|
|
|
|
|
#include "RiaGuiApplication.h"
|
|
|
|
|
2021-06-23 08:17:56 -05:00
|
|
|
#include "RimEclipseResultDefinition.h"
|
|
|
|
#include "RimEclipseView.h"
|
2020-11-13 08:37:08 -06:00
|
|
|
#include "RimGridStatisticsPlot.h"
|
|
|
|
#include "RimGridStatisticsPlotCollection.h"
|
|
|
|
#include "RimMainPlotCollection.h"
|
|
|
|
|
|
|
|
#include "RiuPlotMainWindow.h"
|
|
|
|
#include "RiuPlotMainWindowTools.h"
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
|
|
|
CAF_CMD_SOURCE_INIT( RicCreateGridStatisticsPlotFeature, "RicCreateGridStatisticsPlotFeature" );
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicCreateGridStatisticsPlotFeature::onActionTriggered( bool isChecked )
|
|
|
|
{
|
2022-08-19 07:30:25 -05:00
|
|
|
RimGridStatisticsPlotCollection* collection = RimMainPlotCollection::current()->gridStatisticsPlotCollection();
|
2020-11-13 08:37:08 -06:00
|
|
|
|
|
|
|
RimGridStatisticsPlot* plot = new RimGridStatisticsPlot();
|
2021-06-23 08:17:56 -05:00
|
|
|
|
|
|
|
RimEclipseView* activeView = dynamic_cast<RimEclipseView*>( RiaApplication::instance()->activeGridView() );
|
|
|
|
if ( activeView ) plot->setPropertiesFromView( activeView );
|
|
|
|
|
2020-11-13 08:37:08 -06:00
|
|
|
plot->zoomAll();
|
|
|
|
plot->updateConnectedEditors();
|
|
|
|
plot->setAsPlotMdiWindow();
|
2020-12-03 07:46:04 -06:00
|
|
|
plot->loadDataAndUpdate();
|
2020-11-13 08:37:08 -06:00
|
|
|
|
|
|
|
collection->addGridStatisticsPlot( plot );
|
|
|
|
collection->updateAllRequiredEditors();
|
|
|
|
RiaGuiApplication::instance()->getOrCreateAndShowMainPlotWindow();
|
2022-08-18 05:37:51 -05:00
|
|
|
RiuPlotMainWindowTools::onObjectAppended( plot );
|
2020-11-13 08:37:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicCreateGridStatisticsPlotFeature::setupActionLook( QAction* actionToSetup )
|
|
|
|
{
|
|
|
|
actionToSetup->setText( "Create Grid Statistics Plot" );
|
2021-06-10 02:33:22 -05:00
|
|
|
actionToSetup->setIcon( QIcon( ":/statistics.png" ) );
|
2020-11-13 08:37:08 -06:00
|
|
|
}
|