osu/osu.Game.Tests/Visual/Online/TestSceneChatDisplay.cs

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