feat(studio): add mockup desktop controls

This commit is contained in:
Erik 2026-06-26 13:10:34 +02:00
parent 9444a328fa
commit 4cc565badc
3 changed files with 255 additions and 23 deletions

View file

@ -108,6 +108,12 @@ public sealed class UiHost : System.IDisposable
/// <summary>Register a top-level window for Show/Hide/Toggle. See <see cref="UiRoot.RegisterWindow"/>.</summary>
public void RegisterWindow(string name, UiElement window) => Root.RegisterWindow(name, window);
/// <summary>Show a registered window; returns false if the name is unknown.</summary>
public bool ShowWindow(string name) => Root.ShowWindow(name);
/// <summary>Hide a registered window; returns false if the name is unknown.</summary>
public bool HideWindow(string name) => Root.HideWindow(name);
/// <summary>Toggle a registered window's visibility; returns the new IsVisible.</summary>
public bool ToggleWindow(string name) => Root.ToggleWindow(name);

View file

@ -4,5 +4,9 @@ namespace AcDream.App.UI;
/// mount, the window registry, and the toggle keybind all agree on one literal.</summary>
public static class WindowNames
{
public const string Vitals = "vitals";
public const string Toolbar = "toolbar";
public const string Character = "character";
public const string Inventory = "inventory";
public const string Chat = "chat";
}