mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 10:17:32 +08:00
60 lines
2.0 KiB
C#
60 lines
2.0 KiB
C#
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|||
|
|
|||
|
using OpenTK;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
using osu.Framework.Graphics.Containers;
|
|||
|
using osu.Game.Graphics;
|
|||
|
using osu.Game.Graphics.Sprites;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.OnlineBeatmapSet
|
|||
|
{
|
|||
|
public class DownloadButton : HeaderButton
|
|||
|
{
|
|||
|
public DownloadButton(string title, string subtitle)
|
|||
|
{
|
|||
|
Width = 120;
|
|||
|
RelativeSizeAxes = Axes.Y;
|
|||
|
|
|||
|
Child = new Container
|
|||
|
{
|
|||
|
RelativeSizeAxes = Axes.Both,
|
|||
|
Padding = new MarginPadding { Horizontal = 10 },
|
|||
|
Children = new Drawable[]
|
|||
|
{
|
|||
|
new FillFlowContainer
|
|||
|
{
|
|||
|
Anchor = Anchor.CentreLeft,
|
|||
|
Origin = Anchor.CentreLeft,
|
|||
|
AutoSizeAxes = Axes.Both,
|
|||
|
Direction = FillDirection.Vertical,
|
|||
|
Children = new[]
|
|||
|
{
|
|||
|
new OsuSpriteText
|
|||
|
{
|
|||
|
Text = title,
|
|||
|
TextSize = 13,
|
|||
|
Font = @"Exo2.0-Bold",
|
|||
|
},
|
|||
|
new OsuSpriteText
|
|||
|
{
|
|||
|
Text = subtitle,
|
|||
|
TextSize = 11,
|
|||
|
Font = @"Exo2.0-Bold",
|
|||
|
},
|
|||
|
},
|
|||
|
},
|
|||
|
new SpriteIcon
|
|||
|
{
|
|||
|
Anchor = Anchor.CentreRight,
|
|||
|
Origin = Anchor.CentreRight,
|
|||
|
Icon = FontAwesome.fa_download,
|
|||
|
Size = new Vector2(16),
|
|||
|
Margin = new MarginPadding { Right = 5 },
|
|||
|
},
|
|||
|
},
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|