1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00
osu-lazer/osu.Game/Overlays/Notifications/SimpleNotification.cs

97 lines
2.6 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.Notifications
{
public class SimpleNotification : Notification
{
private LocalisableString text;
2019-02-28 12:31:40 +08:00
public override LocalisableString Text
2018-04-13 17:19:50 +08:00
{
get => text;
2018-04-13 17:19:50 +08:00
set
{
text = value;
2022-08-30 16:33:08 +08:00
if (textDrawable != null)
textDrawable.Text = text;
2018-04-13 17:19:50 +08:00
}
}
2019-04-02 18:55:24 +08:00
private IconUsage icon = FontAwesome.Solid.InfoCircle;
2019-02-28 12:31:40 +08:00
public IconUsage Icon
2018-04-13 17:19:50 +08:00
{
get => icon;
2018-04-13 17:19:50 +08:00
set
{
icon = value;
2022-08-30 16:33:08 +08:00
if (iconDrawable != null)
iconDrawable.Icon = icon;
2018-04-13 17:19:50 +08:00
}
}
public ColourInfo IconColour
{
get => IconContent.Colour;
set => IconContent.Colour = value;
}
2022-08-30 16:33:08 +08:00
private TextFlowContainer? textDrawable;
2018-04-13 17:19:50 +08:00
2022-08-30 16:33:08 +08:00
private SpriteIcon? iconDrawable;
[BackgroundDependencyLoader]
private void load(OsuColour colours, OverlayColourProvider colourProvider)
2018-04-13 17:19:50 +08:00
{
2022-08-30 16:33:08 +08:00
Light.Colour = colours.Green;
2018-04-13 17:19:50 +08:00
IconContent.AddRange(new Drawable[]
{
new Box
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
2022-08-30 16:33:08 +08:00
Colour = colourProvider.Background5,
2018-04-13 17:19:50 +08:00
},
iconDrawable = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Icon = icon,
2022-08-30 16:33:08 +08:00
Size = new Vector2(16),
2018-04-13 17:19:50 +08:00
}
});
2022-08-30 16:33:08 +08:00
Content.Add(textDrawable = new OsuTextFlowContainer(t => t.Font = t.Font.With(size: 14, weight: FontWeight.Medium))
2018-04-13 17:19:50 +08:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Text = text
});
}
public override bool Read
{
get => base.Read;
2018-04-13 17:19:50 +08:00
set
{
if (value == base.Read) return;
base.Read = value;
Light.FadeTo(value ? 0 : 1, 100);
}
}
}
}