mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 05:37:21 -05:00
Replace the free-text experimental-feature keyword box with a discoverable registry and a checkbox list in Preferences -> System. Add RiaExperimentalFeatures as a single, discoverable list of available experimental features (keyword, display name, description). RiaPreferencesSystem now stores the enabled features in a tree-selection (checkbox) field populated from this registry, and isFeatureEnabled() checks that selection. The legacy semicolon-separated keyword string is migrated in initAfterRead(), preserving existing preference files and the 'enable-all' keyword.
45 lines
1.7 KiB
C++
45 lines
1.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2026 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 <QString>
|
|
|
|
#include <vector>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Central, discoverable registry of experimental features.
|
|
///
|
|
/// To add a new experimental feature, append an entry to the list returned by availableFeatures()
|
|
/// (see RiaExperimentalFeatures.cpp) and gate the code path behind
|
|
/// RiaPreferencesSystem::isFeatureEnabled( "<keyword>" ).
|
|
//--------------------------------------------------------------------------------------------------
|
|
class RiaExperimentalFeatures
|
|
{
|
|
public:
|
|
struct Feature
|
|
{
|
|
QString keyword; ///< Stable identifier, passed to RiaPreferencesSystem::isFeatureEnabled().
|
|
QString displayName; ///< Human readable name shown as the checkbox label.
|
|
QString description; ///< Short explanation, appended to the checkbox label.
|
|
};
|
|
|
|
/// The single, discoverable list of all experimental features.
|
|
static const std::vector<Feature>& availableFeatures();
|
|
};
|