Improved chat box styling. "All" button now works as a toggle for.. all buttons! Also improved persistence of the chat box when switching to/from lobby.
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using Content.Shared.Chat;
|
|
|
|
namespace Content.Client.Chat
|
|
{
|
|
public class StoredChatMessage
|
|
{
|
|
// TODO Make me reflected with respect to MsgChatMessage
|
|
|
|
/// <summary>
|
|
/// Client's own copies of chat messages used in filtering locally
|
|
/// </summary>
|
|
|
|
/// <summary>
|
|
/// Actual Message contents, i.e. words
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
|
|
/// <summary>
|
|
/// Message channel, used for filtering
|
|
/// </summary>
|
|
public ChatChannel Channel { get; set; }
|
|
|
|
/// <summary>
|
|
/// What to "wrap" the message contents with. Example is stuff like 'Joe says: "{0}"'
|
|
/// </summary>
|
|
public string MessageWrap { get; set; }
|
|
|
|
/// <summary>
|
|
/// Constructor to copy a net message into stored client variety
|
|
/// </summary>
|
|
public StoredChatMessage(MsgChatMessage netMsg)
|
|
{
|
|
Message = netMsg.Message;
|
|
Channel = netMsg.Channel;
|
|
MessageWrap = netMsg.MessageWrap;
|
|
}
|
|
}
|
|
}
|