1
0
Fork 0
mirror of https://github.com/ppy/osu-tools.git synced 2025-06-10 10:00:45 +09:00
osu-tools/PerformanceCalculatorGUI/Components/Notification.cs
2022-04-23 03:01:28 +03:00

46 lines
1.3 KiB
C#

using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK.Graphics;
namespace PerformanceCalculatorGUI.Components
{
internal class Notification : Container
{
public Notification(LocalisableString text)
{
Anchor = Anchor.BottomCentre;
Origin = Anchor.BottomCentre;
AutoSizeAxes = Axes.Y;
RelativeSizeAxes = Axes.X;
Alpha = 0;
Masking = true;
CornerRadius = 10;
InternalChildren = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.DarkSlateGray,
Alpha = 0.95f
},
new OsuSpriteText
{
Padding = new MarginPadding(10),
Name = "Description",
AllowMultiline = true,
RelativeSizeAxes = Axes.X,
Font = OsuFont.GetFont(size: 16, weight: FontWeight.Bold),
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = text
}
};
}
}
}