Compare commits
1
Commits
v1.1.1
..
0f01c646a6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f01c646a6 |
@@ -138,22 +138,9 @@ jobs:
|
|||||||
- name: Build the installer
|
- name: Build the installer
|
||||||
run: ./Packaging/build-installer.ps1 -Version ${{ steps.version.outputs.plain }}
|
run: ./Packaging/build-installer.ps1 -Version ${{ steps.version.outputs.plain }}
|
||||||
|
|
||||||
# The artifact is where the package waits to be uploaded to Partner Center.
|
# The artifact is where the package waits to be uploaded to Partner Center
|
||||||
#
|
|
||||||
# The action comes from this Gitea rather than from github.com, and it is
|
|
||||||
# a fork of actions/upload-artifact with one line changed. Upstream reads
|
|
||||||
# GITHUB_SERVER_URL, takes every host but github.com and its enterprise
|
|
||||||
# ones for a GitHub Enterprise Server — where the v4 artifact backend does
|
|
||||||
# not exist — and throws before it makes a request. Here that backend does
|
|
||||||
# exist and answers, but the check runs on the runner ahead of the network
|
|
||||||
# and never lets it prove itself; nor can the name be corrected from this
|
|
||||||
# file, as the runner sets the GITHUB_ ones over the env of a step. The
|
|
||||||
# fork carries the reasoning in full in its GITEA-PATCH.md.
|
|
||||||
#
|
|
||||||
# The tag is a fixed one. A floating tag is how this broke before: the
|
|
||||||
# action is fetched at run time, and what arrives can change on its own
|
|
||||||
- name: Keep the package
|
- name: Keep the package
|
||||||
uses: https://git.alrakis.kz/actions/upload-artifact@v4-gitea
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: msix-${{ steps.version.outputs.version }}
|
name: msix-${{ steps.version.outputs.version }}
|
||||||
path: artifacts/packages/
|
path: artifacts/packages/
|
||||||
@@ -162,7 +149,7 @@ jobs:
|
|||||||
# The .wixpdb next to each installer is left out on purpose: it is of use
|
# The .wixpdb next to each installer is left out on purpose: it is of use
|
||||||
# only when something has to be traced back to the WiX source
|
# only when something has to be traced back to the WiX source
|
||||||
- name: Keep the installer
|
- name: Keep the installer
|
||||||
uses: https://git.alrakis.kz/actions/upload-artifact@v4-gitea
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: installer-${{ steps.version.outputs.plain }}
|
name: installer-${{ steps.version.outputs.plain }}
|
||||||
path: artifacts/installers/*.msi
|
path: artifacts/installers/*.msi
|
||||||
@@ -180,8 +167,10 @@ jobs:
|
|||||||
|
|
||||||
# The GITHUB_ names are what Gitea itself hands to the workflow — its
|
# The GITHUB_ names are what Gitea itself hands to the workflow — its
|
||||||
# actions repeat those of GitHub, and the addresses in them point at
|
# actions repeat those of GitHub, and the addresses in them point at
|
||||||
# this Gitea instance
|
# this Gitea instance. GITHUB_API_URL used not to reach the steps at
|
||||||
$api = "$env:GITHUB_API_URL/repos/$env:GITHUB_REPOSITORY/releases"
|
# all, so the address is put together from the server one when empty
|
||||||
|
$root = if ($env:GITHUB_API_URL) { $env:GITHUB_API_URL } else { "$env:GITHUB_SERVER_URL/api/v1" }
|
||||||
|
$api = "$root/repos/$env:GITHUB_REPOSITORY/releases"
|
||||||
$headers = @{ Authorization = "token $env:GITEA_TOKEN" }
|
$headers = @{ Authorization = "token $env:GITEA_TOKEN" }
|
||||||
|
|
||||||
# Gitea makes a release of its own for a pushed tag, so the release is
|
# Gitea makes a release of its own for a pushed tag, so the release is
|
||||||
|
|||||||
@@ -133,34 +133,6 @@ public sealed partial class EndToEndTests
|
|||||||
Assert.False(launch.Process.HasExited);
|
Assert.False(launch.Process.HasExited);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// "Exit" in the tray menu ends the application whole: the settings window goes with
|
|
||||||
/// the agent instead of staying on the screen belonging to nothing.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// The menu itself is out of reach of a test — it is a <c>TrackPopupMenuEx</c> menu
|
|
||||||
/// with a modal loop of its own — so what is checked is the request the menu makes.
|
|
||||||
/// The settings window here is the real one, started by the agent, and it must be
|
|
||||||
/// listening by the time it is on the screen.
|
|
||||||
/// </remarks>
|
|
||||||
[Fact]
|
|
||||||
public void The_agents_exit_closes_the_settings_window()
|
|
||||||
{
|
|
||||||
using Launch launch = Launch.Start();
|
|
||||||
launch.WaitForSettingsWindow();
|
|
||||||
|
|
||||||
Process settings = Launch.SettingsProcesses().Single();
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Assert.True(SettingsCloseSignal.RequestClose(), "the settings window was not listening");
|
|
||||||
Assert.True(settings.WaitForExit(ExitTimeout), "the settings window outlived the agent's exit");
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
settings.Dispose();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>A started application that shuts down together with the check.</summary>
|
/// <summary>A started application that shuts down together with the check.</summary>
|
||||||
private sealed class Launch : IDisposable
|
private sealed class Launch : IDisposable
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -125,12 +125,5 @@ internal sealed class Agent : IDisposable
|
|||||||
|
|
||||||
private void OnOpenRequested(object? sender, EventArgs e) => SettingsLauncher.Open();
|
private void OnOpenRequested(object? sender, EventArgs e) => SettingsLauncher.Open();
|
||||||
|
|
||||||
// "Exit" means the application, not just the background half of it. A settings
|
private void OnExitRequested(object? sender, EventArgs e) => _window.Quit();
|
||||||
// window left open would outlive the tray icon it was opened from, so it is asked
|
|
||||||
// to close first — it may be the very window the user is looking at
|
|
||||||
private void OnExitRequested(object? sender, EventArgs e)
|
|
||||||
{
|
|
||||||
SettingsCloseSignal.RequestClose();
|
|
||||||
_window.Quit();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
<PublishTrimmed>false</PublishTrimmed>
|
<PublishTrimmed>false</PublishTrimmed>
|
||||||
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != ''">true</PublishReadyToRun>
|
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != ''">true</PublishReadyToRun>
|
||||||
<Version>1.0.0</Version>
|
<Version>1.0.0</Version>
|
||||||
<AssemblyVersion>$(Version)</AssemblyVersion>
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||||||
<FileVersion>$(Version)</FileVersion>
|
<FileVersion>1.0.0.0</FileVersion>
|
||||||
<Product>CursorLang</Product>
|
<Product>CursorLang</Product>
|
||||||
<Company>Aleksandr Neichev</Company>
|
<Company>Aleksandr Neichev</Company>
|
||||||
<Description>Shows the keyboard layout at the cursor</Description>
|
<Description>Shows the keyboard layout at the cursor</Description>
|
||||||
|
|||||||
@@ -68,42 +68,42 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
PopupWindowNative.Rect? anchor = TryGetAnchor();
|
bool atFixedPoint = _settings.PlacementMode == PopupPlacementMode.FixedPoint;
|
||||||
PopupModeSettings mode = ModeFor(anchor);
|
|
||||||
|
|
||||||
PopupWindowNative.Rect work = default;
|
PopupWindowNative.Rect work = default;
|
||||||
|
PopupWindowNative.Rect anchor = default;
|
||||||
double scale;
|
double scale;
|
||||||
|
|
||||||
if (anchor is { } at)
|
if (atFixedPoint)
|
||||||
{
|
|
||||||
scale = PopupWindowNative.GetScaleAt(new PopupWindowNative.Point { X = at.Left, Y = at.Top });
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
(work, scale) = PopupWindowNative.GetActiveMonitorWorkArea();
|
(work, scale) = PopupWindowNative.GetActiveMonitorWorkArea();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
anchor = GetAnchor();
|
||||||
|
scale = PopupWindowNative.GetScaleAt(new PopupWindowNative.Point { X = anchor.Left, Y = anchor.Top });
|
||||||
|
}
|
||||||
|
|
||||||
EnsureFont(mode, scale);
|
EnsureFont(scale);
|
||||||
|
|
||||||
Size measured = MeasureText(text);
|
Size measured = MeasureText(text);
|
||||||
int width = measured.Width + (2 * PopupLayout.ToPixels(PaddingX, scale));
|
int width = measured.Width + (2 * PopupLayout.ToPixels(PaddingX, scale));
|
||||||
int height = measured.Height + (2 * PopupLayout.ToPixels(PaddingY, scale));
|
int height = measured.Height + (2 * PopupLayout.ToPixels(PaddingY, scale));
|
||||||
|
|
||||||
PopupWindowNative.Point position = anchor is { } near
|
PopupWindowNative.Point position = atFixedPoint
|
||||||
? PopupLayout.NearAnchor(
|
? PopupLayout.OnScreen(
|
||||||
near,
|
|
||||||
SideForMode(),
|
|
||||||
PopupLayout.ToPixels(mode.Offset, scale),
|
|
||||||
width,
|
|
||||||
height)
|
|
||||||
: PopupLayout.OnScreen(
|
|
||||||
work,
|
work,
|
||||||
_settings.FixedPoint.Position,
|
_settings.FixedPoint.Position,
|
||||||
PopupLayout.ToPixels(mode.Offset, scale),
|
PopupLayout.ToPixels(_settings.FixedPoint.Offset, scale),
|
||||||
|
width,
|
||||||
|
height)
|
||||||
|
: PopupLayout.NearAnchor(
|
||||||
|
anchor,
|
||||||
|
SideForMode(),
|
||||||
|
PopupLayout.ToPixels(_settings.Current.Offset, scale),
|
||||||
width,
|
width,
|
||||||
height);
|
height);
|
||||||
|
|
||||||
if (!Draw(mode, text, position, width, height, PopupLayout.ToPixels(CornerRadius, scale)))
|
if (!Draw(text, position, width, height, PopupLayout.ToPixels(CornerRadius, scale)))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -139,8 +139,7 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
/// kilobytes for the length of one call, the popup is shown rarely, and a cached one
|
/// kilobytes for the length of one call, the popup is shown rarely, and a cached one
|
||||||
/// would have to be rebuilt on every change of size, colour or scale anyway.
|
/// would have to be rebuilt on every change of size, colour or scale anyway.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
private bool Draw(
|
private bool Draw(string text, PopupWindowNative.Point at, int width, int height, int radius)
|
||||||
PopupModeSettings mode, string text, PopupWindowNative.Point at, int width, int height, int radius)
|
|
||||||
{
|
{
|
||||||
IntPtr screen = GdiNative.GetDC(IntPtr.Zero);
|
IntPtr screen = GdiNative.GetDC(IntPtr.Zero);
|
||||||
if (screen == IntPtr.Zero)
|
if (screen == IntPtr.Zero)
|
||||||
@@ -167,8 +166,8 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
|
|
||||||
GdiNative.SelectObject(memory, surface);
|
GdiNative.SelectObject(memory, surface);
|
||||||
|
|
||||||
Fill(mode, bits, width, height);
|
Fill(bits, width, height);
|
||||||
DrawText(mode, memory, text, width, height);
|
DrawText(memory, text, width, height);
|
||||||
|
|
||||||
// GDI writes nothing into the alpha channel, so the letters it just drew are
|
// GDI writes nothing into the alpha channel, so the letters it just drew are
|
||||||
// sitting at zero alpha and would come out invisible. The inside of the
|
// sitting at zero alpha and would come out invisible. The inside of the
|
||||||
@@ -179,7 +178,7 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
RoundTheCorners(bits, width, height, radius);
|
RoundTheCorners(bits, width, height, radius);
|
||||||
|
|
||||||
var size = new WindowNative.Size { Width = width, Height = height };
|
var size = new WindowNative.Size { Width = width, Height = height };
|
||||||
var alpha = (byte)Math.Clamp(Math.Round(mode.Opacity * 255), 0, 255);
|
var alpha = (byte)Math.Clamp(Math.Round(_settings.Current.Opacity * 255), 0, 255);
|
||||||
|
|
||||||
return WindowNative.SetContent(Handle, at, size, memory, alpha);
|
return WindowNative.SetContent(Handle, at, size, memory, alpha);
|
||||||
}
|
}
|
||||||
@@ -201,9 +200,9 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void Fill(PopupModeSettings mode, IntPtr bits, int width, int height)
|
private void Fill(IntPtr bits, int width, int height)
|
||||||
{
|
{
|
||||||
Color background = mode.BackgroundColor;
|
Color background = _settings.Current.BackgroundColor;
|
||||||
|
|
||||||
// Straight into the bitmap rather than through a brush: the pixels have to be
|
// Straight into the bitmap rather than through a brush: the pixels have to be
|
||||||
// written anyway to carry an alpha channel GDI would not touch
|
// written anyway to carry an alpha channel GDI would not touch
|
||||||
@@ -217,8 +216,7 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DrawText(
|
private void DrawText(IntPtr deviceContext, string text, int width, int height)
|
||||||
PopupModeSettings mode, IntPtr deviceContext, string text, int width, int height)
|
|
||||||
{
|
{
|
||||||
if (_font == IntPtr.Zero || text.Length == 0)
|
if (_font == IntPtr.Zero || text.Length == 0)
|
||||||
{
|
{
|
||||||
@@ -229,7 +227,7 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
|
|
||||||
IntPtr previousFont = GdiNative.SelectObject(deviceContext, _font);
|
IntPtr previousFont = GdiNative.SelectObject(deviceContext, _font);
|
||||||
GdiNative.SetBkMode(deviceContext, GdiNative.TRANSPARENT);
|
GdiNative.SetBkMode(deviceContext, GdiNative.TRANSPARENT);
|
||||||
GdiNative.SetTextColor(deviceContext, GdiNative.ToColorRef(mode.ForegroundColor));
|
GdiNative.SetTextColor(deviceContext, GdiNative.ToColorRef(_settings.Current.ForegroundColor));
|
||||||
|
|
||||||
GdiNative.DrawText(deviceContext, text, text.Length, ref bounds,
|
GdiNative.DrawText(deviceContext, text, text.Length, ref bounds,
|
||||||
GdiNative.DT_SINGLELINE | GdiNative.DT_CENTER | GdiNative.DT_VCENTER |
|
GdiNative.DT_SINGLELINE | GdiNative.DT_CENTER | GdiNative.DT_VCENTER |
|
||||||
@@ -331,40 +329,18 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
return (int)((alpha << 24) | (red << 16) | (green << 8) | blue);
|
return (int)((alpha << 24) | (red << 16) | (green << 8) | blue);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
// The anchor point: the caret in the input field or the mouse cursor. The cursor
|
||||||
/// What the popup is placed next to, or <c>null</c> when there is nothing: the fixed
|
// is a rectangle of zero size, so the corner computation is shared by both
|
||||||
/// point mode, and the caret mode where the application reports no caret.
|
private PopupWindowNative.Rect GetAnchor()
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// The cursor is a rectangle of zero size, so the corner arithmetic is shared by it
|
|
||||||
/// and the caret.
|
|
||||||
/// </remarks>
|
|
||||||
private PopupWindowNative.Rect? TryGetAnchor() => _settings.PlacementMode switch
|
|
||||||
{
|
{
|
||||||
PopupPlacementMode.FixedPoint => null,
|
if (_settings.PlacementMode == PopupPlacementMode.AtCaret &&
|
||||||
PopupPlacementMode.AtCaret => CaretNative.TryGetCaretRect(),
|
CaretNative.TryGetCaretRect() is { } caret)
|
||||||
_ => PopupLayout.AsAnchor(PopupWindowNative.GetCursorPosition()),
|
{
|
||||||
};
|
return caret;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
return PopupLayout.AsAnchor(PopupWindowNative.GetCursorPosition());
|
||||||
/// The settings the popup is shown with: those of the mode chosen, or those of the
|
}
|
||||||
/// fixed point when there is no anchor to stand next to.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// The caret mode falls back to the fixed point rather than to the mouse cursor:
|
|
||||||
/// the cursor is wherever it was last left — off to a side, on another monitor, or
|
|
||||||
/// over the very text being typed — and a popup that lands there while the eyes are
|
|
||||||
/// on the caret is one that is looked for and not found. The fixed point is always
|
|
||||||
/// in the same place, so it is known where to look.
|
|
||||||
///
|
|
||||||
/// The look comes from the fixed point mode too, not just the place. The two are set
|
|
||||||
/// up together for a reason: the popup by the caret is small and quiet because it
|
|
||||||
/// sits inside a text being read, while the one in the corner of the monitor is
|
|
||||||
/// looked for on purpose and is set larger. Keeping the caret look at the corner
|
|
||||||
/// would put a popup meant to go unnoticed where nothing else draws the eye.
|
|
||||||
/// </remarks>
|
|
||||||
private PopupModeSettings ModeFor(PopupWindowNative.Rect? anchor) =>
|
|
||||||
anchor is null ? _settings.FixedPoint : _settings.Current;
|
|
||||||
|
|
||||||
// The caret has two sides to choose from and the cursor has six, so each mode names
|
// The caret has two sides to choose from and the cursor has six, so each mode names
|
||||||
// its own side in its own terms
|
// its own side in its own terms
|
||||||
@@ -397,10 +373,10 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
// The font is rebuilt only when the size in the settings or the monitor scale
|
// The font is rebuilt only when the size in the settings or the monitor scale
|
||||||
// changes: it is the one expensive thing a show does. A switch of the placement
|
// changes: it is the one expensive thing a show does. A switch of the placement
|
||||||
// mode counts as a change of the size, since the size belongs to the mode
|
// mode counts as a change of the size, since the size belongs to the mode
|
||||||
private void EnsureFont(PopupModeSettings mode, double scale)
|
private void EnsureFont(double scale)
|
||||||
{
|
{
|
||||||
if (_font != IntPtr.Zero &&
|
if (_font != IntPtr.Zero &&
|
||||||
Math.Abs(_fontSize - mode.FontSize) < 0.01 &&
|
Math.Abs(_fontSize - _settings.Current.FontSize) < 0.01 &&
|
||||||
Math.Abs(_fontScale - scale) < 0.01)
|
Math.Abs(_fontScale - scale) < 0.01)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
@@ -408,7 +384,7 @@ internal sealed class NativePopupWindow : NativeWindow, ILayoutPopupWindow
|
|||||||
|
|
||||||
ReleaseFont();
|
ReleaseFont();
|
||||||
|
|
||||||
_fontSize = mode.FontSize;
|
_fontSize = _settings.Current.FontSize;
|
||||||
_fontScale = scale;
|
_fontScale = scale;
|
||||||
_font = GdiNative.CreateFont(_fontSize, scale);
|
_font = GdiNative.CreateFont(_fontSize, scale);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,115 +0,0 @@
|
|||||||
using System.Collections.Concurrent;
|
|
||||||
using CursorLang.Core.Services;
|
|
||||||
using CursorLang.Tests.Shared;
|
|
||||||
|
|
||||||
namespace CursorLang.Core.Tests.Services;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The one thing the agent says to the settings window: quit with me.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// The event names here are the tests' own. The application's name is fixed, and a test
|
|
||||||
/// listening on it would answer for a settings window someone is using — or, signalling,
|
|
||||||
/// close it.
|
|
||||||
/// </remarks>
|
|
||||||
public sealed class SettingsCloseSignalTests
|
|
||||||
{
|
|
||||||
[Fact]
|
|
||||||
public void The_request_reaches_the_settings_window()
|
|
||||||
{
|
|
||||||
string suffix = UniqueSuffix();
|
|
||||||
var signal = new SettingsCloseSignal(suffix);
|
|
||||||
|
|
||||||
ConcurrentQueue<EventArgs> requests = new();
|
|
||||||
signal.CloseRequested += (_, e) => requests.Enqueue(e);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
signal.Listen();
|
|
||||||
|
|
||||||
Assert.True(RequestApart(suffix), "the request found nobody listening");
|
|
||||||
Pump.WaitFor(() => !requests.IsEmpty, "the settings window got the request to close");
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
signal.Dispose();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// The usual case: the user quits from the tray with no settings window on the screen
|
|
||||||
[Fact]
|
|
||||||
public void A_request_with_no_settings_window_open_passes_without_consequence()
|
|
||||||
{
|
|
||||||
Assert.False(RequestApart(UniqueSuffix()));
|
|
||||||
}
|
|
||||||
|
|
||||||
// The window has closed on its own, and the process is on its way out anyway
|
|
||||||
[Fact]
|
|
||||||
public void No_request_arrives_after_the_window_is_gone()
|
|
||||||
{
|
|
||||||
string suffix = UniqueSuffix();
|
|
||||||
var signal = new SettingsCloseSignal(suffix);
|
|
||||||
|
|
||||||
ConcurrentQueue<EventArgs> requests = new();
|
|
||||||
signal.CloseRequested += (_, e) => requests.Enqueue(e);
|
|
||||||
|
|
||||||
signal.Listen();
|
|
||||||
signal.Dispose();
|
|
||||||
|
|
||||||
RequestApart(suffix);
|
|
||||||
Pump.Pause(TimeSpan.FromMilliseconds(80));
|
|
||||||
|
|
||||||
Assert.Empty(requests);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void Listening_twice_leaves_one_listener()
|
|
||||||
{
|
|
||||||
string suffix = UniqueSuffix();
|
|
||||||
var signal = new SettingsCloseSignal(suffix);
|
|
||||||
|
|
||||||
var requests = 0;
|
|
||||||
signal.CloseRequested += (_, _) => Interlocked.Increment(ref requests);
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
signal.Listen();
|
|
||||||
signal.Listen();
|
|
||||||
|
|
||||||
Assert.True(RequestApart(suffix));
|
|
||||||
Pump.WaitFor(() => Volatile.Read(ref requests) > 0, "the request arrived");
|
|
||||||
Pump.Pause(TimeSpan.FromMilliseconds(80));
|
|
||||||
|
|
||||||
Assert.Equal(1, Volatile.Read(ref requests));
|
|
||||||
}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
signal.Dispose();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void Closing_without_listening_passes_without_consequence()
|
|
||||||
{
|
|
||||||
var signal = new SettingsCloseSignal(UniqueSuffix());
|
|
||||||
|
|
||||||
signal.Dispose();
|
|
||||||
signal.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Every test gets a namespace of kernel objects of its own
|
|
||||||
private static string UniqueSuffix() => "." + Guid.NewGuid().ToString("N");
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Asks for the close the way the agent does it — from another process, and here
|
|
||||||
/// from another thread, which is as foreign as a test can get.
|
|
||||||
/// </summary>
|
|
||||||
private static bool RequestApart(string suffix)
|
|
||||||
{
|
|
||||||
var heard = false;
|
|
||||||
|
|
||||||
Pump.RunApart(() => heard = SettingsCloseSignal.RequestClose(suffix));
|
|
||||||
|
|
||||||
return heard;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -113,7 +113,7 @@ internal static class CaretNative
|
|||||||
private static PopupWindowNative.Rect? TryGetAutomationCaret()
|
private static PopupWindowNative.Rect? TryGetAutomationCaret()
|
||||||
{
|
{
|
||||||
// A hung application must not hang the popup along with it: we wait for the
|
// A hung application must not hang the popup along with it: we wait for the
|
||||||
// answer for a limited time, otherwise the popup goes to the fixed point
|
// answer for a limited time, otherwise we show the popup at the cursor
|
||||||
Task<PopupWindowNative.Rect?> query = Task.Run(QueryAutomationCaret);
|
Task<PopupWindowNative.Rect?> query = Task.Run(QueryAutomationCaret);
|
||||||
return query.Wait(AutomationTimeout) ? query.Result : null;
|
return query.Wait(AutomationTimeout) ? query.Result : null;
|
||||||
}
|
}
|
||||||
@@ -165,7 +165,7 @@ internal static class CaretNative
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
// Built without UI Automation: Chromium and Electron keep the system caret and MSAA
|
// Built without UI Automation: Chromium and Electron keep the system caret and MSAA
|
||||||
// steps above, and where those stay silent the popup falls back to the fixed point
|
// steps above, and where those stay silent the popup falls back to the cursor
|
||||||
private static PopupWindowNative.Rect? TryGetAutomationCaret() => null;
|
private static PopupWindowNative.Rect? TryGetAutomationCaret() => null;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,7 @@ public enum PopupPlacementMode
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Next to the caret in the active input field. When the application does not
|
/// Next to the caret in the active input field. When the application does not
|
||||||
/// report its position, the popup is shown as in <see cref="FixedPoint"/> — at the
|
/// report its position, the popup is shown at the mouse cursor.
|
||||||
/// place and with the look that mode is set up with.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AtCaret,
|
AtCaret,
|
||||||
|
|
||||||
|
|||||||
@@ -1,98 +0,0 @@
|
|||||||
namespace CursorLang.Core.Services;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Tells the settings window that the agent is quitting and it is to close with it.
|
|
||||||
/// </summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// The one thing the agent says to the settings window, and the mirror image of
|
|
||||||
/// <see cref="SettingsSignal"/>. "Exit" in the tray menu means the application is done
|
|
||||||
/// with, and a settings window left alone on the screen after it is a window belonging
|
|
||||||
/// to nothing: the tray icon it was opened from is gone, and closing it would be the
|
|
||||||
/// user's only remaining move.
|
|
||||||
///
|
|
||||||
/// A named event rather than a window message, because the agent has no handle to send
|
|
||||||
/// one to: the settings window lives in a process the agent starts and deliberately
|
|
||||||
/// does not keep hold of. The name has no <c>Global</c> prefix, so it lives in the
|
|
||||||
/// session namespace — same reasoning as <see cref="SingleInstanceGate"/>, and the same
|
|
||||||
/// consequence: with fast user switching each user's halves talk to their own.
|
|
||||||
///
|
|
||||||
/// Only the settings window creates the object; the agent opens what is already there
|
|
||||||
/// and stays silent when there is nothing. Were it the other way round, the request
|
|
||||||
/// would sit in an auto-reset event waiting for the next settings window to open and
|
|
||||||
/// close it the moment it did.
|
|
||||||
/// </remarks>
|
|
||||||
internal sealed class SettingsCloseSignal : IDisposable
|
|
||||||
{
|
|
||||||
private const string EventName = "CursorLang.CloseSettings";
|
|
||||||
|
|
||||||
private readonly string _eventName;
|
|
||||||
|
|
||||||
private EventWaitHandle? _request;
|
|
||||||
private RegisteredWaitHandle? _wait;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Listens on the name the two halves agree on.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="nameSuffix">
|
|
||||||
/// A namespace of its own. Empty for the application; the tests pass one so that
|
|
||||||
/// they do not answer for — or worse, close — a settings window someone is using.
|
|
||||||
/// </param>
|
|
||||||
internal SettingsCloseSignal(string nameSuffix = "") => _eventName = EventName + nameSuffix;
|
|
||||||
|
|
||||||
/// <summary>The agent asks for the window to be closed.</summary>
|
|
||||||
/// <remarks>
|
|
||||||
/// Raised on a thread pool thread, wherever the wait happened to be answered — a
|
|
||||||
/// window obeys only its own, so the handler has to get back to it.
|
|
||||||
/// </remarks>
|
|
||||||
internal event EventHandler? CloseRequested;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Asks the settings window of this session, if one is open, to close. Silence is
|
|
||||||
/// a normal answer: most of the time the user quits with no window on the screen.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>Whether there was anybody to hear it.</returns>
|
|
||||||
internal static bool RequestClose(string nameSuffix = "")
|
|
||||||
{
|
|
||||||
if (!EventWaitHandle.TryOpenExisting(EventName + nameSuffix, out EventWaitHandle? request))
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
using (request)
|
|
||||||
{
|
|
||||||
return request.Set();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>Starts waiting for the request. Called once, by the settings window.</summary>
|
|
||||||
internal void Listen()
|
|
||||||
{
|
|
||||||
if (_request is not null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_request = new EventWaitHandle(false, EventResetMode.AutoReset, _eventName);
|
|
||||||
|
|
||||||
// As in the gate: the thread pool holds the wait, there is no reason to keep a
|
|
||||||
// thread of our own for a request that may never come
|
|
||||||
_wait = ThreadPool.RegisterWaitForSingleObject(
|
|
||||||
_request,
|
|
||||||
OnCloseSignalled,
|
|
||||||
state: null,
|
|
||||||
Timeout.Infinite,
|
|
||||||
executeOnlyOnce: false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
_wait?.Unregister(null);
|
|
||||||
_wait = null;
|
|
||||||
|
|
||||||
_request?.Dispose();
|
|
||||||
_request = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnCloseSignalled(object? state, bool timedOut) =>
|
|
||||||
CloseRequested?.Invoke(this, EventArgs.Empty);
|
|
||||||
}
|
|
||||||
@@ -26,7 +26,6 @@ public partial class App : Application
|
|||||||
{
|
{
|
||||||
private ServiceProvider? _services;
|
private ServiceProvider? _services;
|
||||||
private SingleInstanceGate? _instanceGate;
|
private SingleInstanceGate? _instanceGate;
|
||||||
private SettingsCloseSignal? _closeSignal;
|
|
||||||
|
|
||||||
protected override void OnStartup(StartupEventArgs e)
|
protected override void OnStartup(StartupEventArgs e)
|
||||||
{
|
{
|
||||||
@@ -43,10 +42,6 @@ public partial class App : Application
|
|||||||
_instanceGate = gate;
|
_instanceGate = gate;
|
||||||
_instanceGate.ActivationRequested += OnActivationRequested;
|
_instanceGate.ActivationRequested += OnActivationRequested;
|
||||||
|
|
||||||
_closeSignal = new SettingsCloseSignal();
|
|
||||||
_closeSignal.CloseRequested += OnCloseRequested;
|
|
||||||
_closeSignal.Listen();
|
|
||||||
|
|
||||||
var services = new ServiceCollection();
|
var services = new ServiceCollection();
|
||||||
ConfigureServices(services);
|
ConfigureServices(services);
|
||||||
_services = services.BuildServiceProvider();
|
_services = services.BuildServiceProvider();
|
||||||
@@ -66,12 +61,6 @@ public partial class App : Application
|
|||||||
{
|
{
|
||||||
_services?.Dispose();
|
_services?.Dispose();
|
||||||
|
|
||||||
if (_closeSignal is not null)
|
|
||||||
{
|
|
||||||
_closeSignal.CloseRequested -= OnCloseRequested;
|
|
||||||
_closeSignal.Dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_instanceGate is not null)
|
if (_instanceGate is not null)
|
||||||
{
|
{
|
||||||
_instanceGate.ActivationRequested -= OnActivationRequested;
|
_instanceGate.ActivationRequested -= OnActivationRequested;
|
||||||
@@ -106,27 +95,6 @@ public partial class App : Application
|
|||||||
private void OnActivationRequested(object? sender, EventArgs e) =>
|
private void OnActivationRequested(object? sender, EventArgs e) =>
|
||||||
Dispatcher.BeginInvoke(ShowMainWindow);
|
Dispatcher.BeginInvoke(ShowMainWindow);
|
||||||
|
|
||||||
// The agent is quitting. Answered on a thread pool thread, and the window is closed
|
|
||||||
// on its own one
|
|
||||||
private void OnCloseRequested(object? sender, EventArgs e) =>
|
|
||||||
Dispatcher.BeginInvoke(CloseMainWindow);
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Closes the window the way the title bar button does, so that everything hanging
|
|
||||||
/// off closing happens; <see cref="ShutdownMode.OnMainWindowClose"/> ends the process
|
|
||||||
/// after it. Without a window there is nothing to close and the process simply ends.
|
|
||||||
/// </summary>
|
|
||||||
private void CloseMainWindow()
|
|
||||||
{
|
|
||||||
if (MainWindow is { } window)
|
|
||||||
{
|
|
||||||
window.Close();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void ShowMainWindow()
|
private void ShowMainWindow()
|
||||||
{
|
{
|
||||||
if (MainWindow is not { } window)
|
if (MainWindow is not { } window)
|
||||||
|
|||||||
@@ -21,8 +21,8 @@
|
|||||||
<PublishTrimmed>false</PublishTrimmed>
|
<PublishTrimmed>false</PublishTrimmed>
|
||||||
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != ''">true</PublishReadyToRun>
|
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != ''">true</PublishReadyToRun>
|
||||||
<Version>1.0.0</Version>
|
<Version>1.0.0</Version>
|
||||||
<AssemblyVersion>$(Version)</AssemblyVersion>
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||||||
<FileVersion>$(Version)</FileVersion>
|
<FileVersion>1.0.0.0</FileVersion>
|
||||||
<Product>CursorLang</Product>
|
<Product>CursorLang</Product>
|
||||||
<Company>Aleksandr Neichev</Company>
|
<Company>Aleksandr Neichev</Company>
|
||||||
<Description>Settings window of CursorLang</Description>
|
<Description>Settings window of CursorLang</Description>
|
||||||
|
|||||||
@@ -136,8 +136,8 @@
|
|||||||
Condition="REMOVE="ALL" AND NOT UPGRADINGPRODUCTCODE" />
|
Condition="REMOVE="ALL" AND NOT UPGRADINGPRODUCTCODE" />
|
||||||
</InstallExecuteSequence>
|
</InstallExecuteSequence>
|
||||||
|
|
||||||
<SetProperty Id="WixShellExecTarget" Value="[INSTALLFOLDER]CursorLang.exe"
|
<!-- Offered at the end of the wizard, the way an installer usually does -->
|
||||||
After="CostFinalize" Sequence="ui" />
|
<Property Id="WixShellExecTarget" Value="[#CursorLang.exe]" />
|
||||||
<CustomAction Id="LaunchApplication" BinaryRef="Wix4UtilCA_$(sys.BUILDARCHSHORT)"
|
<CustomAction Id="LaunchApplication" BinaryRef="Wix4UtilCA_$(sys.BUILDARCHSHORT)"
|
||||||
DllEntry="WixShellExec" Impersonate="yes" Return="ignore" />
|
DllEntry="WixShellExec" Impersonate="yes" Return="ignore" />
|
||||||
|
|
||||||
|
|||||||
+4
-30
@@ -84,28 +84,20 @@ MSIX всегда выполняются в контексте вошедшег
|
|||||||
раскладкой. Без UI, и так должно остаться: всё, что попадёт туда, попадёт и
|
раскладкой. Без UI, и так должно остаться: всё, что попадёт туда, попадёт и
|
||||||
в фоновый процесс.
|
в фоновый процесс.
|
||||||
|
|
||||||
Всё, что окно сообщает агенту, идёт только через `settings.json`. Окно пишет его
|
Связь между ними — только `settings.json`. Окно пишет его целиком, во временный
|
||||||
целиком, во временный файл, который одним движением встаёт на место, и посылает
|
файл, который одним движением встаёт на место, и посылает агенту
|
||||||
агенту зарегистрированное оконное сообщение, по которому тот перечитывает файл.
|
зарегистрированное оконное сообщение, по которому тот перечитывает файл.
|
||||||
Сообщение не несёт данных: пересылка самих изменений лишила бы файл роли
|
Сообщение не несёт данных: пересылка самих изменений лишила бы файл роли
|
||||||
единственного источника правды. Работающий агент необязателен — без него окно
|
единственного источника правды. Работающий агент необязателен — без него окно
|
||||||
работает так же. За файлом никто не следит: писатель у него один, и он сам
|
работает так же. За файлом никто не следит: писатель у него один, и он сам
|
||||||
сообщает о записи.
|
сообщает о записи.
|
||||||
|
|
||||||
В обратную сторону агент говорит одно слово, и то последнее: пункт «Выход» в меню
|
|
||||||
трея просит открытое окно настроек закрыться, прежде чем агент уйдёт, — чтобы на
|
|
||||||
экране не осталось окна, которому больше ничего не принадлежит. Просьба идёт
|
|
||||||
именованным событием сессии, а не оконным сообщением: агент запускает этот процесс
|
|
||||||
и намеренно не держит на него ссылки. Чаще всего слушать её некому, и это
|
|
||||||
нормальный ответ.
|
|
||||||
|
|
||||||
## Трей
|
## Трей
|
||||||
|
|
||||||
Окно настроек — гость на экране, а не само приложение: оно показывается после
|
Окно настроек — гость на экране, а не само приложение: оно показывается после
|
||||||
установки и всякий раз, когда его просят иконка или её меню. Обе кнопки в
|
установки и всякий раз, когда его просят иконка или её меню. Обе кнопки в
|
||||||
заголовке окна означают ровно то, что написано: окно закрывается, а его процесс
|
заголовке окна означают ровно то, что написано: окно закрывается, а его процесс
|
||||||
завершается. Выход из самого приложения — пункт «Выход» в меню трея, и открытое
|
завершается. Выход из самого приложения — пункт «Выход» в меню трея.
|
||||||
окно настроек он закрывает вместе с агентом.
|
|
||||||
|
|
||||||
Меню иконки системное, его рисует Windows. Надписи по-прежнему следуют языку,
|
Меню иконки системное, его рисует Windows. Надписи по-прежнему следуют языку,
|
||||||
выбранному в настройках, а тема до меню больше не дотягивается: меню на WPF
|
выбранному в настройках, а тема до меню больше не дотягивается: меню на WPF
|
||||||
@@ -169,24 +161,6 @@ MSIX всегда выполняются в контексте вошедшег
|
|||||||
на месте, а не исчезает из раздела — появляющаяся и исчезающая строка сдвигала бы
|
на месте, а не исчезает из раздела — появляющаяся и исчезающая строка сдвигала бы
|
||||||
всё, что ниже, при каждой смене места.
|
всё, что ниже, при каждой смене места.
|
||||||
|
|
||||||
Положение каретки сообщает не всякое приложение, и тогда рядом с курсором ввода —
|
|
||||||
нигде. Подсказка уходит на фиксированную точку: место, отступ и оформление берутся
|
|
||||||
оттуда, из режима каретки не берётся ничего. Курсор мыши был бы запасным вариантом
|
|
||||||
поближе — и неверным: он там, где его оставили, сбоку или на другом мониторе, тогда
|
|
||||||
как смотрят на каретку. Фиксированная точка всегда на одном и том же месте, и потому
|
|
||||||
известно, куда смотреть, — а вместе с местом должно приходить и оформление: подсказка,
|
|
||||||
настроенная мелкой и незаметной для середины текста, в углу монитора останется
|
|
||||||
незамеченной.
|
|
||||||
|
|
||||||
Какие-то приложения, решает не то, на чём они написаны, а то, что окно о себе
|
|
||||||
сообщает. Обычный элемент Win32 заводит системную каретку, и её читают сразу;
|
|
||||||
Chrome и Electron рисуют свою и сообщают о ней через интерфейсы доступности.
|
|
||||||
Окну, которое рисует текст на голом холсте, сообщать нечего — и оба случая
|
|
||||||
уживаются в одном приложении: редакторы JetBrains отвечают, потому что каретку
|
|
||||||
для них держит их среда выполнения, а панель инструментов, нарисованная Compose,
|
|
||||||
не содержит текстового элемента, который нашли бы UI Automation или Java Access
|
|
||||||
Bridge. Ради такого окна фиксированная точка и нужна.
|
|
||||||
|
|
||||||
К какому режиму относится оформление, объясняет всплывающая подсказка рядом с самим
|
К какому режиму относится оформление, объясняет всплывающая подсказка рядом с самим
|
||||||
режимом, а не строка текста в разделе: ползунки ниже показывают другие числа после
|
режимом, а не строка текста в разделе: ползунки ниже показывают другие числа после
|
||||||
переключения режима, и это вопрос, который задают один раз.
|
переключения режима, и это вопрос, который задают один раз.
|
||||||
|
|||||||
@@ -81,26 +81,19 @@ the next time the window is asked for.
|
|||||||
the layout tracking. No UI, and it must stay that way — whatever lands there lands
|
the layout tracking. No UI, and it must stay that way — whatever lands there lands
|
||||||
in the background process.
|
in the background process.
|
||||||
|
|
||||||
Everything the window has to say to the agent goes through `settings.json` and
|
The connection between the two is `settings.json` and nothing else. The window
|
||||||
nothing else. The window writes it — whole, into a temporary file moved into place in one step — and then
|
writes it — whole, into a temporary file moved into place in one step — and then
|
||||||
posts a registered window message to the agent, which re-reads. The message carries
|
posts a registered window message to the agent, which re-reads. The message carries
|
||||||
no data: sending the changed values along would make the file stop being the only
|
no data: sending the changed values along would make the file stop being the only
|
||||||
source of truth. An agent that is not running is a normal case — the window works the
|
source of truth. An agent that is not running is a normal case — the window works the
|
||||||
same. Nobody watches the file: it has one writer, and that writer speaks up.
|
same. Nobody watches the file: it has one writer, and that writer speaks up.
|
||||||
|
|
||||||
The one word in the other direction is the last one: Exit in the tray menu asks an
|
|
||||||
open settings window to close before the agent goes, so that no window is left
|
|
||||||
belonging to nothing. It travels as a named event of the session rather than a
|
|
||||||
window message — the agent starts that process and deliberately keeps no handle to
|
|
||||||
it. Nobody listening is the usual case, and it is a normal answer.
|
|
||||||
|
|
||||||
## The tray
|
## The tray
|
||||||
|
|
||||||
The settings window is a guest on the screen rather than the app itself: it shows
|
The settings window is a guest on the screen rather than the app itself: it shows
|
||||||
up after the installation and whenever the icon or its menu is asked for. Both
|
up after the installation and whenever the icon or its menu is asked for. Both
|
||||||
buttons in its title bar mean what they say — the window closes and its process
|
buttons in its title bar mean what they say — the window closes and its process
|
||||||
ends. The way out of the app itself is the Exit item of the tray menu — and it
|
ends. The way out of the app itself is the Exit item of the tray menu.
|
||||||
closes an open settings window along with the agent.
|
|
||||||
|
|
||||||
The menu of the icon is a system one, drawn by Windows. Its captions still follow
|
The menu of the icon is a system one, drawn by Windows. Its captions still follow
|
||||||
the language chosen in the settings, but the theme no longer reaches it: a WPF
|
the language chosen in the settings, but the theme no longer reaches it: a WPF
|
||||||
@@ -163,24 +156,6 @@ zero and the settings window shows it greyed out. It stays in place rather than
|
|||||||
leaving the section — a row that comes and goes would move everything below it on
|
leaving the section — a row that comes and goes would move everything below it on
|
||||||
every switch of the place.
|
every switch of the place.
|
||||||
|
|
||||||
Not every application reports where its caret is, and next to the caret is then
|
|
||||||
nowhere. The popup goes to the fixed point instead — the place, the offset and the
|
|
||||||
look all from that mode, none of them from the caret one. The mouse cursor would be
|
|
||||||
the nearer fallback and is the wrong one: it is wherever it was last left, off to a
|
|
||||||
side or on another monitor, while the eyes are on the caret. The fixed point is
|
|
||||||
always in the same place, so it is known where to look — and the look must come with
|
|
||||||
it, since a popup set small and quiet for the middle of a text goes unnoticed in the
|
|
||||||
corner of a monitor.
|
|
||||||
|
|
||||||
Some applications those are is decided by what a window exposes rather than by
|
|
||||||
what it is written in. A Win32 control creates a system caret and is read at once;
|
|
||||||
Chromium and Electron draw their own and report it over the accessibility
|
|
||||||
interfaces. A window that paints its text into a bare canvas has nothing to report
|
|
||||||
at all — and both kinds live in the same application: the editors of a JetBrains
|
|
||||||
IDE answer, since the runtime keeps a caret for them, while a tool window whose
|
|
||||||
interface is painted by Compose holds no text component for UI Automation or the
|
|
||||||
Java Access Bridge to find. That window is where the fixed point earns its keep.
|
|
||||||
|
|
||||||
Which mode the look belongs to is explained in a tooltip next to the mode itself
|
Which mode the look belongs to is explained in a tooltip next to the mode itself
|
||||||
rather than by a line of text in the section: the sliders below show other numbers
|
rather than by a line of text in the section: the sliders below show other numbers
|
||||||
after a switch of the mode, and that is a question asked once.
|
after a switch of the mode, and that is a question asked once.
|
||||||
|
|||||||
Reference in New Issue
Block a user