mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 18:20:34 +08:00
30 lines
825 B
C#
30 lines
825 B
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.
|
|
|
|
#nullable enable
|
|
|
|
using System;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Beatmaps.Drawables.Cards
|
|
{
|
|
public class HoverHandlingContainer : Container
|
|
{
|
|
public Func<HoverEvent, bool>? Hovered { get; set; }
|
|
public Action<HoverLostEvent>? Unhovered { get; set; }
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
{
|
|
bool handledByBase = base.OnHover(e);
|
|
return Hovered?.Invoke(e) ?? handledByBase;
|
|
}
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
{
|
|
base.OnHoverLost(e);
|
|
Unhovered?.Invoke(e);
|
|
}
|
|
}
|
|
}
|