1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 10:07:28 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/RoundedButton.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
C#
Raw Normal View History

2021-10-11 02:21:41 +08:00
// 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.
2021-10-11 02:32:56 +08:00
using System.Collections.Generic;
2021-10-11 02:21:41 +08:00
using osu.Framework.Graphics;
2021-10-11 02:32:56 +08:00
using osu.Framework.Graphics.Containers;
2021-10-11 02:21:41 +08:00
using osu.Game.Graphics.UserInterface;
namespace osu.Game.Graphics.UserInterfaceV2
{
2021-10-11 02:32:56 +08:00
public class RoundedButton : OsuButton, IFilterable
2021-10-11 02:21:41 +08:00
{
public override float Height
{
get => base.Height;
set
{
base.Height = value;
if (IsLoaded)
updateCornerRadius();
}
}
protected override void LoadComplete()
{
base.LoadComplete();
updateCornerRadius();
}
private void updateCornerRadius() => Content.CornerRadius = DrawHeight / 2;
2021-10-11 02:32:56 +08:00
public virtual IEnumerable<string> FilterTerms => new[] { Text.ToString() };
public bool MatchingFilter
{
set => this.FadeTo(value ? 1 : 0);
}
public bool FilteringActive { get; set; }
2021-10-11 02:21:41 +08:00
}
}