2020-04-08 01:19:14 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Text.Json;
|
2020-03-12 14:25:24 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Lib;
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels.Commands;
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Views;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
using Windows.ApplicationModel.Resources;
|
2020-05-05 05:40:32 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Lib.Utilities;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
using Windows.Data.Html;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
using Windows.System;
|
|
|
|
|
using Windows.UI.Popups;
|
|
|
|
|
using Windows.UI.Xaml;
|
2020-03-12 14:25:24 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class GeneralViewModel : Observable
|
|
|
|
|
{
|
2020-04-18 06:25:08 +08:00
|
|
|
|
private GeneralSettings GeneralSettingsConfigs { get; set; }
|
|
|
|
|
|
|
|
|
|
public ButtonClickCommand CheckFoUpdatesEventHandler { get; set; }
|
|
|
|
|
|
|
|
|
|
public ButtonClickCommand RestartElevatedButtonEventHandler { get; set; }
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
private ResourceLoader loader = ResourceLoader.GetForCurrentView();
|
|
|
|
|
|
2020-03-12 14:25:24 +08:00
|
|
|
|
public GeneralViewModel()
|
|
|
|
|
{
|
2020-04-18 06:25:08 +08:00
|
|
|
|
this.CheckFoUpdatesEventHandler = new ButtonClickCommand(CheckForUpdates_Click);
|
|
|
|
|
this.RestartElevatedButtonEventHandler = new ButtonClickCommand(Restart_Elevated);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
GeneralSettingsConfigs = SettingsUtils.GetSettings<GeneralSettings>(string.Empty);
|
2020-05-05 05:40:32 +08:00
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
if (Helper.CompareVersions(GeneralSettingsConfigs.PowertoysVersion, Helper.GetProductVersion()) < 0)
|
|
|
|
|
{
|
|
|
|
|
// Update settings
|
|
|
|
|
GeneralSettingsConfigs.PowertoysVersion = Helper.GetProductVersion();
|
|
|
|
|
SettingsUtils.SaveSettings(GeneralSettingsConfigs.ToJsonString(), string.Empty);
|
2020-05-05 05:40:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (FormatException e)
|
2020-05-06 01:02:31 +08:00
|
|
|
|
{
|
|
|
|
|
// If there is an issue with the version number format, don't migrate settings.
|
|
|
|
|
Debug.WriteLine(e.Message);
|
2020-04-18 06:25:08 +08:00
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
GeneralSettingsConfigs = new GeneralSettings();
|
|
|
|
|
SettingsUtils.SaveSettings(GeneralSettingsConfigs.ToJsonString(), string.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (GeneralSettingsConfigs.Theme.ToLower())
|
|
|
|
|
{
|
|
|
|
|
case "light":
|
|
|
|
|
_isLightThemeRadioButtonChecked = true;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Light;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
break;
|
|
|
|
|
case "dark":
|
|
|
|
|
_isDarkThemeRadioButtonChecked = true;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Dark;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
break;
|
|
|
|
|
case "system":
|
|
|
|
|
_isSystemThemeRadioButtonChecked = true;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Default;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_startup = GeneralSettingsConfigs.Startup;
|
2020-05-03 18:17:06 +08:00
|
|
|
|
_autoDownloadUpdates = GeneralSettingsConfigs.AutoDownloadUpdates;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
_isElevated = ShellPage.IsElevated;
|
|
|
|
|
_runElevated = GeneralSettingsConfigs.RunElevated;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool _packaged = false;
|
|
|
|
|
private bool _startup = false;
|
|
|
|
|
private bool _isElevated = false;
|
|
|
|
|
private bool _runElevated = false;
|
|
|
|
|
private bool _isDarkThemeRadioButtonChecked = false;
|
|
|
|
|
private bool _isLightThemeRadioButtonChecked = false;
|
|
|
|
|
private bool _isSystemThemeRadioButtonChecked = false;
|
2020-05-03 18:17:06 +08:00
|
|
|
|
private bool _autoDownloadUpdates = false;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
|
|
|
|
|
// Gets or sets a value indicating whether packaged.
|
|
|
|
|
public bool Packaged
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _packaged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (_packaged != value)
|
|
|
|
|
{
|
|
|
|
|
_packaged = value;
|
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Gets or sets a value indicating whether run powertoys on start-up.
|
|
|
|
|
public bool Startup
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _startup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (_startup != value)
|
|
|
|
|
{
|
|
|
|
|
_startup = value;
|
2020-05-03 18:17:06 +08:00
|
|
|
|
GeneralSettingsConfigs.Startup = value;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public string RunningAsAdminText
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (!IsElevated)
|
|
|
|
|
{
|
|
|
|
|
return loader.GetString("GeneralSettings_Running as Adminstrator_IsNotElevated");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return loader.GetString("GeneralSettings_RunningAsAdminText_IsElevated");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
OnPropertyChanged("RunningAsAdminText");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
// Gets or sets a value indicating whether the powertoy elevated.
|
|
|
|
|
public bool IsElevated
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _isElevated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (_isElevated != value)
|
|
|
|
|
{
|
|
|
|
|
_isElevated = value;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
OnPropertyChanged("IsElevated");
|
|
|
|
|
OnPropertyChanged("IsAdminButtonEnabled");
|
2020-05-12 03:36:55 +08:00
|
|
|
|
//OnPropertyChanged("AlwaysRunAsAdminText");
|
2020-05-06 01:02:31 +08:00
|
|
|
|
OnPropertyChanged("RunningAsAdminText");
|
2020-04-18 06:25:08 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public bool IsAdminButtonEnabled
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !IsElevated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
OnPropertyChanged("IsAdminButtonEnabled");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
// Gets or sets a value indicating whether powertoys should run elevated.
|
|
|
|
|
public bool RunElevated
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _runElevated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (_runElevated != value)
|
|
|
|
|
{
|
|
|
|
|
_runElevated = value;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
GeneralSettingsConfigs.RunElevated = value;
|
2020-04-18 06:25:08 +08:00
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-03 18:17:06 +08:00
|
|
|
|
public bool AutoDownloadUpdates
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _autoDownloadUpdates;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (_autoDownloadUpdates != value)
|
|
|
|
|
{
|
|
|
|
|
_autoDownloadUpdates = value;
|
|
|
|
|
GeneralSettingsConfigs.AutoDownloadUpdates = value;
|
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public bool IsDarkThemeRadioButtonChecked
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _isDarkThemeRadioButtonChecked;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == true)
|
|
|
|
|
{
|
|
|
|
|
GeneralSettingsConfigs.Theme = "dark";
|
|
|
|
|
_isDarkThemeRadioButtonChecked = value;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Dark;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsLightThemeRadioButtonChecked
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _isLightThemeRadioButtonChecked;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == true)
|
|
|
|
|
{
|
|
|
|
|
GeneralSettingsConfigs.Theme = "light";
|
|
|
|
|
_isLightThemeRadioButtonChecked = value;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Light;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool IsSystemThemeRadioButtonChecked
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _isSystemThemeRadioButtonChecked;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == true)
|
|
|
|
|
{
|
|
|
|
|
GeneralSettingsConfigs.Theme = "system";
|
|
|
|
|
_isSystemThemeRadioButtonChecked = value;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
ShellPage.ShellHandler.RequestedTheme = ElementTheme.Default;
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
RaisePropertyChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public string PowerToysVersion
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Helper.GetProductVersion();
|
|
|
|
|
}
|
2020-05-05 05:40:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
public void RaisePropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
{
|
|
|
|
|
// Notify UI of property change
|
|
|
|
|
OnPropertyChanged(propertyName);
|
|
|
|
|
|
|
|
|
|
OutGoingGeneralSettings outsettings = new OutGoingGeneralSettings(GeneralSettingsConfigs);
|
|
|
|
|
|
|
|
|
|
ShellPage.DefaultSndMSGCallback(outsettings.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// callback function to launch the URL to check for updates.
|
|
|
|
|
private async void CheckForUpdates_Click()
|
|
|
|
|
{
|
|
|
|
|
await Launcher.LaunchUriAsync(new Uri("https://github.com/microsoft/PowerToys/releases"));
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-03 18:17:06 +08:00
|
|
|
|
public void Restart_Elevated()
|
2020-04-18 06:25:08 +08:00
|
|
|
|
{
|
|
|
|
|
GeneralSettings settings = SettingsUtils.GetSettings<GeneralSettings>(string.Empty);
|
2020-05-03 18:17:06 +08:00
|
|
|
|
settings.CustomActionName = "restart_elevation";
|
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
|
OutGoingGeneralSettings outsettings = new OutGoingGeneralSettings(settings);
|
2020-05-03 18:17:06 +08:00
|
|
|
|
GeneralSettingsCustomAction customaction = new GeneralSettingsCustomAction(outsettings);
|
2020-04-18 06:25:08 +08:00
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
if (ShellPage.SndRestartAsAdminMsgCallback != null)
|
2020-04-18 06:25:08 +08:00
|
|
|
|
{
|
2020-05-06 01:02:31 +08:00
|
|
|
|
ShellPage.SndRestartAsAdminMsgCallback(customaction.ToString());
|
2020-04-18 06:25:08 +08:00
|
|
|
|
}
|
2020-03-12 14:25:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|