1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08:00
osu-lazer/osu.Game/Overlays/Comments/CommentsHeader.cs

129 lines
4.5 KiB
C#
Raw Normal View History

2019-10-10 17:06:25 +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.Allocation;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Framework.Graphics.Sprites;
using osuTK;
using osu.Framework.Input.Events;
namespace osu.Game.Overlays.Comments
{
public class CommentsHeader : CompositeDrawable
{
2019-10-14 20:32:16 +08:00
private const int font_size = 14;
2019-10-10 17:06:25 +08:00
public readonly Bindable<CommentsSortCriteria> Sort = new Bindable<CommentsSortCriteria>();
2019-10-10 17:06:25 +08:00
public readonly BindableBool ShowDeleted = new BindableBool();
private readonly Box background;
public CommentsHeader()
{
RelativeSizeAxes = Axes.X;
2019-10-14 20:32:16 +08:00
Height = 40;
2019-10-10 17:06:25 +08:00
AddRangeInternal(new Drawable[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both,
},
new Container
{
RelativeSizeAxes = Axes.Both,
2019-10-14 20:32:16 +08:00
Padding = new MarginPadding { Horizontal = 50 },
2019-10-10 17:06:25 +08:00
Children = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
2019-10-14 20:32:16 +08:00
Spacing = new Vector2(10, 0),
2019-10-10 17:06:25 +08:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Children = new Drawable[]
{
new SpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2019-10-14 20:32:16 +08:00
Font = OsuFont.GetFont(size: font_size),
2019-10-10 17:06:25 +08:00
Text = @"Sort by"
},
2019-10-14 20:32:41 +08:00
new SortTabControl
2019-10-10 17:06:25 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Current = Sort
}
}
},
new ShowDeletedButton
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Checked = { BindTarget = ShowDeleted }
}
}
}
});
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.Gray3;
}
private class ShowDeletedButton : HeaderButton
{
public readonly BindableBool Checked = new BindableBool();
private readonly SpriteIcon checkboxIcon;
public ShowDeletedButton()
{
Add(new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
2019-10-10 18:24:22 +08:00
Spacing = new Vector2(5, 0),
2019-10-10 17:06:25 +08:00
Children = new Drawable[]
{
checkboxIcon = new SpriteIcon
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Size = new Vector2(10),
},
new SpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2019-10-14 20:32:16 +08:00
Font = OsuFont.GetFont(size: font_size),
2019-10-10 17:06:25 +08:00
Text = @"Show deleted"
}
},
});
}
protected override void LoadComplete()
{
2019-10-14 20:49:02 +08:00
Checked.BindValueChanged(isChecked => checkboxIcon.Icon = isChecked.NewValue ? FontAwesome.Solid.CheckSquare : FontAwesome.Regular.Square, true);
2019-10-10 17:06:25 +08:00
base.LoadComplete();
}
protected override bool OnClick(ClickEvent e)
{
Checked.Value = !Checked.Value;
return true;
2019-10-10 17:06:25 +08:00
}
}
}
}