* #272 restructure and restyle chat line edit section * #272 no arrow, actually change id on channel changer * #272 nice round chat channel picker * #272 add chat channel selection logic, and auto-select when a prefix is entered * #272 consistent width of chat channel btn * #272 only show admin channel filter if asay perms * #272 add tutorial info on chat prefixes * #272 added chat filter button * #272 added chat filter button * #272 WIP on filter popup * #272 fix filter popup pressed / unpressed logic * #272 fix filter popup positioning and layout * #272 WIP channel filter logic * #272 WIP channel filter logic * #272 WIP refactoring how chatbox / manager manages available filters and channels to send on * #272 WIP implementing filtering UI / logic and refactoring how chat UI is managed * #272 fix various bugs with new chat filter / selector logic * #272 remove outdated todos * #272 WIP working chat window resize * #272 bounded chatbox resizing * #272 alertUI moves with resized chat * #272 WIP making alertUI not be too large when changing size / UIScale * #272 WIP fixing window / uiscale adjustment * #272 WIP hacky approach for resizing, will try another approach * #272 implement hacky approach for bounded chat resize * #272 no resizing of lobby chat * #272 WIP adding unread marker to chat filters * #272 basic working unread chat message indicators * #272 WIP adding horizontal channel selector items * #272 horizontal channel selector popup * #272 workaround for chat selector staying highlighted when right clicking it while toggled * #272 workaround for chat selector staying highlighted when right clicking it while toggled * #272 wip trying to add tests for chatbox * #272 remove test, not really possible with current system * #272 merge latest * #272 merge latest * #272 fix csproj changes * It works if you disable the lobby * Fixes lobby chat * Adds more channel focusses * Channel cycler * Address review * Address nitpicks * Address more of the review * Fix chat post-viewport * Finalize review stuff Co-authored-by: chairbender <kwhipke1@gmail.com> Co-authored-by: ike709 <sparebytes@protonmail.com>
95 lines
3.3 KiB
C#
95 lines
3.3 KiB
C#
using Content.Client.Chat;
|
|
using Content.Client.Interfaces.Chat;
|
|
using Content.Client.UserInterface.Stylesheets;
|
|
using Robust.Client.UserInterface;
|
|
using Robust.Client.UserInterface.Controls;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Maths;
|
|
|
|
namespace Content.Client.UserInterface
|
|
{
|
|
/// <summary>
|
|
/// The status effects display on the right side of the screen.
|
|
/// </summary>
|
|
public sealed class AlertsUI : Control
|
|
{
|
|
public const float ChatSeparation = 38f;
|
|
public GridContainer Grid { get; }
|
|
|
|
public AlertsUI()
|
|
{
|
|
LayoutContainer.SetGrowHorizontal(this, LayoutContainer.GrowDirection.Begin);
|
|
LayoutContainer.SetGrowVertical(this, LayoutContainer.GrowDirection.End);
|
|
LayoutContainer.SetAnchorTop(this, 0f);
|
|
LayoutContainer.SetAnchorRight(this, 1f);
|
|
LayoutContainer.SetAnchorBottom(this, 1f);
|
|
LayoutContainer.SetMarginBottom(this, -180);
|
|
LayoutContainer.SetMarginTop(this, 250);
|
|
LayoutContainer.SetMarginRight(this, -10);
|
|
var panelContainer = new PanelContainer
|
|
{
|
|
StyleClasses = {StyleNano.StyleClassTransparentBorderedWindowPanel},
|
|
HorizontalAlignment = HAlignment.Right,
|
|
VerticalAlignment = VAlignment.Top
|
|
};
|
|
AddChild(panelContainer);
|
|
|
|
Grid = new GridContainer
|
|
{
|
|
MaxGridHeight = 64,
|
|
ExpandBackwards = true
|
|
};
|
|
panelContainer.AddChild(Grid);
|
|
|
|
MinSize = (64, 64);
|
|
}
|
|
|
|
protected override void EnteredTree()
|
|
{
|
|
base.EnteredTree();
|
|
var _chatManager = IoCManager.Resolve<IChatManager>();
|
|
_chatManager.OnChatBoxResized += OnChatResized;
|
|
OnChatResized(new ChatResizedEventArgs(ChatBox.InitialChatBottom));
|
|
}
|
|
|
|
protected override void ExitedTree()
|
|
{
|
|
base.ExitedTree();
|
|
var _chatManager = IoCManager.Resolve<IChatManager>();
|
|
_chatManager.OnChatBoxResized -= OnChatResized;
|
|
}
|
|
|
|
|
|
private void OnChatResized(ChatResizedEventArgs chatResizedEventArgs)
|
|
{
|
|
// resize us to fit just below the chatbox
|
|
var _chatManager = IoCManager.Resolve<IChatManager>();
|
|
if (_chatManager.CurrentChatBox != null)
|
|
{
|
|
LayoutContainer.SetMarginTop(this, chatResizedEventArgs.NewBottom + ChatSeparation);
|
|
}
|
|
else
|
|
{
|
|
LayoutContainer.SetMarginTop(this, 250);
|
|
}
|
|
}
|
|
|
|
// This makes no sense but I'm leaving it in place in case I break anything by removing it.
|
|
|
|
protected override void Resized()
|
|
{
|
|
// TODO: Can rework this once https://github.com/space-wizards/RobustToolbox/issues/1392 is done,
|
|
// this is here because there isn't currently a good way to allow the grid to adjust its height based
|
|
// on constraints, otherwise we would use anchors to lay it out
|
|
base.Resized();
|
|
Grid.MaxGridHeight = Height;
|
|
}
|
|
|
|
protected override void UIScaleChanged()
|
|
{
|
|
Grid.MaxGridHeight = Height;
|
|
base.UIScaleChanged();
|
|
}
|
|
}
|
|
}
|