1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 09:42:54 +08:00
osu-lazer/osu.Game/Graphics/Sprites/OsuLinkSpriteText.cs

62 lines
1.6 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 osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using osu.Game.Graphics.Containers;
using System.Collections.Generic;
using System.Diagnostics;
namespace osu.Game.Graphics.Sprites
{
public class OsuLinkSpriteText : OsuSpriteText
{
private readonly OsuClickableContainer content;
public override bool HandleInput => content.Action != null;
protected override Container<Drawable> Content => content ?? (Container<Drawable>)this;
protected override IEnumerable<Drawable> FlowingChildren => Children;
protected override bool OnClick(InputState state)
{
OnLinkClicked();
return true;
}
private string url;
public string Url
{
get
{
return url;
}
set
{
if (!string.IsNullOrEmpty(value))
url = value;
}
}
public OsuLinkSpriteText()
{
AddInternal(content = new OsuClickableContainer
{
AutoSizeAxes = Axes.Both,
});
}
public ColourInfo TextColour
{
get { return Content.Colour; }
set { Content.Colour = value; }
}
protected virtual void OnLinkClicked() => Process.Start(Url);
}
}