1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:07:21 +08:00
osu-lazer/osu.Game/Overlays/Notifications/SimpleNotification.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 18:19:50 +09:00
2017-02-10 16:26:43 +09:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
2017-02-10 16:26:43 +09:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2018-11-20 16:51:59 +09:00
using osuTK;
2018-04-13 18:19:50 +09:00
2017-02-10 16:26:43 +09:00
namespace osu.Game.Overlays.Notifications
{
public partial class SimpleNotification : Notification
{
private LocalisableString text;
2019-02-28 13:31:40 +09:00
public override LocalisableString Text
{
get => text;
set
{
text = value;
2022-08-30 17:33:08 +09:00
if (textDrawable != null)
textDrawable.Text = text;
}
}
2018-04-13 18:19:50 +09:00
2019-04-02 19:55:24 +09:00
private IconUsage icon = FontAwesome.Solid.InfoCircle;
2019-02-28 13:31:40 +09:00
public IconUsage Icon
2017-02-10 16:26:43 +09:00
{
get => icon;
set
{
icon = value;
2022-08-30 17:33:08 +09:00
if (iconDrawable != null)
iconDrawable.Icon = icon;
}
2017-02-10 16:26:43 +09:00
}
2018-04-13 18:19:50 +09:00
public ColourInfo IconColour
{
get => IconContent.Colour;
set => IconContent.Colour = value;
}
2022-08-30 17:33:08 +09:00
private TextFlowContainer? textDrawable;
2018-04-13 18:19:50 +09:00
2022-08-30 17:33:08 +09:00
private SpriteIcon? iconDrawable;
[BackgroundDependencyLoader]
private void load(OsuColour colours, OverlayColourProvider colourProvider)
2017-02-10 16:26:43 +09:00
{
2022-08-30 17:33:08 +09:00
Light.Colour = colours.Green;
2017-07-11 16:58:06 +03:00
IconContent.AddRange(new Drawable[]
2017-02-10 16:26:43 +09:00
{
new Box
2017-02-10 16:26:43 +09:00
{
RelativeSizeAxes = Axes.Both,
2022-08-30 17:33:08 +09:00
Colour = colourProvider.Background5,
2017-02-10 16:26:43 +09:00
},
iconDrawable = new SpriteIcon
2017-02-10 16:26:43 +09:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2017-02-21 13:52:30 +09:00
Icon = icon,
2022-08-30 17:33:08 +09:00
Size = new Vector2(16),
2017-02-10 16:26:43 +09:00
}
});
2018-04-13 18:19:50 +09:00
2022-08-30 17:33:08 +09:00
Content.Add(textDrawable = new OsuTextFlowContainer(t => t.Font = t.Font.With(size: 14, weight: FontWeight.Medium))
2017-02-10 16:26:43 +09:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Text = text
});
2017-02-12 19:39:54 +09:00
}
2018-04-13 18:19:50 +09:00
2017-02-10 16:26:43 +09:00
public override bool Read
{
get => base.Read;
2017-02-10 16:26:43 +09:00
set
{
2017-12-26 15:48:01 +09:00
if (value == base.Read) return;
2018-04-13 18:19:50 +09:00
base.Read = value;
2017-12-26 15:48:01 +09:00
Light.FadeTo(value ? 0 : 1, 100);
2017-02-10 16:26:43 +09:00
}
}
}
}