mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 23:02:56 +08:00
49 lines
1.2 KiB
C#
49 lines
1.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.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet.Scores
|
|
{
|
|
public abstract class ClickableUserContainer : Container
|
|
{
|
|
private UserProfileOverlay profile;
|
|
|
|
private User user;
|
|
public User User
|
|
{
|
|
get { return user; }
|
|
set
|
|
{
|
|
if (user == value) return;
|
|
user = value;
|
|
|
|
OnUserChange(user);
|
|
}
|
|
}
|
|
|
|
protected ClickableUserContainer()
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
}
|
|
|
|
protected abstract void OnUserChange(User user);
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(UserProfileOverlay profile)
|
|
{
|
|
this.profile = profile;
|
|
}
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
{
|
|
profile?.ShowUser(user);
|
|
return true;
|
|
}
|
|
}
|
|
}
|