2021-12-29 20:33:20 +03: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.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
2025-08-20 09:31:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
2022-06-23 16:29:53 +02:00
|
|
|
|
using System.Globalization;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2022-06-23 16:29:53 +02:00
|
|
|
|
using System.Text.Json;
|
2022-10-26 14:02:31 +01:00
|
|
|
|
using global::PowerToys.GPOWrapper;
|
2025-01-13 17:13:16 +02:00
|
|
|
|
using ManagedCommon;
|
2025-08-20 09:31:52 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
2022-10-26 14:02:31 +01:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Utilities;
|
2025-02-25 02:48:54 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.SerializationContext;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
2021-12-29 20:33:20 +03:00
|
|
|
|
{
|
2025-08-20 09:31:52 +08:00
|
|
|
|
public partial class AlwaysOnTopViewModel : PageViewModelBase
|
2021-12-29 20:33:20 +03:00
|
|
|
|
{
|
2025-08-20 09:31:52 +08:00
|
|
|
|
protected override string ModuleName => AlwaysOnTopSettings.ModuleName;
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
private ISettingsUtils SettingsUtils { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private GeneralSettings GeneralSettingsConfig { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private AlwaysOnTopSettings Settings { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
private Func<string, int> SendConfigMSG { get; }
|
|
|
|
|
|
|
|
|
|
|
|
public AlwaysOnTopViewModel(ISettingsUtils settingsUtils, ISettingsRepository<GeneralSettings> settingsRepository, ISettingsRepository<AlwaysOnTopSettings> moduleSettingsRepository, Func<string, int> ipcMSGCallBackFunc)
|
|
|
|
|
|
{
|
2023-11-22 12:46:59 -05:00
|
|
|
|
ArgumentNullException.ThrowIfNull(settingsUtils);
|
2021-12-29 20:33:20 +03:00
|
|
|
|
|
|
|
|
|
|
SettingsUtils = settingsUtils;
|
|
|
|
|
|
|
|
|
|
|
|
// To obtain the general settings configurations of PowerToys Settings.
|
2023-11-22 12:46:59 -05:00
|
|
|
|
ArgumentNullException.ThrowIfNull(settingsRepository);
|
2021-12-29 20:33:20 +03:00
|
|
|
|
|
|
|
|
|
|
GeneralSettingsConfig = settingsRepository.SettingsConfig;
|
|
|
|
|
|
|
2023-01-31 00:00:11 +01:00
|
|
|
|
InitializeEnabledValue();
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
// To obtain the settings configurations of AlwaysOnTop.
|
2023-11-22 12:46:59 -05:00
|
|
|
|
ArgumentNullException.ThrowIfNull(moduleSettingsRepository);
|
2021-12-29 20:33:20 +03:00
|
|
|
|
|
|
|
|
|
|
Settings = moduleSettingsRepository.SettingsConfig;
|
|
|
|
|
|
|
|
|
|
|
|
_hotkey = Settings.Properties.Hotkey.Value;
|
|
|
|
|
|
_frameEnabled = Settings.Properties.FrameEnabled.Value;
|
|
|
|
|
|
_frameThickness = Settings.Properties.FrameThickness.Value;
|
|
|
|
|
|
_frameColor = Settings.Properties.FrameColor.Value;
|
2023-08-25 11:31:51 +03:00
|
|
|
|
_frameOpacity = Settings.Properties.FrameOpacity.Value;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
_frameAccentColor = Settings.Properties.FrameAccentColor.Value;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
_soundEnabled = Settings.Properties.SoundEnabled.Value;
|
|
|
|
|
|
_doNotActivateOnGameMode = Settings.Properties.DoNotActivateOnGameMode.Value;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
_roundCornersEnabled = Settings.Properties.RoundCornersEnabled.Value;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
_excludedApps = Settings.Properties.ExcludedApps.Value;
|
2023-11-16 17:37:21 +01:00
|
|
|
|
_windows11 = OSVersionHelper.IsWindows11();
|
2021-12-29 20:33:20 +03:00
|
|
|
|
|
2023-10-24 11:37:22 +02:00
|
|
|
|
// set the callback functions value to handle outgoing IPC message.
|
2021-12-29 20:33:20 +03:00
|
|
|
|
SendConfigMSG = ipcMSGCallBackFunc;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-31 00:00:11 +01:00
|
|
|
|
private void InitializeEnabledValue()
|
|
|
|
|
|
{
|
|
|
|
|
|
_enabledGpoRuleConfiguration = GPOWrapper.GetConfiguredAlwaysOnTopEnabledValue();
|
|
|
|
|
|
if (_enabledGpoRuleConfiguration == GpoRuleConfigured.Disabled || _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Get the enabled state from GPO.
|
|
|
|
|
|
_enabledStateIsGPOConfigured = true;
|
|
|
|
|
|
_isEnabled = _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
_isEnabled = GeneralSettingsConfig.Enabled.AlwaysOnTop;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-20 09:31:52 +08:00
|
|
|
|
public override Dictionary<string, HotkeySettings[]> GetAllHotkeySettings()
|
|
|
|
|
|
{
|
|
|
|
|
|
var hotkeysDict = new Dictionary<string, HotkeySettings[]>
|
|
|
|
|
|
{
|
|
|
|
|
|
[ModuleName] = [Hotkey],
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return hotkeysDict;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
public bool IsEnabled
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _isEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
2022-10-26 14:02:31 +01:00
|
|
|
|
if (_enabledStateIsGPOConfigured)
|
|
|
|
|
|
{
|
|
|
|
|
|
// If it's GPO configured, shouldn't be able to change this state.
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
if (value != _isEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
_isEnabled = value;
|
|
|
|
|
|
|
|
|
|
|
|
// Set the status in the general settings configuration
|
|
|
|
|
|
GeneralSettingsConfig.Enabled.AlwaysOnTop = value;
|
|
|
|
|
|
OutGoingGeneralSettings snd = new OutGoingGeneralSettings(GeneralSettingsConfig);
|
|
|
|
|
|
|
|
|
|
|
|
SendConfigMSG(snd.ToString());
|
|
|
|
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
public bool IsEnabledGpoConfigured
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _enabledStateIsGPOConfigured;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
public HotkeySettings Hotkey
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _hotkey;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _hotkey)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value == null || value.IsEmpty())
|
|
|
|
|
|
{
|
|
|
|
|
|
_hotkey = AlwaysOnTopProperties.DefaultHotkeyValue;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
_hotkey = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Settings.Properties.Hotkey.Value = _hotkey;
|
|
|
|
|
|
NotifyPropertyChanged();
|
2022-06-23 16:29:53 +02:00
|
|
|
|
|
|
|
|
|
|
// Using InvariantCulture as this is an IPC message
|
|
|
|
|
|
SendConfigMSG(
|
|
|
|
|
|
string.Format(
|
|
|
|
|
|
CultureInfo.InvariantCulture,
|
|
|
|
|
|
"{{ \"powertoys\": {{ \"{0}\": {1} }} }}",
|
|
|
|
|
|
AlwaysOnTopSettings.ModuleName,
|
2025-02-25 02:48:54 +08:00
|
|
|
|
JsonSerializer.Serialize(Settings, SourceGenerationContextContext.Default.AlwaysOnTopSettings)));
|
2021-12-29 20:33:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool FrameEnabled
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _frameEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _frameEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
_frameEnabled = value;
|
|
|
|
|
|
Settings.Properties.FrameEnabled.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int FrameThickness
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _frameThickness;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _frameThickness)
|
|
|
|
|
|
{
|
|
|
|
|
|
_frameThickness = value;
|
|
|
|
|
|
Settings.Properties.FrameThickness.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string FrameColor
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _frameColor;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _frameColor)
|
|
|
|
|
|
{
|
|
|
|
|
|
_frameColor = value;
|
|
|
|
|
|
Settings.Properties.FrameColor.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-08-25 11:31:51 +03:00
|
|
|
|
public int FrameOpacity
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _frameOpacity;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _frameOpacity)
|
|
|
|
|
|
{
|
|
|
|
|
|
_frameOpacity = value;
|
|
|
|
|
|
Settings.Properties.FrameOpacity.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
public bool SoundEnabled
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _soundEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _soundEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
_soundEnabled = value;
|
|
|
|
|
|
Settings.Properties.SoundEnabled.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public bool DoNotActivateOnGameMode
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _doNotActivateOnGameMode;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _doNotActivateOnGameMode)
|
|
|
|
|
|
{
|
|
|
|
|
|
_doNotActivateOnGameMode = value;
|
|
|
|
|
|
Settings.Properties.DoNotActivateOnGameMode.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-07-01 17:56:45 +02:00
|
|
|
|
public bool RoundCornersEnabled
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _roundCornersEnabled;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _roundCornersEnabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
_roundCornersEnabled = value;
|
|
|
|
|
|
Settings.Properties.RoundCornersEnabled.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
public string ExcludedApps
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _excludedApps;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _excludedApps)
|
|
|
|
|
|
{
|
|
|
|
|
|
_excludedApps = value;
|
|
|
|
|
|
Settings.Properties.ExcludedApps.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-01-24 18:02:09 +01:00
|
|
|
|
public bool FrameAccentColor
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _frameAccentColor;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
if (value != _frameAccentColor)
|
|
|
|
|
|
{
|
|
|
|
|
|
_frameAccentColor = value;
|
|
|
|
|
|
Settings.Properties.FrameAccentColor.Value = value;
|
|
|
|
|
|
NotifyPropertyChanged();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-07-01 17:56:45 +02:00
|
|
|
|
public bool Windows11
|
|
|
|
|
|
{
|
|
|
|
|
|
get => _windows11;
|
|
|
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
|
{
|
|
|
|
|
|
_windows11 = value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-29 20:33:20 +03:00
|
|
|
|
public void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
|
{
|
|
|
|
|
|
OnPropertyChanged(propertyName);
|
|
|
|
|
|
SettingsUtils.SaveSettings(Settings.ToJsonString(), AlwaysOnTopSettings.ModuleName);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-31 00:00:11 +01:00
|
|
|
|
public void RefreshEnabledState()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeEnabledValue();
|
|
|
|
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
private GpoRuleConfigured _enabledGpoRuleConfiguration;
|
|
|
|
|
|
private bool _enabledStateIsGPOConfigured;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
private bool _isEnabled;
|
|
|
|
|
|
private HotkeySettings _hotkey;
|
|
|
|
|
|
private bool _frameEnabled;
|
|
|
|
|
|
private int _frameThickness;
|
|
|
|
|
|
private string _frameColor;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
private bool _frameAccentColor;
|
2023-08-25 11:31:51 +03:00
|
|
|
|
private int _frameOpacity;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
private bool _soundEnabled;
|
|
|
|
|
|
private bool _doNotActivateOnGameMode;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
private bool _roundCornersEnabled;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
private string _excludedApps;
|
2022-07-01 17:56:45 +02:00
|
|
|
|
private bool _windows11;
|
2021-12-29 20:33:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
}
|