2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2023-01-23 14:10:26 +08:00
|
|
|
|
using System;
|
2019-02-15 10:56:33 +08:00
|
|
|
|
using System.Collections.Generic;
|
2022-11-16 21:58:32 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2017-10-21 10:46:06 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2022-11-16 21:58:32 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2019-02-15 10:56:33 +08:00
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
2021-06-26 01:10:04 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-10-11 02:32:56 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-10-21 10:52:21 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings
|
2017-10-21 10:46:06 +08:00
|
|
|
|
{
|
2022-11-16 21:58:32 +08:00
|
|
|
|
public partial class SettingsButton : RoundedButton, IHasTooltip, IConditionalFilterable
|
2017-10-21 10:46:06 +08:00
|
|
|
|
{
|
|
|
|
|
public SettingsButton()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2019-05-14 09:45:05 +08:00
|
|
|
|
Padding = new MarginPadding { Left = SettingsPanel.CONTENT_MARGINS, Right = SettingsPanel.CONTENT_MARGINS };
|
2017-10-21 10:46:06 +08:00
|
|
|
|
}
|
2019-02-15 10:56:33 +08:00
|
|
|
|
|
2021-06-26 01:10:04 +08:00
|
|
|
|
public LocalisableString TooltipText { get; set; }
|
2019-02-15 10:56:33 +08:00
|
|
|
|
|
2023-01-23 14:10:26 +08:00
|
|
|
|
public IEnumerable<string> Keywords { get; set; } = Array.Empty<string>();
|
|
|
|
|
|
2022-11-16 21:58:32 +08:00
|
|
|
|
public BindableBool CanBeShown { get; } = new BindableBool(true);
|
|
|
|
|
IBindable<bool> IConditionalFilterable.CanBeShown => CanBeShown;
|
|
|
|
|
|
2022-05-16 13:09:37 +08:00
|
|
|
|
public override IEnumerable<LocalisableString> FilterTerms
|
2019-02-15 10:56:33 +08:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2021-06-26 01:10:04 +08:00
|
|
|
|
if (TooltipText != default)
|
2023-01-23 14:10:26 +08:00
|
|
|
|
yield return TooltipText;
|
|
|
|
|
|
|
|
|
|
foreach (string s in Keywords)
|
|
|
|
|
yield return s;
|
2019-02-15 10:56:33 +08:00
|
|
|
|
|
2023-01-23 14:10:26 +08:00
|
|
|
|
foreach (LocalisableString s in base.FilterTerms)
|
|
|
|
|
yield return s;
|
2019-02-15 10:56:33 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-21 10:46:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|