mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 04:47:38 +08:00
67 lines
2.2 KiB
C#
67 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 System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Online.Multiplayer;
|
|
|
|
namespace osu.Game.Screens.Multi
|
|
{
|
|
public class DrawableRoomPlaylistWithResults : DrawableRoomPlaylist
|
|
{
|
|
public Action<PlaylistItem> RequestShowResults;
|
|
|
|
public DrawableRoomPlaylistWithResults()
|
|
: base(false, true)
|
|
{
|
|
}
|
|
|
|
protected override OsuRearrangeableListItem<PlaylistItem> CreateOsuDrawable(PlaylistItem item) =>
|
|
new DrawableRoomPlaylistItemWithResults(item, false, true)
|
|
{
|
|
RequestShowResults = () => RequestShowResults(item),
|
|
SelectedItem = { BindTarget = SelectedItem },
|
|
};
|
|
|
|
private class DrawableRoomPlaylistItemWithResults : DrawableRoomPlaylistItem
|
|
{
|
|
public Action RequestShowResults;
|
|
|
|
public DrawableRoomPlaylistItemWithResults(PlaylistItem item, bool allowEdit, bool allowSelection)
|
|
: base(item, allowEdit, allowSelection)
|
|
{
|
|
}
|
|
|
|
protected override IEnumerable<Drawable> CreateButtons() =>
|
|
base.CreateButtons().Prepend(new FilledIconButton
|
|
{
|
|
Icon = FontAwesome.Solid.ChartPie,
|
|
Action = () => RequestShowResults?.Invoke(),
|
|
TooltipText = "View results"
|
|
});
|
|
|
|
private class FilledIconButton : IconButton
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Add(new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Depth = float.MaxValue,
|
|
Colour = colours.Gray4,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|