mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
74 lines
2.2 KiB
C#
74 lines
2.2 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 osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osuTK;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osuTK.Graphics;
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
namespace osu.Game.Graphics.UserInterface
|
|
{
|
|
public abstract class GradientLineTabControl<TModel> : PageTabControl<TModel>
|
|
{
|
|
protected Color4 LineColour
|
|
{
|
|
get => line.Colour;
|
|
set => line.Colour = value;
|
|
}
|
|
|
|
private readonly GradientLine line;
|
|
|
|
protected GradientLineTabControl()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AddInternal(line = new GradientLine
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
});
|
|
}
|
|
|
|
protected override Dropdown<TModel> CreateDropdown() => null;
|
|
|
|
protected override TabFillFlowContainer CreateTabFlow() => new TabFillFlowContainer
|
|
{
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
AutoSizeAxes = Axes.X,
|
|
RelativeSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(20, 0),
|
|
};
|
|
|
|
private class GradientLine : GridContainer
|
|
{
|
|
public GradientLine()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
Size = new Vector2(0.8f, 1f);
|
|
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientHorizontal(Color4.Transparent, Colour)
|
|
},
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = ColourInfo.GradientHorizontal(Colour, Color4.Transparent)
|
|
},
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|