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

76 lines
2.6 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.Sprites;
using OpenTK;
using OpenTK.Graphics;
2016-10-10 08:17:26 +00:00
using osu.Framework;
using osu.Framework.Graphics.Primitives;
2016-11-08 23:13:20 +00:00
using osu.Framework.Allocation;
2016-09-27 11:45:26 +00:00
namespace osu.Game.Online.Chat.Display
{
namespace osu.Online.Social
{
2016-10-22 08:50:42 +00:00
public class ChatLine : Container
2016-09-27 11:45:26 +00:00
{
public readonly Message Message;
const float padding = 200;
const float text_size = 20;
public ChatLine(Message message)
{
this.Message = message;
RelativeSizeAxes = Axes.X;
2016-10-22 08:50:42 +00:00
AutoSizeAxes = Axes.Y;
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.LocalDateTime.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,
}
}
},
2016-10-22 08:50:42 +00:00
new Container
{
RelativeSizeAxes = Axes.X,
2016-10-22 08:50:42 +00:00
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding { Left = padding + 10 },
Children = new Drawable[]
{
new SpriteText
{
Text = Message.Content,
TextSize = text_size,
2016-11-14 17:33:26 +00:00
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
}
}
}
};
2016-09-27 11:45:26 +00:00
}
}
}
}