1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 08:27:25 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarNotificationButton.cs

92 lines
2.8 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.Configuration;
2017-02-10 15:26:43 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-02-10 15:26:43 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using OpenTK;
using OpenTK.Graphics;
2017-02-10 15:26:43 +08:00
namespace osu.Game.Overlays.Toolbar
{
public class ToolbarNotificationButton : ToolbarOverlayToggleButton
2017-02-10 15:26:43 +08:00
{
protected override Anchor TooltipAnchor => Anchor.TopRight;
public BindableInt NotificationCount = new BindableInt();
private CountCircle countDisplay;
2017-02-10 15:26:43 +08:00
public ToolbarNotificationButton()
{
Icon = FontAwesome.fa_bars;
TooltipMain = "Notifications";
TooltipSub = "Waiting for 'ya";
Add(countDisplay = new CountCircle
{
Alpha = 0,
Height = 16,
RelativePositionAxes = Axes.Both,
Origin = Anchor.TopCentre,
Position = new Vector2(0.7f, 0.05f),
});
2017-02-10 15:26:43 +08:00
}
[BackgroundDependencyLoader(true)]
private void load(NotificationOverlay notificationOverlay)
2017-02-10 15:26:43 +08:00
{
StateContainer = notificationOverlay;
NotificationCount.ValueChanged += count =>
{
if (count == 0)
countDisplay.FadeOut(200, Easing.OutQuint);
else
countDisplay.FadeIn(200, Easing.OutQuint);
countDisplay.Count = count;
};
}
private class CountCircle : CompositeDrawable
{
private readonly OsuSpriteText count;
public int Count
{
set { count.Text = value.ToString("#,0"); }
}
public CountCircle()
{
AutoSizeAxes = Axes.X;
InternalChildren = new Drawable[]
{
new Circle
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Red
},
count = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Y = -1,
TextSize = 14,
Padding = new MarginPadding(5),
Colour = Color4.White,
UseFullGlyphHeight = true,
Font = "Exo2.0-Bold",
}
};
}
2017-02-10 15:26:43 +08:00
}
}
}