PowerToys/src/runner/general_settings.h
Sophia Chen df521b4c9b
[Settings]New Landing Page Experimentation (#22365)
Co-authored-by: Sophia Chen <sophia.six.chen@gmail.com>
Co-authored-by: Niels Laute <niels.laute@live.nl>
Co-authored-by: Sophia Chen <sophchen@microsoft.com>
2023-02-15 02:38:53 +00:00

25 lines
653 B
C++

#pragma once
#include <common/utils/json.h>
struct GeneralSettings
{
bool isStartupEnabled;
std::wstring startupDisabledReason;
std::map<std::wstring, bool> isModulesEnabledMap;
bool isElevated;
bool isRunElevated;
bool isAdmin;
bool downloadUpdatesAutomatically;
bool enableExperimentation;
std::wstring theme;
std::wstring systemTheme;
std::wstring powerToysVersion;
json::JsonObject to_json();
};
json::JsonObject load_general_settings();
GeneralSettings get_general_settings();
void apply_general_settings(const json::JsonObject& general_configs, bool save = true);
void start_enabled_powertoys();