mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:27:51 +08:00
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Framework.Input.Events;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Components
|
|
{
|
|
public abstract class DisableableTabControl<T> : TabControl<T>
|
|
{
|
|
public readonly BindableBool Enabled = new BindableBool(true);
|
|
|
|
protected override void AddTabItem(TabItem<T> tab, bool addToDropdown = true)
|
|
{
|
|
if (tab is DisableableTabItem disableable)
|
|
disableable.Enabled.BindTo(Enabled);
|
|
base.AddTabItem(tab, addToDropdown);
|
|
}
|
|
|
|
protected abstract class DisableableTabItem : TabItem<T>
|
|
{
|
|
protected DisableableTabItem(T value)
|
|
: base(value)
|
|
{
|
|
}
|
|
|
|
protected override bool OnClick(ClickEvent e)
|
|
{
|
|
if (!Enabled.Value)
|
|
return true;
|
|
|
|
return base.OnClick(e);
|
|
}
|
|
}
|
|
}
|
|
}
|