mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
36 lines
999 B
C#
36 lines
999 B
C#
using System.Globalization;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Robust.Client.ViewVariables.Editors
|
|
{
|
|
public class ViewVariablesPropertyEditorEntityUid : ViewVariablesPropertyEditor
|
|
{
|
|
protected override Control MakeUI(object? value)
|
|
{
|
|
var hBox = new HBoxContainer
|
|
{
|
|
CustomMinimumSize = new Vector2(200, 0)
|
|
};
|
|
|
|
var uid = (EntityUid)value!;
|
|
var lineEdit = new LineEdit
|
|
{
|
|
Text = uid.ToString(),
|
|
Editable = !ReadOnly,
|
|
SizeFlagsHorizontal = Control.SizeFlags.FillExpand
|
|
};
|
|
if (!ReadOnly)
|
|
{
|
|
lineEdit.OnTextEntered += e =>
|
|
ValueChanged(EntityUid.Parse(e.Text));
|
|
}
|
|
|
|
hBox.AddChild(lineEdit);
|
|
return hBox;
|
|
}
|
|
}
|
|
}
|