mirror of
https://github.com/ppy/osu
synced 2024-12-15 03:16:17 +00:00
106 lines
3.4 KiB
C#
106 lines
3.4 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input;
|
|
using osu.Framework.Threading;
|
|
using osu.Game.Graphics.Sprites;
|
|
using System.Linq;
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
{
|
|
public class Tooltip : Container
|
|
{
|
|
private readonly Box tooltipBackground;
|
|
private readonly OsuSpriteText text;
|
|
|
|
private ScheduledDelegate show;
|
|
private UserInputManager input;
|
|
private IHasOverhangingTooltip overhang;
|
|
|
|
public string TooltipText {
|
|
get
|
|
{
|
|
return text.Text;
|
|
}
|
|
set
|
|
{
|
|
text.Text = value;
|
|
if (string.IsNullOrEmpty(value))
|
|
Hide();
|
|
else
|
|
Show();
|
|
}
|
|
}
|
|
|
|
public Tooltip()
|
|
{
|
|
Children = new[]
|
|
{
|
|
new Container
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
CornerRadius = 5,
|
|
Masking = true,
|
|
AlwaysPresent = true,
|
|
EdgeEffect = new EdgeEffect
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Colour = Color4.Black.Opacity(40),
|
|
Radius = 5,
|
|
},
|
|
Children = new Drawable[]
|
|
{
|
|
tooltipBackground = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both
|
|
},
|
|
text = new OsuSpriteText
|
|
{
|
|
Padding = new MarginPadding(3),
|
|
Font = @"Exo2.0-Regular",
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colour, UserInputManager input)
|
|
{
|
|
this.input = input;
|
|
tooltipBackground.Colour = colour.Gray3;
|
|
}
|
|
|
|
public void UpdateTooltip(InputState state)
|
|
{
|
|
Scheduler.Update();
|
|
if (overhang?.Overhanging ?? false)
|
|
TooltipText = overhang.Tooltip;
|
|
else if (state.Mouse.Position != state.Mouse.LastPosition)
|
|
{
|
|
show?.Cancel();
|
|
TooltipText = string.Empty;
|
|
IHasTooltip hasTooltip = input.HoveredDrawables.OfType<IHasTooltip>().FirstOrDefault();
|
|
if (hasTooltip != null)
|
|
{
|
|
IHasDelayedTooltip delayedTooltip = hasTooltip as IHasDelayedTooltip;
|
|
overhang = hasTooltip as IHasOverhangingTooltip;
|
|
show = Scheduler.AddDelayed(() => TooltipText = hasTooltip.Tooltip, delayedTooltip?.Delay ?? 250);
|
|
}
|
|
}
|
|
else if (overhang != null)
|
|
{
|
|
overhang = null;
|
|
TooltipText = string.Empty;
|
|
}
|
|
}
|
|
}
|
|
}
|