Files
ResInsight/ApplicationCode/Commands/GridCrossPlotCommands/RicCreateGridCrossPlotDataSetFeature.cpp
T

64 lines
2.5 KiB
C++
Raw Normal View History

2019-02-21 12:52:23 +01:00
/////////////////////////////////////////////////////////////////////////////////
//
// 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 "RicCreateGridCrossPlotDataSetFeature.h"
2019-02-21 12:52:23 +01:00
2019-05-06 10:36:05 +02:00
#include "RiaGuiApplication.h"
2019-02-21 12:52:23 +01:00
#include "RimGridCrossPlot.h"
#include "RimGridCrossPlotDataSet.h"
2019-02-21 12:52:23 +01:00
#include "RimProject.h"
#include "RiuPlotMainWindowTools.h"
#include "cafSelectionManager.h"
#include <QAction>
CAF_CMD_SOURCE_INIT( RicCreateGridCrossPlotDataSetFeature, "RicCreateGridCrossPlotDataSetFeature" );
2019-02-21 12:52:23 +01:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RicCreateGridCrossPlotDataSetFeature::isCommandEnabled()
2019-02-21 12:52:23 +01:00
{
return caf::SelectionManager::instance()->selectedItemOfType<RimGridCrossPlot>() != nullptr;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicCreateGridCrossPlotDataSetFeature::onActionTriggered( bool isChecked )
2019-02-21 12:52:23 +01:00
{
RimGridCrossPlot* crossPlot = caf::SelectionManager::instance()->selectedItemOfType<RimGridCrossPlot>();
RimGridCrossPlotDataSet* dataSet = crossPlot->createDataSet();
dataSet->loadDataAndUpdate( true );
2019-05-06 10:36:05 +02:00
RiaGuiApplication::instance()->getOrCreateMainPlotWindow();
RiuPlotMainWindowTools::selectAsCurrentItem( dataSet );
2019-02-21 12:52:23 +01:00
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicCreateGridCrossPlotDataSetFeature::setupActionLook( QAction* actionToSetup )
2019-02-21 12:52:23 +01:00
{
actionToSetup->setText( "Create Data Set" );
actionToSetup->setIcon( QIcon( ":/WellLogCurve16x16.png" ) );
2019-02-21 12:52:23 +01:00
}