osu/osu.Game/Online/Chat/Display/ChatLine.cs

76 lines
2.5 KiB
C#
Raw Normal View History

2016-09-27 11:45:26 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Configuration;
2016-09-27 11:45:26 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Drawables;
using osu.Framework.Graphics.Sprites;
using OpenTK;
using OpenTK.Graphics;
namespace osu.Game.Online.Chat.Display
{
namespace osu.Online.Social
{
public class ChatLine : AutoSizeContainer
{
public readonly Message Message;
public ChatLine(Message message)
2016-09-27 11:45:26 +00:00
{
this.Message = message;
}
const float padding = 200;
const float text_size = 20;
public override void Load()
{
base.Load();
RelativeSizeAxes = Axes.X;
2016-09-27 11:45:26 +00:00
Children = new Drawable[]
2016-09-27 11:45:26 +00:00
{
new Container
{
Size = new Vector2(padding, text_size),
Children = new Drawable[]
{
new SpriteText
{
Text = Message.Timestamp.ToLocalTime().ToLongTimeString(),
TextSize = text_size,
Colour = new Color4(128, 128, 128, 255)
},
new SpriteText
{
Text = Message.User.Name,
TextSize = text_size,
Origin = Anchor.TopRight,
Anchor = Anchor.TopRight,
}
}
},
new PaddingContainer
{
RelativeSizeAxes = Axes.X,
Padding = new Padding { Left = padding + 10 },
Children = new Drawable[]
{
new SpriteText
{
Text = Message.Content,
TextSize = text_size,
RelativeSizeAxes = Axes.X,
}
}
}
};
2016-09-27 11:45:26 +00:00
}
}
}
}