1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-20 02:22:55 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/TooltipIconButton.cs

86 lines
2.3 KiB
C#
Raw Normal View History

2018-07-20 01:07:24 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2018-07-20 01:07:24 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-07-20 01:07:24 +08:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input;
using System;
2018-07-20 01:07:24 +08:00
namespace osu.Game.Graphics.UserInterface
{
// not inheriting osuclickablecontainer/osuhovercontainer
// because click/hover sounds cannot be disabled, and they make
// double sounds when reappearing under the cursor
public class TooltipIconButton : ClickableContainer, IHasTooltip
2018-07-20 01:07:24 +08:00
{
private readonly SpriteIcon icon;
private SampleChannel sampleHover;
public Action Action;
private bool isEnabled;
public bool IsEnabled
{
get { return isEnabled; }
set
{
isEnabled = value;
icon.Alpha = value ? 1 : 0.5f;
}
}
2018-07-20 01:07:24 +08:00
public FontAwesome Icon
{
get { return icon.Icon; }
set { icon.Icon = value; }
}
public TooltipIconButton()
{
isEnabled = true;
2018-07-20 01:07:24 +08:00
Children = new Drawable[]
2018-07-20 06:52:50 +08:00
{
new Box
2018-07-20 01:07:24 +08:00
{
2018-07-20 06:52:50 +08:00
RelativeSizeAxes = Axes.Both,
Alpha = 0,
},
icon = new SpriteIcon
{
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
2018-07-21 04:11:51 +08:00
RelativeSizeAxes = Axes.Both,
Size = new Vector2(0.8f),
2018-07-20 06:52:50 +08:00
}
};
2018-07-20 01:07:24 +08:00
}
protected override bool OnClick(InputState state)
{
if (isEnabled)
Action?.Invoke();
return base.OnClick(state);
}
protected override bool OnHover(InputState state)
{
if (isEnabled)
sampleHover?.Play();
return base.OnHover(state);
}
[BackgroundDependencyLoader]
private void load(AudioManager audio)
{
sampleHover = audio.Sample.Get(@"UI/generic-hover-soft");
}
2018-07-20 01:07:24 +08:00
public string TooltipText { get; set; }
}
}