mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 06:02:56 +08:00
64 lines
1.9 KiB
C#
64 lines
1.9 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Online.Chat;
|
|
|
|
namespace osu.Game.Overlays.Chat
|
|
{
|
|
public class ChatTabControl : Container, IHasCurrentValue<Channel>
|
|
{
|
|
public readonly ChannelTabControl ChannelTabControl;
|
|
|
|
public Bindable<Channel> Current { get; } = new Bindable<Channel>();
|
|
public Action<Channel> OnRequestLeave;
|
|
|
|
public ChatTabControl()
|
|
{
|
|
Masking = false;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
ChannelTabControl = new ChannelTabControl
|
|
{
|
|
Anchor = Anchor.BottomLeft,
|
|
Origin = Anchor.BottomLeft,
|
|
RelativeSizeAxes = Axes.Both,
|
|
OnRequestLeave = channel => OnRequestLeave?.Invoke(channel)
|
|
},
|
|
};
|
|
|
|
Current.ValueChanged += currentTabChanged;
|
|
ChannelTabControl.Current.ValueChanged += channel =>
|
|
{
|
|
if (channel != null)
|
|
Current.Value = channel;
|
|
};
|
|
}
|
|
|
|
private void currentTabChanged(Channel channel)
|
|
{
|
|
ChannelTabControl.Current.Value = channel;
|
|
}
|
|
|
|
public void AddItem(Channel channel)
|
|
{
|
|
ChannelTabControl.AddItem(channel);
|
|
if (Current.Value == null)
|
|
Current.Value = channel;
|
|
}
|
|
|
|
public void RemoveItem(Channel channel)
|
|
{
|
|
ChannelTabControl.RemoveItem(channel);
|
|
if (Current.Value == channel)
|
|
Current.Value = ChannelTabControl.Items.FirstOrDefault();
|
|
}
|
|
}
|
|
}
|