mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
* Refactor well log track settings into modular classes Major refactoring of RimWellLogTrack to delegate property axis, formation, region annotation, and well path attribute settings to dedicated settings classes. Introduces RimWellLogPropertyAxisSettings, RimWellLogFormationSettings, RimWellLogRegionAnnotationSettings, and RimWellLogWellPathAttributeSettings, each encapsulating related fields, UI logic, and option handling. Old fields are retained for migration and backward compatibility. Updates enums and signatures for consistency.
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2025- 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 "cafAppEnum.h"
|
|
|
|
namespace RiaDefines
|
|
{
|
|
|
|
enum class WellLogTrackTrajectoryType
|
|
{
|
|
WELL_PATH,
|
|
SIMULATION_WELL
|
|
};
|
|
|
|
enum class WellLogTrackFormationSource
|
|
{
|
|
CASE,
|
|
WELL_PICK_FILTER
|
|
};
|
|
|
|
enum class WellLogTrackFormationLevel
|
|
{
|
|
GROUP,
|
|
LEVEL0,
|
|
LEVEL1,
|
|
LEVEL2,
|
|
LEVEL3,
|
|
LEVEL4,
|
|
LEVEL5,
|
|
LEVEL6,
|
|
LEVEL7,
|
|
LEVEL8,
|
|
LEVEL9,
|
|
LEVEL10,
|
|
ALL,
|
|
UNKNOWN,
|
|
NONE
|
|
};
|
|
|
|
} // namespace RiaDefines
|