mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
01e670a3d8
* Guard use of back() on empty vector * Add "Show Data Sources" to ensemble realizations * Update summary plot as summary curve collection is not visible in tree view * Set selection manager root in RiaApplication * Always close both main windows if present * Add copy/paste of summary multi plot * Add test for RiuMainWindow::instance() before use * Remove duplicated code * Multiple Tree Views : Use getTreeViewWithItem() to find correct tree view * Minor UI adjustments
55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2022 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 "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
#include "RiaDefines.h"
|
|
|
|
class RimEclipseCase;
|
|
|
|
class RimEclipseResultAddress : public caf::PdmObject
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
RimEclipseResultAddress();
|
|
~RimEclipseResultAddress() override;
|
|
|
|
void setResultName( const QString& resultName );
|
|
QString resultName() const;
|
|
|
|
void setResultType( RiaDefines::ResultCatType val );
|
|
RiaDefines::ResultCatType resultType() const;
|
|
|
|
void setEclipseCase( RimEclipseCase* eclipseCase );
|
|
RimEclipseCase* eclipseCase() const;
|
|
|
|
private:
|
|
QList<caf::PdmOptionItemInfo> calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions,
|
|
bool* useOptionsOnly ) override;
|
|
|
|
private:
|
|
caf::PdmField<QString> m_resultName;
|
|
caf::PdmField<caf::AppEnum<RiaDefines::ResultCatType>> m_resultType;
|
|
caf::PdmPtrField<RimEclipseCase*> m_eclipseCase;
|
|
};
|