Implement more new styling stuff.

This commit is contained in:
Pieter-Jan Briers
2019-10-18 14:28:24 +02:00
parent 0edccd8934
commit 743ede2243
10 changed files with 373 additions and 12 deletions

View File

@@ -0,0 +1,41 @@
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);
}
}
}