1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 00:07:24 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/DisableableTabControl.cs

38 lines
1.1 KiB
C#
Raw Normal View History

// 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-12-05 16:01:14 +08:00
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-12-05 16:01:14 +08:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
namespace osu.Game.Screens.OnlinePlay.Components
2018-12-05 16:01:14 +08:00
{
public abstract class DisableableTabControl<T> : TabControl<T>
{
2018-12-22 14:00:35 +08:00
public readonly BindableBool Enabled = new BindableBool();
2018-12-10 15:50:00 +08:00
protected override void AddTabItem(TabItem<T> tab, bool addToDropdown = true)
2018-12-05 16:01:14 +08:00
{
2019-04-25 16:36:17 +08:00
if (tab is DisableableTabItem disableable)
2018-12-22 14:00:35 +08:00
disableable.Enabled.BindTo(Enabled);
2018-12-10 15:50:00 +08:00
base.AddTabItem(tab, addToDropdown);
2018-12-05 16:01:14 +08:00
}
2019-04-25 16:36:17 +08:00
protected abstract class DisableableTabItem : TabItem<T>
2018-12-05 16:01:14 +08:00
{
protected DisableableTabItem(T value)
: base(value)
{
}
protected override bool OnClick(ClickEvent e)
{
2019-02-21 17:56:34 +08:00
if (!Enabled.Value)
2018-12-05 16:01:14 +08:00
return true;
2019-02-28 12:31:40 +08:00
2018-12-05 16:01:14 +08:00
return base.OnClick(e);
}
}
}
}