ResInsight/ApplicationLibCode/Commands/RicExportContourMapToTextFeature.h

70 lines
2.7 KiB
C
Raw Normal View History

2019-10-15 06:50:48 -05: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.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "CommandFileInterface/Core/RicfCommandObject.h"
2019-10-15 06:50:48 -05:00
#include "cafCmdFeature.h"
#include "cafPdmField.h"
2019-10-15 06:50:48 -05:00
#include <utility>
class RimContourMapProjection;
class RimEclipseContourMapView;
class RimGeoMechContourMapView;
class QTextStream;
2019-10-15 06:50:48 -05:00
//==================================================================================================
///
//==================================================================================================
class RicExportContourMapToTextFeature : public caf::CmdFeature, public RicfCommandObject
2019-10-15 06:50:48 -05:00
{
RICF_HEADER_INIT;
public:
RicExportContourMapToTextFeature();
caf::PdmScriptResponse execute() override;
2019-10-15 06:50:48 -05:00
protected:
bool isCommandEnabled() override;
void onActionTriggered( bool isChecked ) override;
2019-10-22 14:43:09 -05:00
void setupActionLook( QAction* actionToSetup ) override;
static void writeMetaDataToStream( QTextStream& stream,
const RimContourMapProjection* contourMapProjection,
const QString& caseName,
bool exportLocalCoordinates );
static void writeContourMapToStream( QTextStream& stream,
const RimContourMapProjection* contourMapProjection,
bool exportLocalCoordinates,
const QString& undefinedValueLabel,
bool excludeUndefinedValues );
private:
static std::pair<RimEclipseContourMapView*, RimGeoMechContourMapView*> findContourMapView();
private:
caf::PdmField<QString> m_exportFileName;
caf::PdmField<bool> m_exportLocalCoordinates;
caf::PdmField<QString> m_undefinedValueLabel;
caf::PdmField<bool> m_excludeUndefinedValues;
caf::PdmField<int> m_viewId;
2019-10-15 06:50:48 -05:00
};