mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 22:07:40 +08:00
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Input;
|
|
using osu.Game.Graphics.Sprites;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public class OsuTextBox : TextBox
|
|
{
|
|
protected override Color4 BackgroundUnfocused => Color4.Black.Opacity(0.5f);
|
|
protected override Color4 BackgroundFocused => OsuColour.Gray(0.3f).Opacity(0.8f);
|
|
protected override Color4 BackgroundCommit => BorderColour;
|
|
|
|
protected override float LeftRightPadding => 10;
|
|
|
|
protected override SpriteText CreatePlaceholder() => new OsuSpriteText
|
|
{
|
|
Font = @"Exo2.0-MediumItalic",
|
|
Colour = new Color4(180, 180, 180, 255),
|
|
Margin = new MarginPadding { Left = 2 },
|
|
};
|
|
|
|
public OsuTextBox()
|
|
{
|
|
Height = 40;
|
|
TextContainer.Height = 0.5f;
|
|
CornerRadius = 5;
|
|
|
|
Current.DisabledChanged += disabled =>
|
|
{
|
|
Alpha = disabled ? 0.3f : 1;
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colour)
|
|
{
|
|
BorderColour = colour.Yellow;
|
|
}
|
|
|
|
protected override bool OnFocus(InputState state)
|
|
{
|
|
BorderThickness = 3;
|
|
|
|
return base.OnFocus(state);
|
|
}
|
|
|
|
protected override void OnFocusLost(InputState state)
|
|
{
|
|
BorderThickness = 0;
|
|
|
|
base.OnFocusLost(state);
|
|
}
|
|
|
|
protected override Drawable GetDrawableCharacter(char c) => new OsuSpriteText { Text = c.ToString(), TextSize = CalculatedTextSize };
|
|
}
|
|
}
|