aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakespecificsettings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakespecificsettings.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakespecificsettings.h30
1 files changed, 8 insertions, 22 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakespecificsettings.h b/src/plugins/cmakeprojectmanager/cmakespecificsettings.h
index d0b19bee426..a9c2758e190 100644
--- a/src/plugins/cmakeprojectmanager/cmakespecificsettings.h
+++ b/src/plugins/cmakeprojectmanager/cmakespecificsettings.h
@@ -5,36 +5,22 @@
#include <coreplugin/dialogs/ioptionspage.h>
-#include <utils/aspects.h>
-
namespace CMakeProjectManager::Internal {
-enum AfterAddFileAction : int {
- AskUser,
- CopyFilePath,
- NeverCopyFilePath
-};
-
-class CMakeSpecificSettings final : public Utils::AspectContainer
+class CMakeSpecificSettings final : public Core::PagedSettings
{
public:
CMakeSpecificSettings();
static CMakeSpecificSettings *instance();
- Utils::BoolAspect autorunCMake;
- Utils::SelectionAspect afterAddFileSetting;
- Utils::StringAspect ninjaPath;
- Utils::BoolAspect packageManagerAutoSetup;
- Utils::BoolAspect askBeforeReConfigureInitialParams;
- Utils::BoolAspect showSourceSubFolders;
- Utils::BoolAspect showAdvancedOptionsByDefault;
-};
-
-class CMakeSpecificSettingsPage final : public Core::IOptionsPage
-{
-public:
- CMakeSpecificSettingsPage();
+ Utils::BoolAspect autorunCMake{this};
+ Utils::FilePathAspect ninjaPath{this};
+ Utils::BoolAspect packageManagerAutoSetup{this};
+ Utils::BoolAspect askBeforeReConfigureInitialParams{this};
+ Utils::BoolAspect askBeforePresetsReload{this};
+ Utils::BoolAspect showSourceSubFolders{this};
+ Utils::BoolAspect showAdvancedOptionsByDefault{this};
};
} // CMakeProjectManager::Internal