mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.Chat;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Chat.Selection
|
|
{
|
|
public class ChannelSection : Container, IHasFilterableChildren
|
|
{
|
|
public readonly FillFlowContainer<ChannelListItem> ChannelFlow;
|
|
|
|
public IEnumerable<IFilterable> FilterableChildren => ChannelFlow.Children;
|
|
public IEnumerable<string> FilterTerms => Array.Empty<string>();
|
|
|
|
public bool MatchingFilter
|
|
{
|
|
set => this.FadeTo(value ? 1f : 0f, 100);
|
|
}
|
|
|
|
public bool FilteringActive { get; set; }
|
|
|
|
public IEnumerable<Channel> Channels
|
|
{
|
|
set => ChannelFlow.ChildrenEnumerable = value.Select(c => new ChannelListItem(c));
|
|
}
|
|
|
|
public ChannelSection()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Font = OsuFont.GetFont(size: 15, weight: FontWeight.Bold),
|
|
Text = "All Channels".ToUpperInvariant()
|
|
},
|
|
ChannelFlow = new FillFlowContainer<ChannelListItem>
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Margin = new MarginPadding { Top = 25 },
|
|
Spacing = new Vector2(0f, 5f),
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|