-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathFormattedText.cs
169 lines (143 loc) · 4.38 KB
/
FormattedText.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RoslynScripting
{
[Serializable]
public struct TextSpan
{
public readonly int Start;
public readonly int End;
public readonly int Length;
public TextSpan(int start, int length)
: this(start, length, start+length)
{
}
public static TextSpan FromBounds(int start, int end)
{
var result = new TextSpan(start, end-start, end);
return result;
}
private TextSpan(int start, int length, int end)
{
this.Start = start;
this.Length = length;
this.End = end;
}
}
//[Serializable]
public class TextFormat : MarshalByRefObject
{
public readonly Color TextColor;
public TextFormat(Color TextColor)
{
this.TextColor = TextColor;
}
}
// [Serializable]
public class FormattedTextLinePart : MarshalByRefObject
{
/// <summary>
/// Line number of the text
/// </summary>
public FormattedTextLine Line { get; internal set; }
/// <summary>
/// Position of the text relative to its line
/// </summary>
public readonly TextSpan LineSpan;
/// <summary>
/// The actual text
/// </summary>
public readonly string Text;
/// <summary>
/// Format of the text
/// </summary>
public readonly TextFormat TextFormat;
public FormattedTextLinePart(string Text, TextSpan LineSpan, TextFormat TextFormat)
{
this.Text = Text;
this.LineSpan = LineSpan;
this.TextFormat = TextFormat;
}
public override string ToString()
{
return Text;
}
}
// [Serializable]
public class FormattedTextLine : MarshalByRefObject
{
/// <summary>
/// The text this line is part of
/// </summary>
public FormattedText FormattedText { get; internal set; }
public string Text
{
get
{
return String.Join(String.Empty, Parts.Select(x => x.Text));
}
}
/// <summary>
/// Number of the line
/// </summary>
public readonly int LineNumber;
/// <summary>
/// Formatted parts that make up this line
/// </summary>
public readonly IReadOnlyCollection<FormattedTextLinePart> Parts;
private readonly IList<FormattedTextLinePart> _Parts = new List<FormattedTextLinePart>();
public FormattedTextLine()
{
this.Parts = new ReadOnlyCollection<FormattedTextLinePart>(_Parts);
}
public void AddPart(FormattedTextLinePart Part)
{
Part.Line = this;
_Parts.Add(Part);
}
public FormattedTextLinePart AppendText(string Text, TextFormat Format)
{
var lastPart = Parts.LastOrDefault();
var lastPartLineSpan = lastPart?.LineSpan;
int SpanStart = _Parts.Any() ? ((TextSpan)lastPartLineSpan).End : 0;
int SpanEnd = SpanStart + Text.Length;
var LineSpan = TextSpan.FromBounds(SpanStart, SpanEnd);
var LinePart = new FormattedTextLinePart(Text, LineSpan, Format);
AddPart(LinePart);
return LinePart;
}
public override string ToString()
{
return Text;
}
}
// [Serializable]
public class FormattedText : MarshalByRefObject
{
/// <summary>
/// The lines that make up this text
/// </summary>
public readonly IReadOnlyCollection<FormattedTextLine> TextLines;
private readonly IList<FormattedTextLine> _TextLines = new List<FormattedTextLine>();
public FormattedText()
{
this.TextLines = new ReadOnlyCollection<FormattedTextLine>(_TextLines);
}
public void AddLine(FormattedTextLine Line)
{
Line.FormattedText = this;
this._TextLines.Add(Line);
}
public FormattedTextLine AppendLine()
{
var line = new FormattedTextLine();
AddLine(line);
return line;
}
}
}