mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
82 lines
3.2 KiB
C++
82 lines
3.2 KiB
C++
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2024 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 "RicExportPolygonPolFeature.h"
|
|
|
|
#include "RiaGuiApplication.h"
|
|
#include "RiaLogging.h"
|
|
|
|
#include "Polygons/RimPolygon.h"
|
|
#include "Polygons/RimPolygonInView.h"
|
|
#include "Polygons/RimPolygonTools.h"
|
|
|
|
#include "RiuFileDialogTools.h"
|
|
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include <QAction>
|
|
#include <QFileInfo>
|
|
|
|
CAF_CMD_SOURCE_INIT( RicExportPolygonPolFeature, "RicExportPolygonPolFeature" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicExportPolygonPolFeature::RicExportPolygonPolFeature()
|
|
: RicBasicPolygonFeature( true /*multiselect*/ )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicExportPolygonPolFeature::onActionTriggered( bool isChecked )
|
|
{
|
|
auto selPolygons = selectedPolygons();
|
|
if ( selPolygons.empty() ) return;
|
|
|
|
auto app = RiaGuiApplication::instance();
|
|
auto fallbackPath = app->lastUsedDialogDirectory( "BINARY_GRID" );
|
|
auto polygonPath = app->lastUsedDialogDirectoryWithFallback( RimPolygonTools::polygonCacheName(), fallbackPath );
|
|
auto polygonFileName = polygonPath + "/" + selPolygons[0]->name() + ".pol";
|
|
|
|
auto fileName = RiuFileDialogTools::getSaveFileName( nullptr,
|
|
"Select File for Polygon Export to POL",
|
|
polygonFileName,
|
|
"POL Files (*.pol);;All files(*.*)" );
|
|
|
|
if ( !RimPolygonTools::exportPolygonPol( selPolygons, fileName ) )
|
|
{
|
|
RiaLogging::error( "Failed to export polygon(s) to " + fileName );
|
|
}
|
|
else
|
|
{
|
|
RiaLogging::info( "Completed polygon export to " + fileName );
|
|
RiaApplication::instance()->setLastUsedDialogDirectory( RimPolygonTools::polygonCacheName(), QFileInfo( fileName ).absolutePath() );
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicExportPolygonPolFeature::setupActionLook( QAction* actionToSetup )
|
|
{
|
|
actionToSetup->setText( "Export Polygon POL" );
|
|
actionToSetup->setIcon( QIcon( ":/Save.svg" ) );
|
|
}
|