mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-10 08:03:05 -06:00
129 lines
5.5 KiB
C++
129 lines
5.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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"
|
|
#include "CompletionExportCommands/RicExportCompletionDataSettingsUi.h"
|
|
#include "FractureCommands/RicCreateMultipleFracturesUi.h"
|
|
#include "HoloLensCommands/RicHoloLensExportToFolderUi.h"
|
|
#include "ExportCommands/RicExportWellPathsUi.h"
|
|
#include "ExportCommands/RicExportCarfinForCompletionsUi.h"
|
|
|
|
CAF_PDM_SOURCE_INIT(RimDialogData, "RimDialogData");
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimDialogData::RimDialogData()
|
|
{
|
|
CAF_PDM_InitObject("Dialog Data", "", "", "");
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportCarfin, "ExportCarfin", "Export Carfin", "", "", "");
|
|
m_exportCarfin = new RicExportCarfinUi;
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportCompletionData, "ExportCompletionData", "Export Completion Data", "", "", "");
|
|
m_exportCompletionData = new RicExportCompletionDataSettingsUi();
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_multipleFractionsData, "MultipleFractionsData", "Multiple Fractures Data", "", "", "");
|
|
m_multipleFractionsData = new RiuCreateMultipleFractionsUi();
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_holoLenseExportToFolderData, "HoloLenseExportToFolderData", "Holo Lens Export To Folder Data", "", "", "");
|
|
m_holoLenseExportToFolderData = new RicHoloLensExportToFolderUi();
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportWellPathsData, "ExportwellPathsData", "Export Well Paths Data", "", "", "");
|
|
m_exportWellPathsData = new RicExportWellPathsUi();
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_exportCarfinForCompletionsData, "ExportCarfinForCompletions", "Export Carfin", "", "", "");
|
|
m_exportCarfinForCompletionsData = new RicExportCarfinForCompletionsUi();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimDialogData::clearProjectSpecificData()
|
|
{
|
|
m_multipleFractionsData->resetValues();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
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();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicExportCompletionDataSettingsUi* RimDialogData::exportCompletionData() const
|
|
{
|
|
return m_exportCompletionData;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RiuCreateMultipleFractionsUi* RimDialogData::multipleFractionsData() const
|
|
{
|
|
return m_multipleFractionsData;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicHoloLensExportToFolderUi* RimDialogData::holoLensExportToFolderData() const
|
|
{
|
|
return m_holoLenseExportToFolderData;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicExportWellPathsUi* RimDialogData::wellPathsExportData() const
|
|
{
|
|
return m_exportWellPathsData;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicExportCarfinForCompletionsUi* RimDialogData::exportCarfinForCompletionsData() const
|
|
{
|
|
return m_exportCarfinForCompletionsData;
|
|
}
|
|
|