2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2012-05-18 02:45:23 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2012-05-18 02:45:23 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2012-05-18 02:45:23 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "cafAppEnum.h"
|
2012-06-26 09:10:41 -05:00
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "cafPdmObject.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "cvfObject.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2012-06-26 09:10:41 -05:00
|
|
|
class QString;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2012-05-18 02:45:23 -05:00
|
|
|
//
|
|
|
|
//==================================================================================================
|
2015-06-25 04:51:59 -05:00
|
|
|
class RimEclipseInputProperty : public caf::PdmObject
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
2012-06-26 09:10:41 -05:00
|
|
|
CAF_PDM_HEADER_INIT;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2012-06-26 09:10:41 -05:00
|
|
|
public:
|
2015-06-25 04:51:59 -05:00
|
|
|
RimEclipseInputProperty();
|
2018-10-18 12:45:57 -05:00
|
|
|
~RimEclipseInputProperty() override;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2012-06-26 09:10:41 -05:00
|
|
|
enum ResolveState
|
|
|
|
{
|
|
|
|
UNKNOWN,
|
|
|
|
FILE_MISSING,
|
|
|
|
KEYWORD_NOT_IN_FILE,
|
|
|
|
RESOLVED_NOT_SAVED,
|
|
|
|
RESOLVED
|
|
|
|
};
|
2019-09-06 03:40:57 -05:00
|
|
|
typedef caf::AppEnum<ResolveState> ResolveStateEnum;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
// Fields:
|
2019-12-10 09:58:07 -06:00
|
|
|
caf::PdmField<QString> resultName;
|
|
|
|
caf::PdmField<QString> eclipseKeyword;
|
|
|
|
caf::PdmField<caf::FilePath> fileName; // ReadOnly Serves as key to syncronize
|
|
|
|
// read eclipse prop data and this inputProp object.
|
2012-06-26 09:10:41 -05:00
|
|
|
caf::PdmField<ResolveStateEnum> resolvedState; // ReadOnly and not writable
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2012-06-26 09:10:41 -05:00
|
|
|
// PdmObject Overrides
|
2020-02-12 04:13:38 -06:00
|
|
|
caf::PdmFieldHandle* userDescriptionField() override { return &resultName; }
|
2020-02-12 04:43:15 -06:00
|
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|