mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
527743a845
* Make sure text for multiple wells in same grid cell is displayed correctly * Improve selection of result in Advanced Snapshot Export * Restore the main window that was on top when project was saved * Trim string to make sure '/' is exported with no space in front * #9872 RFT-plot: Make colors stable for curves in RFT plots * Set version to RC_02
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2016- Statoil 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 "RiaDefines.h"
|
|
|
|
#include "cafAppEnum.h"
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPtrArrayField.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
class RimCase;
|
|
class Rim3dView;
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimAdvancedSnapshotExportDefinition : public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimAdvancedSnapshotExportDefinition();
|
|
~RimAdvancedSnapshotExportDefinition() override;
|
|
|
|
void setSelectedEclipseResults( const QString& result );
|
|
std::vector<QString> selectedEclipseResults() const;
|
|
|
|
caf::PdmField<bool> isActive;
|
|
|
|
caf::PdmPtrField<Rim3dView*> view;
|
|
|
|
caf::PdmField<caf::AppEnum<RiaDefines::ResultCatType>> eclipseResultType;
|
|
|
|
caf::PdmField<int> timeStepStart;
|
|
caf::PdmField<int> timeStepEnd;
|
|
|
|
caf::PdmField<caf::AppEnum<RiaDefines::GridCaseAxis>> sliceDirection;
|
|
caf::PdmField<int> startSliceIndex;
|
|
caf::PdmField<int> endSliceIndex;
|
|
|
|
caf::PdmPtrArrayField<RimCase*> additionalCases;
|
|
|
|
protected:
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
|
|
private:
|
|
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override;
|
|
|
|
void getTimeStepStrings( QList<caf::PdmOptionItemInfo>& options );
|
|
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
|
|
|
QList<caf::PdmOptionItemInfo> toOptionList( const QStringList& varList );
|
|
|
|
private:
|
|
caf::PdmField<QString> m_selectedEclipseResult;
|
|
};
|