mirror of
https://github.com/ppy/osu.git
synced 2024-11-09 01:57:24 +08:00
51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
|
// 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.
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using osu.Framework.Extensions.Color4Extensions;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
using osu.Framework.Graphics.Containers;
|
|||
|
using osu.Framework.Graphics.Shapes;
|
|||
|
using osu.Game.Graphics.Containers;
|
|||
|
using osuTK.Graphics;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.Profile.Header
|
|||
|
{
|
|||
|
public class ProfileHeaderButton : OsuHoverContainer
|
|||
|
{
|
|||
|
private readonly Box background;
|
|||
|
private readonly Container content;
|
|||
|
|
|||
|
protected override Container<Drawable> Content => content;
|
|||
|
|
|||
|
protected override IEnumerable<Drawable> EffectTargets => new[] { background };
|
|||
|
|
|||
|
public ProfileHeaderButton()
|
|||
|
{
|
|||
|
HoverColour = Color4.Black.Opacity(0.75f);
|
|||
|
IdleColour = Color4.Black.Opacity(0.7f);
|
|||
|
AutoSizeAxes = Axes.X;
|
|||
|
|
|||
|
base.Content.Add(new CircularContainer
|
|||
|
{
|
|||
|
Masking = true,
|
|||
|
AutoSizeAxes = Axes.X,
|
|||
|
RelativeSizeAxes = Axes.Y,
|
|||
|
Children = new Drawable[]
|
|||
|
{
|
|||
|
background = new Box
|
|||
|
{
|
|||
|
RelativeSizeAxes = Axes.Both,
|
|||
|
},
|
|||
|
content = new Container
|
|||
|
{
|
|||
|
AutoSizeAxes = Axes.X,
|
|||
|
RelativeSizeAxes = Axes.Y,
|
|||
|
Padding = new MarginPadding { Horizontal = 10 },
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|