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
|
|
|
|
|
2018-09-06 14:56:27 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using System.ComponentModel;
|
2018-09-14 11:06:04 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-09-14 11:06:04 +08:00
|
|
|
|
using osu.Game.Online.Chat;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2018-09-06 14:56:27 +08:00
|
|
|
|
using osu.Game.Overlays.Chat;
|
|
|
|
|
using osu.Game.Overlays.Chat.Tabs;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Online
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[Description("Testing chat api and overlay")]
|
2019-05-15 03:37:25 +08:00
|
|
|
|
public class TestSceneChatDisplay : OsuTestScene
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-06 14:56:27 +08:00
|
|
|
|
public override IReadOnlyList<Type> RequiredTypes => new[]
|
|
|
|
|
{
|
|
|
|
|
typeof(ChatOverlay),
|
|
|
|
|
typeof(ChatLine),
|
|
|
|
|
typeof(DrawableChannel),
|
|
|
|
|
typeof(ChannelSelectorTabItem),
|
|
|
|
|
typeof(ChannelTabControl),
|
|
|
|
|
typeof(ChannelTabItem),
|
|
|
|
|
typeof(PrivateChannelTabItem),
|
|
|
|
|
typeof(TabCloseButton)
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-14 11:06:04 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private readonly ChannelManager channelManager = new ChannelManager();
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-14 11:06:04 +08:00
|
|
|
|
Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-09-14 11:06:04 +08:00
|
|
|
|
channelManager,
|
|
|
|
|
new ChatOverlay { State = Visibility.Visible }
|
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|