2021-07-12 14:11:07 +08:00
|
|
|
// 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 osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
|
2021-07-13 15:02:18 +08:00
|
|
|
namespace osu.Game.Screens.OnlinePlay.Lounge.Components
|
2021-07-12 14:11:07 +08:00
|
|
|
{
|
|
|
|
/// <summary>
|
2021-07-12 14:18:38 +08:00
|
|
|
/// Displays contents in a "pill".
|
2021-07-12 14:11:07 +08:00
|
|
|
/// </summary>
|
2021-07-12 14:18:38 +08:00
|
|
|
public class PillContainer : Container
|
2021-07-12 14:11:07 +08:00
|
|
|
{
|
|
|
|
private const float padding = 8;
|
|
|
|
|
2021-07-14 15:48:53 +08:00
|
|
|
public readonly Drawable Background;
|
2021-07-12 14:11:07 +08:00
|
|
|
|
2021-08-06 16:03:44 +08:00
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
private readonly Container content;
|
2021-07-12 14:18:38 +08:00
|
|
|
|
|
|
|
public PillContainer()
|
2021-07-12 14:11:07 +08:00
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.X;
|
|
|
|
Height = 16;
|
|
|
|
|
|
|
|
InternalChild = new CircularContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
Masking = true,
|
|
|
|
Children = new[]
|
|
|
|
{
|
|
|
|
Background = new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = Color4.Black,
|
|
|
|
Alpha = 0.5f
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Padding = new MarginPadding { Horizontal = padding },
|
|
|
|
Child = new GridContainer
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
ColumnDimensions = new[]
|
|
|
|
{
|
|
|
|
new Dimension(GridSizeMode.AutoSize, minSize: 80 - 2 * padding)
|
|
|
|
},
|
|
|
|
Content = new[]
|
|
|
|
{
|
2021-08-06 16:03:44 +08:00
|
|
|
new[]
|
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Padding = new MarginPadding { Bottom = 2 },
|
|
|
|
Child = content = new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-12 14:11:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|