using System.Numerics;
-using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
-using Robust.Shared.Input;
namespace Content.Client.UserInterface.Controls;
/// </summary>
public sealed class RecordedSplitContainer : SplitContainer
{
- public Action<Vector2, Vector2>? OnSplitResizeFinish;
-
public double? DesiredSplitCenter;
protected override Vector2 ArrangeOverride(Vector2 finalSize)
return base.ArrangeOverride(finalSize);
}
-
- protected override void KeyBindUp(GUIBoundKeyEventArgs args)
- {
- base.KeyBindUp(args);
-
- if (args.Function != EngineKeyFunctions.UIClick)
- {
- return;
- }
-
- if (ChildCount != 2)
- {
- return;
- }
-
- var first = GetChild(0);
- var second = GetChild(1);
-
- OnSplitResizeFinish?.Invoke(first.Size, second.Size);
- }
}
SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5);
SetAnchorAndMarginPreset(Alerts, LayoutPreset.CenterRight, margin: 10);
- ScreenContainer.OnSplitResizeFinish += (first, second) =>
+ ScreenContainer.OnSplitResizeFinished += () =>
OnChatResized?.Invoke(new Vector2(ScreenContainer.SplitFraction, 0));
}