2017-06-30 09:14:15 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RimDialogData.h"
|
|
|
|
|
|
|
|
#include "ExportCommands/RicExportCarfinUi.h"
|
2018-01-31 06:54:58 -06:00
|
|
|
#include "CompletionExportCommands/RicExportCompletionDataSettingsUi.h"
|
2017-06-30 09:14:15 -05:00
|
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimDialogData, "RimDialogData");
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimDialogData::RimDialogData()
|
|
|
|
{
|
|
|
|
CAF_PDM_InitObject("Dialog Data", "", "", "");
|
|
|
|
|
2017-11-30 06:44:18 -06:00
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportCarfin, "ExportCarfin", "Export Carfin", "", "", "");
|
2017-06-30 09:14:15 -05:00
|
|
|
m_exportCarfin = new RicExportCarfinUi;
|
2017-12-19 06:27:18 -06:00
|
|
|
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportCompletionData, "ExportCompletionData", "Export Completion Data", "", "", "");
|
2018-03-16 07:41:41 -05:00
|
|
|
m_exportCompletionData = new RicExportCompletionDataSettingsUi();
|
2017-06-30 09:14:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RicExportCarfinUi* RimDialogData::exportCarfin() const
|
|
|
|
{
|
|
|
|
return m_exportCarfin;
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
QString RimDialogData::exportCarfinDataAsString() const
|
|
|
|
{
|
|
|
|
return m_exportCarfin->writeObjectToXmlString();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimDialogData::setExportCarfinDataFromString(const QString& data)
|
|
|
|
{
|
|
|
|
m_exportCarfin->readObjectFromXmlString(data, caf::PdmDefaultObjectFactory::instance());
|
|
|
|
m_exportCarfin->resolveReferencesRecursively();
|
|
|
|
}
|
|
|
|
|
2017-12-19 06:27:18 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RicExportCompletionDataSettingsUi* RimDialogData::exportCompletionData(bool onlyWellPathCollectionSelected) const
|
|
|
|
{
|
|
|
|
return m_exportCompletionData;
|
|
|
|
}
|
|
|
|
|