Changes for SplitContainer Engine PR (#20383)
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using Robust.Client.UserInterface;
|
|
||||||
using Robust.Client.UserInterface.Controls;
|
using Robust.Client.UserInterface.Controls;
|
||||||
using Robust.Shared.Input;
|
|
||||||
|
|
||||||
namespace Content.Client.UserInterface.Controls;
|
namespace Content.Client.UserInterface.Controls;
|
||||||
|
|
||||||
@@ -10,8 +8,6 @@ namespace Content.Client.UserInterface.Controls;
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed class RecordedSplitContainer : SplitContainer
|
public sealed class RecordedSplitContainer : SplitContainer
|
||||||
{
|
{
|
||||||
public Action<Vector2, Vector2>? OnSplitResizeFinish;
|
|
||||||
|
|
||||||
public double? DesiredSplitCenter;
|
public double? DesiredSplitCenter;
|
||||||
|
|
||||||
protected override Vector2 ArrangeOverride(Vector2 finalSize)
|
protected override Vector2 ArrangeOverride(Vector2 finalSize)
|
||||||
@@ -30,24 +26,4 @@ public sealed class RecordedSplitContainer : SplitContainer
|
|||||||
|
|
||||||
return base.ArrangeOverride(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);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ public sealed partial class SeparatedChatGameScreen : InGameScreen
|
|||||||
SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5);
|
SetAnchorAndMarginPreset(Hotbar, LayoutPreset.BottomWide, margin: 5);
|
||||||
SetAnchorAndMarginPreset(Alerts, LayoutPreset.CenterRight, margin: 10);
|
SetAnchorAndMarginPreset(Alerts, LayoutPreset.CenterRight, margin: 10);
|
||||||
|
|
||||||
ScreenContainer.OnSplitResizeFinish += (first, second) =>
|
ScreenContainer.OnSplitResizeFinished += () =>
|
||||||
OnChatResized?.Invoke(new Vector2(ScreenContainer.SplitFraction, 0));
|
OnChatResized?.Invoke(new Vector2(ScreenContainer.SplitFraction, 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user