Skip to content

Commit

Permalink
Merge pull request #289 from raisingthefloor/master
Browse files Browse the repository at this point in the history
Morphic for Windows v1.3.1
  • Loading branch information
christopher-rtf authored Jul 21, 2021
2 parents 1dce107 + f503214 commit 6742abb
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 25 deletions.
10 changes: 5 additions & 5 deletions Morphic.Client/Bar/Data/Actions/Functions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace Morphic.Client.Bar.Data.Actions
// ReSharper disable once UnusedType.Global - accessed via reflection.
public class Functions
{
private readonly static SemaphoreSlim _captureTextSemaphore = new SemaphoreSlim(1, 1);
private readonly static SemaphoreSlim s_captureTextSemaphore = new SemaphoreSlim(1, 1);

[InternalFunction("snip")]
public static async Task<IMorphicResult> ScreenSnipAsync(FunctionArgs args)
Expand Down Expand Up @@ -190,7 +190,7 @@ public static async Task<IMorphicResult> ReadAloudAsync(FunctionArgs args)
TextPatternRange[]? textRangeCollection = null;
//
// capture (or wait on) our "capture text" semaphore; we'll release this in the finally block
await _captureTextSemaphore.WaitAsync();
await s_captureTextSemaphore.WaitAsync();
//
try
{
Expand Down Expand Up @@ -220,7 +220,7 @@ public static async Task<IMorphicResult> ReadAloudAsync(FunctionArgs args)
}
finally
{
_captureTextSemaphore.Release();
s_captureTextSemaphore.Release();
}
//
// if we just captured a text range collection (i.e. were able to copy the current selection), convert that capture into a string now
Expand Down Expand Up @@ -260,7 +260,7 @@ public static async Task<IMorphicResult> ReadAloudAsync(FunctionArgs args)
if (captureTextViaAutomationSucceeded == false)
{
// capture (or wait on) our "capture text" semaphore; we'll release this in the finally block
await _captureTextSemaphore.WaitAsync();
await s_captureTextSemaphore.WaitAsync();
//
try
{
Expand Down Expand Up @@ -412,7 +412,7 @@ public static async Task<IMorphicResult> ReadAloudAsync(FunctionArgs args)
}
finally
{
_captureTextSemaphore.Release();
s_captureTextSemaphore.Release();
}
}
}
Expand Down
52 changes: 32 additions & 20 deletions Morphic.Settings/SettingsHandlers/Theme/ThemeSettingsHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@
using Microsoft.Extensions.Logging;
using Microsoft.Win32;
using SolutionsRegistry;
using System.Threading;

[SrService]
public class ThemeSettingsHandler : FixedSettingsHandler
{
private readonly ILogger<ThemeSettingsHandler> logger;
private readonly IRegistry registry;

private readonly static SemaphoreSlim s_setHighContrastSemaphore = new SemaphoreSlim(1, 1);

public ThemeSettingsHandler(ILogger<ThemeSettingsHandler> logger, IRegistry registry)
{
this.logger = logger;
Expand Down Expand Up @@ -64,6 +67,7 @@ private void SaveCurrentTheme(string currentThemeFile, string saveAs)
"resources\\Themes\\aero.theme");
if (currentThemeFile != defaultTheme)
{
// OBSERVATION: this code is re-entrant; also note that if the aero.theme file is corrupt...this might reenter infinitely until the stack was full
this.SaveCurrentTheme(defaultTheme, saveAs);
}
return;
Expand Down Expand Up @@ -129,32 +133,40 @@ private void SaveCurrentTheme(string currentThemeFile, string saveAs)
}

[Setter("highContrastEnabled")]
public Task<bool> SetHighContrast(Setting setting, object? newValue)
public async Task<bool> SetHighContrast(Setting setting, object? newValue)
{
Spi.HighContrastOptions options = Spi.Instance.GetHighContrast();

bool enable = newValue as bool? == true;
bool currentlyEnabled = (options & Spi.HighContrastOptions.HCF_HIGHCONTRASTON) != 0;
if (!currentlyEnabled)
// capture (or wait on) our "set high contrast" semaphore; we'll release this in the finally block
await s_setHighContrastSemaphore.WaitAsync();
try
{
// Save the current theme, otherwise windows will use the last saved theme when restoring the contrast
// mode.
ThemeSettingGroup settingGroup = (ThemeSettingGroup)setting.SettingGroup;
this.SaveCurrentTheme(settingGroup.CurrentTheme, settingGroup.SavedTheme);
}
Spi.HighContrastOptions options = Spi.Instance.GetHighContrast();

if (enable)
{
options |= Spi.HighContrastOptions.HCF_HIGHCONTRASTON;
bool enable = newValue as bool? == true;
bool currentlyEnabled = (options & Spi.HighContrastOptions.HCF_HIGHCONTRASTON) != 0;
if (!currentlyEnabled)
{
// Save the current theme, otherwise windows will use the last saved theme when restoring the contrast
// mode.
ThemeSettingGroup settingGroup = (ThemeSettingGroup)setting.SettingGroup;
this.SaveCurrentTheme(settingGroup.CurrentTheme, settingGroup.SavedTheme);
}

if (enable)
{
options |= Spi.HighContrastOptions.HCF_HIGHCONTRASTON;
}
else
{
options &= ~Spi.HighContrastOptions.HCF_HIGHCONTRASTON;
}

var setHighContrastSuccess = Spi.Instance.SetHighContrast(options);
return setHighContrastSuccess;
}
else
finally
{
options &= ~Spi.HighContrastOptions.HCF_HIGHCONTRASTON;
s_setHighContrastSemaphore.Release();
}

Spi.Instance.SetHighContrast(options);

return Task.FromResult(true);
}

[Getter("highContrastEnabled")]
Expand Down

0 comments on commit 6742abb

Please sign in to comment.