2017-02-08 11:41:23 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-14 15:13:25 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2017-02-08 11:41:23 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
|
|
|
{
|
|
|
|
|
public class OsuPasswordTextBox : OsuTextBox
|
|
|
|
|
{
|
2017-02-08 15:01:58 +08:00
|
|
|
|
protected override Drawable GetDrawableCharacter(char c) => new PasswordMaskChar(CalculatedTextSize);
|
|
|
|
|
|
2017-03-03 10:00:39 +08:00
|
|
|
|
public override bool AllowClipboardExport => false;
|
|
|
|
|
|
2017-02-08 15:01:58 +08:00
|
|
|
|
public class PasswordMaskChar : Container
|
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly CircularContainer circle;
|
2017-02-08 15:01:58 +08:00
|
|
|
|
|
|
|
|
|
public PasswordMaskChar(float size)
|
2017-02-08 11:41:23 +08:00
|
|
|
|
{
|
2017-02-08 15:01:58 +08:00
|
|
|
|
Size = new Vector2(size / 2, size);
|
2017-02-08 11:41:23 +08:00
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
2017-02-08 15:01:58 +08:00
|
|
|
|
circle = new CircularContainer
|
2017-02-08 11:41:23 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
2017-03-22 14:27:22 +08:00
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
Masking = true,
|
2017-02-08 15:01:58 +08:00
|
|
|
|
Alpha = 0,
|
2017-02-08 11:41:23 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-02-08 15:01:58 +08:00
|
|
|
|
Size = new Vector2(0.8f, 0),
|
2017-02-08 11:41:23 +08:00
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Colour = Color4.White,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
2017-02-08 15:01:58 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
circle.FadeIn(500, EasingTypes.OutQuint);
|
|
|
|
|
circle.ResizeTo(new Vector2(0.8f), 500, EasingTypes.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-08 11:41:23 +08:00
|
|
|
|
}
|
2017-02-08 15:01:58 +08:00
|
|
|
|
}
|