2022-01-13 02:02:07 -06:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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 "RimNamedObject.h"
|
|
|
|
|
|
|
|
#include "cafPdmChildArrayField.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class RimSummaryAddress;
|
|
|
|
class RifEclipseSummaryAddress;
|
|
|
|
|
|
|
|
class RimSummaryAddressCollection : public RimNamedObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
2022-02-16 09:36:50 -06:00
|
|
|
public:
|
|
|
|
enum class CollectionContentType
|
|
|
|
{
|
|
|
|
NOT_DEFINED,
|
|
|
|
WELL,
|
|
|
|
WELL_GROUP,
|
|
|
|
REGION,
|
|
|
|
FIELD,
|
2022-03-31 01:57:52 -05:00
|
|
|
MISC,
|
|
|
|
WELL_FOLDER,
|
2022-04-07 14:06:40 -05:00
|
|
|
GROUP_FOLDER,
|
2022-03-31 01:57:52 -05:00
|
|
|
REGION_FOLDER
|
2022-02-16 09:36:50 -06:00
|
|
|
};
|
|
|
|
|
2022-01-13 02:02:07 -06:00
|
|
|
public:
|
|
|
|
RimSummaryAddressCollection();
|
|
|
|
~RimSummaryAddressCollection() override;
|
|
|
|
|
2022-02-16 09:36:50 -06:00
|
|
|
void updateFolderStructure( const std::set<RifEclipseSummaryAddress>& addresses, int caseId, int ensembleId = -1 );
|
2022-01-13 02:02:07 -06:00
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
bool isEmpty() const;
|
2022-02-16 09:36:50 -06:00
|
|
|
bool isEnsemble() const;
|
|
|
|
|
|
|
|
bool canBeDragged() const;
|
2022-01-13 02:02:07 -06:00
|
|
|
|
|
|
|
void updateUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering ) const;
|
|
|
|
|
2022-02-16 09:36:50 -06:00
|
|
|
void setContentType( CollectionContentType content );
|
|
|
|
CollectionContentType contentType() const;
|
|
|
|
|
|
|
|
void setCaseId( int caseId );
|
|
|
|
int caseId() const;
|
|
|
|
void setEnsembleId( int ensembleId );
|
|
|
|
int ensembleId() const;
|
|
|
|
|
2022-03-31 01:57:52 -05:00
|
|
|
std::vector<RimSummaryAddressCollection*> subFolders() const;
|
|
|
|
|
2022-01-13 02:02:07 -06:00
|
|
|
private:
|
2022-02-16 09:36:50 -06:00
|
|
|
RimSummaryAddressCollection*
|
|
|
|
getOrCreateSubfolder( const QString folderName,
|
|
|
|
CollectionContentType createFolderType = CollectionContentType::NOT_DEFINED );
|
2022-01-13 02:02:07 -06:00
|
|
|
|
|
|
|
bool hasDataVector( const QString quantityName ) const;
|
|
|
|
bool hasDataVector( const std::string quantityName ) const;
|
|
|
|
|
|
|
|
void addAddress( const RifEclipseSummaryAddress& address, int caseId, int ensembleId = -1 );
|
2022-02-16 09:36:50 -06:00
|
|
|
void addToSubfolder( QString foldername,
|
|
|
|
CollectionContentType folderType,
|
|
|
|
const RifEclipseSummaryAddress& address,
|
|
|
|
int caseId,
|
|
|
|
int ensembleId = -1 );
|
2022-01-13 02:02:07 -06:00
|
|
|
|
|
|
|
private:
|
|
|
|
caf::PdmChildArrayField<RimSummaryAddress*> m_adresses;
|
|
|
|
caf::PdmChildArrayField<RimSummaryAddressCollection*> m_subfolders;
|
2022-02-16 09:36:50 -06:00
|
|
|
caf::PdmField<caf::AppEnum<CollectionContentType>> m_contentType;
|
|
|
|
caf::PdmField<int> m_caseId;
|
|
|
|
caf::PdmField<int> m_ensembleId;
|
2022-01-13 02:02:07 -06:00
|
|
|
};
|