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