Files
tbd-station-14/Content.Client/UserInterface/NanoHeading.cs
2019-10-18 14:28:24 +02:00

42 lines
969 B
C#

using Robust.Client.UserInterface.Controls;
using Robust.Shared.Maths;
namespace Content.Client.UserInterface
{
public class NanoHeading : Container
{
private readonly Label _label;
private readonly PanelContainer _panel;
public NanoHeading()
{
_panel = new PanelContainer
{
Children = {(_label = new Label
{
StyleClasses = {NanoStyle.StyleClassLabelHeading}
})}
};
AddChild(_panel);
SizeFlagsHorizontal = SizeFlags.None;
}
public string Text
{
get => _label.Text;
set => _label.Text = value;
}
protected override Vector2 CalculateMinimumSize()
{
return _panel.CombinedMinimumSize;
}
protected override void SortChildren()
{
FitChildInBox(_panel, SizeBox);
}
}
}