mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
* [Deps] Upgrade Framework Libraries to .NET 9 RC2 * [Common][Build] Update TFM to NET9 * [FileLocksmith][Build] Update TFM to NET9 in Publish Profile * [PreviewPane][Build] Update TFM to NET9 in Publish Profile * [PTRun][Build] Update TFM to NET9 in Publish Profile * [Settings][Build] Update TFM to NET9 in Publish Profile * [MouseWithoutBorders][Analyzers] Resolve WFO1000 by configuring Designer Serialization Visibility * [Deps] Update Microsoft.CodeAnalysis.NetAnalyzers * [Analyzers] Set CA1859,CA2263,CA2022 to be excluded from error * [MouseWithoutBorders] Use System.Threading.Lock to lock instead of object instance * [ColorPicker] Use System.Threading.Lock to lock instead of object instance * [AdvancedPaste] Use System.Threading.Lock to lock instead of object instance * [TextExtractor] Use System.Threading.Lock to lock instead of object instance * [Hosts] Use System.Threading.Lock to lock instead of object instance * [MouseJump] Use System.Threading.Lock to lock instead of object instance * [PTRun] Use System.Threading.Lock to lock instead of object instance * [Wox] Use System.Threading.Lock to lock instead of object instance * [Peek] Use System.Threading.Lock to lock instead of object instance * [PowerAccent] Use System.Threading.Lock to lock instead of object instance * [Settings] Use System.Threading.Lock to lock instead of object instance * [Deps] Update NOTICE.md * [CI] Update .NET version step to target 9.0 * [Build] Attempt to add manual trigger for using Visual Studio Preview for building * [Build] Fix variable typo * [Build][Temporary] set to use preview builds * [Build] Add missing parameters * [Build][Temporary] directly hardcode preview image * [Build][Temporary] Trying ImageOverride * [Build] Revert hardcode and use ImageOverride * [Build] Add env var for adding prerelease argument for vswhere * [Build] Update VCToolsVersion script to use env var to optionally add prerelease version checking * [Build] Remove unneeded parameter * [Build] Re-add parameter in all the right places * [CI][Build] Add NoWarn NU5104 when building with VS Preview * [Deps] Update to stable .NET 9 packages * [Deps] Update NOTICE.md * Everything is WPF and WindowsForms now to fix .NET 9 dependency conflicts * Ensure .NET 9 SDK for tests too --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
269 lines
9.4 KiB
C#
269 lines
9.4 KiB
C#
// 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;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text.Json;
|
|
using System.Timers;
|
|
|
|
using Common.UI;
|
|
using global::PowerToys.GPOWrapper;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
using Windows.Globalization;
|
|
using Windows.Media.Ocr;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
|
{
|
|
public class PowerOcrViewModel : Observable, IDisposable
|
|
{
|
|
private bool disposedValue;
|
|
|
|
// Delay saving of settings in order to avoid calling save multiple times and hitting file in use exception. If there is no other request to save settings in given interval, we proceed to save it, otherwise we schedule saving it after this interval
|
|
private const int SaveSettingsDelayInMs = 500;
|
|
|
|
private GeneralSettings GeneralSettingsConfig { get; set; }
|
|
|
|
private readonly ISettingsUtils _settingsUtils;
|
|
private readonly System.Threading.Lock _delayedActionLock = new System.Threading.Lock();
|
|
|
|
private readonly PowerOcrSettings _powerOcrSettings;
|
|
private Timer _delayedTimer;
|
|
|
|
private GpoRuleConfigured _enabledGpoRuleConfiguration;
|
|
private bool _enabledStateIsGPOConfigured;
|
|
private bool _isEnabled;
|
|
private int _languageIndex;
|
|
private List<Language> possibleOcrLanguages;
|
|
|
|
public ObservableCollection<string> AvailableLanguages { get; } = new ObservableCollection<string>();
|
|
|
|
public int LanguageIndex
|
|
{
|
|
get
|
|
{
|
|
return _languageIndex;
|
|
}
|
|
|
|
set
|
|
{
|
|
if (value != _languageIndex)
|
|
{
|
|
_languageIndex = value;
|
|
if (_powerOcrSettings != null && _languageIndex < possibleOcrLanguages.Count && _languageIndex >= 0)
|
|
{
|
|
_powerOcrSettings.Properties.PreferredLanguage = possibleOcrLanguages[_languageIndex].DisplayName;
|
|
NotifySettingsChanged();
|
|
}
|
|
|
|
OnPropertyChanged(nameof(LanguageIndex));
|
|
}
|
|
}
|
|
}
|
|
|
|
private Func<string, int> SendConfigMSG { get; }
|
|
|
|
public PowerOcrViewModel(
|
|
ISettingsUtils settingsUtils,
|
|
ISettingsRepository<GeneralSettings> settingsRepository,
|
|
ISettingsRepository<PowerOcrSettings> powerOcrsettingsRepository,
|
|
Func<string, int> ipcMSGCallBackFunc)
|
|
{
|
|
// To obtain the general settings configurations of PowerToys Settings.
|
|
ArgumentNullException.ThrowIfNull(settingsRepository);
|
|
|
|
GeneralSettingsConfig = settingsRepository.SettingsConfig;
|
|
|
|
// To obtain the settings configurations of Fancy zones.
|
|
ArgumentNullException.ThrowIfNull(settingsRepository);
|
|
|
|
_settingsUtils = settingsUtils ?? throw new ArgumentNullException(nameof(settingsUtils));
|
|
|
|
ArgumentNullException.ThrowIfNull(powerOcrsettingsRepository);
|
|
|
|
_powerOcrSettings = powerOcrsettingsRepository.SettingsConfig;
|
|
|
|
InitializeEnabledValue();
|
|
|
|
// set the callback functions value to handle outgoing IPC message.
|
|
SendConfigMSG = ipcMSGCallBackFunc;
|
|
|
|
_delayedTimer = new Timer();
|
|
_delayedTimer.Interval = SaveSettingsDelayInMs;
|
|
_delayedTimer.Elapsed += DelayedTimer_Tick;
|
|
_delayedTimer.AutoReset = false;
|
|
}
|
|
|
|
private void InitializeEnabledValue()
|
|
{
|
|
_enabledGpoRuleConfiguration = GPOWrapper.GetConfiguredTextExtractorEnabledValue();
|
|
if (_enabledGpoRuleConfiguration == GpoRuleConfigured.Disabled || _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled)
|
|
{
|
|
// Get the enabled state from GPO.
|
|
_enabledStateIsGPOConfigured = true;
|
|
_isEnabled = _enabledGpoRuleConfiguration == GpoRuleConfigured.Enabled;
|
|
}
|
|
else
|
|
{
|
|
_isEnabled = GeneralSettingsConfig.Enabled.PowerOcr;
|
|
}
|
|
}
|
|
|
|
public bool IsEnabled
|
|
{
|
|
get => _isEnabled;
|
|
set
|
|
{
|
|
if (_enabledStateIsGPOConfigured)
|
|
{
|
|
// If it's GPO configured, shouldn't be able to change this state.
|
|
return;
|
|
}
|
|
|
|
if (_isEnabled != value)
|
|
{
|
|
_isEnabled = value;
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
|
|
// Set the status of PowerOcr in the general settings
|
|
GeneralSettingsConfig.Enabled.PowerOcr = value;
|
|
var outgoing = new OutGoingGeneralSettings(GeneralSettingsConfig);
|
|
|
|
SendConfigMSG(outgoing.ToString());
|
|
}
|
|
}
|
|
}
|
|
|
|
public bool IsWin11OrGreater
|
|
{
|
|
get => OSVersionHelper.IsWindows11();
|
|
}
|
|
|
|
public bool IsEnabledGpoConfigured
|
|
{
|
|
get => _enabledStateIsGPOConfigured;
|
|
}
|
|
|
|
public HotkeySettings ActivationShortcut
|
|
{
|
|
get => _powerOcrSettings.Properties.ActivationShortcut;
|
|
set
|
|
{
|
|
if (_powerOcrSettings.Properties.ActivationShortcut != value)
|
|
{
|
|
_powerOcrSettings.Properties.ActivationShortcut = value ?? _powerOcrSettings.Properties.DefaultActivationShortcut;
|
|
OnPropertyChanged(nameof(ActivationShortcut));
|
|
|
|
_settingsUtils.SaveSettings(_powerOcrSettings.ToJsonString(), PowerOcrSettings.ModuleName);
|
|
NotifySettingsChanged();
|
|
}
|
|
}
|
|
}
|
|
|
|
internal void UpdateLanguages()
|
|
{
|
|
int preferredLanguageIndex = -1;
|
|
int systemLanguageIndex = -1;
|
|
CultureInfo systemCulture = CultureInfo.CurrentUICulture;
|
|
|
|
// get the list of all installed OCR languages. While processing them, search for the previously preferred language and also for the current ui language
|
|
possibleOcrLanguages = OcrEngine.AvailableRecognizerLanguages.OrderBy(x => x.NativeName).ToList();
|
|
AvailableLanguages.Clear();
|
|
foreach (Language language in possibleOcrLanguages)
|
|
{
|
|
if (_powerOcrSettings.Properties.PreferredLanguage?.Equals(language.DisplayName, StringComparison.Ordinal) == true)
|
|
{
|
|
preferredLanguageIndex = AvailableLanguages.Count;
|
|
}
|
|
|
|
if (systemCulture.DisplayName.Equals(language.DisplayName, StringComparison.Ordinal) || systemCulture.Parent.DisplayName.Equals(language.DisplayName, StringComparison.Ordinal))
|
|
{
|
|
systemLanguageIndex = AvailableLanguages.Count;
|
|
}
|
|
|
|
AvailableLanguages.Add(language.NativeName);
|
|
}
|
|
|
|
// if the previously stored preferred language is not available (has been deleted or this is the first run with language preference)
|
|
if (preferredLanguageIndex == -1)
|
|
{
|
|
// try to use the current ui language. If it is also not available, set the first language as preferred (to have any selected language)
|
|
if (systemLanguageIndex >= 0)
|
|
{
|
|
preferredLanguageIndex = systemLanguageIndex;
|
|
}
|
|
else
|
|
{
|
|
preferredLanguageIndex = 0;
|
|
}
|
|
}
|
|
|
|
// set the language index -> the preferred language gets selected in the combo box
|
|
LanguageIndex = preferredLanguageIndex;
|
|
}
|
|
|
|
private void ScheduleSavingOfSettings()
|
|
{
|
|
lock (_delayedActionLock)
|
|
{
|
|
if (_delayedTimer.Enabled)
|
|
{
|
|
_delayedTimer.Stop();
|
|
}
|
|
|
|
_delayedTimer.Start();
|
|
}
|
|
}
|
|
|
|
private void DelayedTimer_Tick(object sender, EventArgs e)
|
|
{
|
|
lock (_delayedActionLock)
|
|
{
|
|
_delayedTimer.Stop();
|
|
NotifySettingsChanged();
|
|
}
|
|
}
|
|
|
|
private void NotifySettingsChanged()
|
|
{
|
|
// Using InvariantCulture as this is an IPC message
|
|
SendConfigMSG(
|
|
string.Format(
|
|
CultureInfo.InvariantCulture,
|
|
"{{ \"powertoys\": {{ \"{0}\": {1} }} }}",
|
|
PowerOcrSettings.ModuleName,
|
|
JsonSerializer.Serialize(_powerOcrSettings)));
|
|
}
|
|
|
|
public void RefreshEnabledState()
|
|
{
|
|
InitializeEnabledValue();
|
|
OnPropertyChanged(nameof(IsEnabled));
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!disposedValue)
|
|
{
|
|
if (disposing)
|
|
{
|
|
_delayedTimer.Dispose();
|
|
}
|
|
|
|
disposedValue = true;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
}
|