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

90 lines
2.4 KiB
C#
Raw Normal View History

2017-02-10 15:26:43 +08:00
// 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.Colour;
using osu.Framework.Graphics.Sprites;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2017-02-10 15:26:43 +08:00
namespace osu.Game.Overlays.Notifications
{
public class SimpleNotification : Notification
{
private string text;
public string Text
{
get { return text; }
set
{
text = value;
2017-02-12 18:39:54 +08:00
textDrawable.Text = text;
}
}
2017-02-10 15:26:43 +08:00
private FontAwesome icon = FontAwesome.fa_info_circle;
public FontAwesome Icon
2017-02-10 15:26:43 +08:00
{
get { return icon; }
set
{
icon = value;
2017-02-12 18:39:54 +08:00
iconDrawable.Icon = icon;
}
2017-02-10 15:26:43 +08:00
}
private SpriteText textDrawable;
private TextAwesome iconDrawable;
2017-02-21 12:52:30 +08:00
protected Box IconBackgound;
2017-02-12 18:39:54 +08:00
public SimpleNotification()
2017-02-10 15:26:43 +08:00
{
IconContent.Add(new Drawable[]
{
2017-02-21 12:52:30 +08:00
IconBackgound = new Box
2017-02-10 15:26:43 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-02-21 12:52:30 +08:00
ColourInfo = ColourInfo.GradientVertical(OsuColour.Gray(0.2f), OsuColour.Gray(0.6f))
2017-02-10 15:26:43 +08:00
},
iconDrawable = new TextAwesome
2017-02-10 15:26:43 +08:00
{
Anchor = Anchor.Centre,
2017-02-21 12:52:30 +08:00
Icon = icon,
2017-02-10 15:26:43 +08:00
}
});
Content.Add(textDrawable = new OsuSpriteText
2017-02-10 15:26:43 +08:00
{
TextSize = 16,
Colour = OsuColour.Gray(128),
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Text = text
});
2017-02-12 18:39:54 +08:00
}
2017-02-10 15:26:43 +08:00
2017-02-12 18:39:54 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
2017-02-10 15:26:43 +08:00
Light.Colour = colours.Green;
}
public override bool Read
{
get
{
return base.Read;
}
set
{
if (base.Read = value)
Light.FadeOut(100);
else
Light.FadeIn(100);
}
}
}
}