-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatWindow.cs
446 lines (394 loc) · 17.2 KB
/
ChatWindow.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
namespace ZChat
{
/// <summary>
/// A Window with chat output displayed in a FlowDocument, input shown and accepted through a TextBox,
/// and a list of chatters whose names can be tab-completed.
/// The input box also allows scrolling of input history with the up+down keys.
/// </summary>
public class ChatWindow : ActivityWindow
{
public delegate void InputDelegate(ChatWindow sender, string input);
public event InputDelegate UserInput;
public FlowDocument Document;
public FlowDocumentScrollViewer DocumentScrollViewer;
protected Regex HyperlinkRegex;
public static int OUTPUT_MAX_LINES = 1000;
protected int OutputCount = 0;
public TextBox InputBox
{
get { return _inputBox; }
set
{
_inputBox = value;
_inputBox.KeyDown += InputBox_KeyDown;
_inputBox.KeyUp += InputBox_KeyUp;
}
}
private TextBox _inputBox;
protected List<string> Users = new List<string>();
/// <summary>
/// Finds the nick in the user list, ignoring status symbols such as @
/// </summary>
/// <param name="nick"></param>
/// <returns></returns>
protected bool UsersContains(string nick)
{
foreach (string user in Users)
{
string noSymbol = user;
if (user.StartsWith("@") || user.StartsWith("+") || user.StartsWith("%"))
noSymbol = user.Substring(1);
if (noSymbol == nick)
return true;
}
return false;
}
public ChatWindow() { }
public ChatWindow(Chat zchat) : base(zchat)
{
ZChat.Options.PropertyChanged += ZChat_PropertyChanged;
HyperlinkRegex = new Regex(ZChat.Options.HyperlinkPattern, RegexOptions.Compiled);
EntryHistory.Add("");
Loaded += ChatWindow_Loaded;
Activated += ChatWindow_Activated;
Closed += new EventHandler(ChatWindow_Closed);
}
void ChatWindow_Closed(object sender, EventArgs e)
{
ZChat.Options.PropertyChanged -= ZChat_PropertyChanged;
}
void ZChat_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == "EntryBack")
InputBox.Background = ZChat.Options.EntryBack;
if (e.PropertyName == "EntryFore")
InputBox.Foreground = ZChat.Options.EntryFore;
if (e.PropertyName == "ChatBack")
Document.Background = ZChat.Options.ChatBack;
if (e.PropertyName == "HyperlinkPattern")
HyperlinkRegex = new Regex(ZChat.Options.HyperlinkPattern, RegexOptions.Compiled);
if (e.PropertyName == "Font")
{
InputBox.FontFamily = ZChat.Options.Font;
Document.FontFamily = ZChat.Options.Font;
}
}
void ChatWindow_Activated(object sender, EventArgs e)
{
InputBox.Focus();
}
private void ChatWindow_Loaded(object sender, RoutedEventArgs e)
{
InputBox.Background = ZChat.Options.EntryBack;
InputBox.Foreground = ZChat.Options.EntryFore;
Document.Background = ZChat.Options.ChatBack;
InputBox.FontFamily = ZChat.Options.Font;
Document.FontFamily = ZChat.Options.Font;
InputBox.Focus();
}
public int NextHistoricalEntry;
public List<string> EntryHistory = new List<string>();
private List<string> NickCompletionList;
private int CurrentNickCompletion;
private void FindMatchingNicks(string nickPart)
{
NickCompletionList = new List<string>();
foreach (string nick in Users)
{
string actualNick;
if (nick.StartsWith("@") || nick.StartsWith("+") || nick.StartsWith("%"))
actualNick = nick.Substring(1);
else
actualNick = nick;
if (actualNick.StartsWith(nickPart, StringComparison.CurrentCultureIgnoreCase))
NickCompletionList.Add(actualNick);
}
}
private void InputBox_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Tab && (e.KeyboardDevice.IsKeyDown(Key.LeftCtrl) || e.KeyboardDevice.IsKeyDown(Key.RightCtrl)))
{
MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
}
if (e.Key == Key.Tab)
{
int lastSpace = InputBox.Text.LastIndexOf(" ");
if (lastSpace != -1 && InputBox.Text[lastSpace - 1] == ':' && lastSpace == InputBox.Text.Length - 1)
{
lastSpace = InputBox.Text.Substring(0, lastSpace).LastIndexOf(" ");
}
if (NickCompletionList == null)
{
string nickPart;
nickPart = InputBox.Text.Substring(lastSpace + 1);
if (string.IsNullOrEmpty(nickPart))
{
e.Handled = true;
return;
}
FindMatchingNicks(nickPart);
CurrentNickCompletion = 0;
}
if (NickCompletionList.Count > 0)
{
if (Keyboard.IsKeyDown(Key.LeftShift) || Keyboard.IsKeyDown(Key.RightShift))
{
CurrentNickCompletion--;
if (CurrentNickCompletion == -1)
CurrentNickCompletion = NickCompletionList.Count - 1;
if (CurrentNickCompletion == 0)
InputBox.Text = InputBox.Text.Substring(0, lastSpace + 1) + NickCompletionList[NickCompletionList.Count - 1];
else
InputBox.Text = InputBox.Text.Substring(0, lastSpace + 1) + NickCompletionList[CurrentNickCompletion - 1];
}
else
{
InputBox.Text = InputBox.Text.Substring(0, lastSpace + 1) + NickCompletionList[CurrentNickCompletion];
CurrentNickCompletion++;
if (CurrentNickCompletion >= NickCompletionList.Count)
CurrentNickCompletion = 0;
}
if (lastSpace == -1)
InputBox.Text += ": ";
}
InputBox.CaretIndex = InputBox.Text.Length;
e.Handled = true;
}
}
private void InputBox_KeyUp(object sender, KeyEventArgs e)
{
if (e.Key != Key.Tab && e.Key != Key.LeftShift && e.Key != Key.RightShift)
NickCompletionList = null;
if (e.Key == Key.Enter)
{
if (UserInput != null)
UserInput(this, InputBox.Text);
if (!string.IsNullOrEmpty(InputBox.Text))
{
NextHistoricalEntry = 1;
if (EntryHistory.Count == 100)
{
EntryHistory.RemoveAt(EntryHistory.Count - 1);
}
EntryHistory.Insert(1, InputBox.Text);
}
InputBox.Clear();
}
else if (e.Key == Key.Up)
{
InputBox.Text = EntryHistory[NextHistoricalEntry];
InputBox.CaretIndex = InputBox.Text.Length;
NextHistoricalEntry++;
if (NextHistoricalEntry == EntryHistory.Count)
NextHistoricalEntry = 0;
}
else if (e.Key == Key.Down)
{
NextHistoricalEntry--;
if (NextHistoricalEntry == -1)
NextHistoricalEntry = EntryHistory.Count - 1;
if (NextHistoricalEntry == 0)
InputBox.Text = EntryHistory[EntryHistory.Count - 1];
else
InputBox.Text = EntryHistory[NextHistoricalEntry - 1];
}
}
public void Output(string output)
{
Output(new ColorTextPair[] { new ColorTextPair(Brushes.Black, "") }, new ColorTextPair[] { new ColorTextPair(Brushes.Black, output) });
}
public void Output(IEnumerable<ColorTextPair> sourcePairs, IEnumerable<ColorTextPair> textPairs)
{
if (Document == null || DocumentScrollViewer == null) return;
OutputCount++;
if (OutputCount > OUTPUT_MAX_LINES)
Document.Blocks.Remove(Document.Blocks.FirstBlock);
string timeStamp;
timeStamp = DateTime.Now.ToString(ZChat.Options.TimeStampFormat);
TimeSourceTextGroup group = new TimeSourceTextGroup(timeStamp, sourcePairs, textPairs);
Dispatcher.BeginInvoke(new VoidDelegate(delegate
{
AddOutput(group);
if (VisualTreeHelper.GetChildrenCount(DocumentScrollViewer) > 0)
{
DependencyObject DO = VisualTreeHelper.GetChild(DocumentScrollViewer, 0);
while (!(DO is ScrollViewer))
DO = VisualTreeHelper.GetChild(DO, 0);
ScrollViewer sv = DO as ScrollViewer;
if (sv.VerticalOffset == sv.ScrollableHeight)
sv.ScrollToBottom();
}
}));
}
protected Thickness paragraphPadding = new Thickness(2.0, 0.0, 0.0, 0.0);
public void AddOutput(TimeSourceTextGroup group)
{
Paragraph p = new Paragraph();
p.Padding = paragraphPadding;
p.TextAlignment = TextAlignment.Left;
Span timeSourceSpan = new Span();
Run timeRun = new Run(group.Time);
timeRun.Foreground = ZChat.Options.TimeFore;
p.Inlines.Add(timeRun);
List<ColorTextPair> allPairs = new List<ColorTextPair>();
allPairs.AddRange(group.Source);
allPairs.Add(new ColorTextPair(ZChat.Options.TextFore, " "));
allPairs.AddRange(group.Text);
AddInlines(p.Inlines, allPairs, true);
double indent = new FormattedText(timeRun.Text + PairsToPlainText(group.Source) + "W",
System.Globalization.CultureInfo.CurrentCulture, FlowDirection.LeftToRight,
new Typeface(Document.FontFamily, Document.FontStyle, Document.FontWeight, Document.FontStretch),
12.0, Brushes.Black).Width;
p.Margin = new Thickness(indent, 0.0, 0.0, 0.0);
p.TextIndent = indent * -1;
Document.Blocks.Add(p);
}
public void AddInlines(InlineCollection inlineCollection, IEnumerable<ColorTextPair> pairs, bool allowHyperlinks)
{
Run run;
foreach (ColorTextPair pair in pairs)
{
bool hasHyperlinks = false;
if (allowHyperlinks)
{
if (!string.IsNullOrEmpty(pair.Text))
{
MatchCollection matches = new Regex(ZChat.Options.HyperlinkPattern).Matches(pair.Text);
if (matches.Count > 0)
{
hasHyperlinks = true;
string linkText;
int linkStart = 0, linkLength = 0;
int curPos = 0;
foreach (Match match in matches)
{
if (match.Value.StartsWith(" "))
{
linkStart = match.Index + 1;
linkLength = match.Length - 1;
}
else
{
linkStart = match.Index;
linkLength = match.Length;
}
linkText = pair.Text.Substring(linkStart, linkLength);
Hyperlink link = new Hyperlink(new Run(linkText));
link.Foreground = ZChat.Options.LinkFore;
link.SetValue(KeyboardNavigation.IsTabStopProperty, false);
//if (link.FontStyle) link.TextDecorations.Add(TextDecorations.Underline);
link.Click += new RoutedEventHandler(link_Click);
link.Tag = linkText;
run = new Run(pair.Text.Substring(curPos, linkStart - curPos));
run.Foreground = pair.Color;
if (linkStart > 0) inlineCollection.Add(run);
curPos = linkStart + linkLength;
inlineCollection.Add(link);
}
if (curPos < pair.Text.Length)
{
run = new Run(pair.Text.Substring(curPos, pair.Text.Length - curPos));
run.Foreground = pair.Color;
inlineCollection.Add(run);
}
}
}
}
if (hasHyperlinks == false)
{
AddNonHyperlinkText(inlineCollection, pair.Text, pair.Color);
//run = new Run(pair.Text);
//run.Foreground = pair.Color;
//inlineCollection.Add(run);
}
}
}
private void AddBoldOrRun(InlineCollection inlines, string text, SolidColorBrush brush, bool bold)
{
Run r = new Run(text);
r.Foreground = brush;
if (bold)
inlines.Add(new Bold(r));
else
inlines.Add(r);
}
private void AddNonHyperlinkText(InlineCollection inlines, string text, SolidColorBrush brush)
{
int mostRecentBoldCharPos = 0;
bool boldOn = false;
for (int curPos = 0; curPos < text.Length; curPos++)
{
if (text[curPos] == (char)2)
{
AddBoldOrRun(inlines, text.Substring(mostRecentBoldCharPos, curPos - mostRecentBoldCharPos), brush, boldOn);
mostRecentBoldCharPos = curPos + 1;
boldOn = !boldOn;
}
}
AddBoldOrRun(inlines, text.Substring(mostRecentBoldCharPos, text.Length - mostRecentBoldCharPos), brush, boldOn);
}
public string PairsToPlainText(IEnumerable<ColorTextPair> colorTextPairs)
{
StringBuilder sb = new StringBuilder();
foreach (ColorTextPair ctp in colorTextPairs)
{
sb.Append(ctp.Text);
}
return sb.ToString();
}
void link_Click(object sender, RoutedEventArgs e)
{
new Thread(new ParameterizedThreadStart(delegate(object link)
{
try
{
ProcessStartInfo psi = new ProcessStartInfo(link.ToString());
psi.UseShellExecute = true;
System.Diagnostics.Process.Start(psi);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
})).Start(((sender as Hyperlink).Tag as string).Trim());
}
public void Clear()
{
Document.Blocks.Clear();
}
}
public struct TimeSourceTextGroup
{
public string Time;
public IEnumerable<ColorTextPair> Source;
public IEnumerable<ColorTextPair> Text;
public TimeSourceTextGroup(string time, IEnumerable<ColorTextPair> source, IEnumerable<ColorTextPair> text)
{
Time = time;
Source = source;
Text = text;
}
}
public struct ColorTextPair
{
public SolidColorBrush Color;
public string Text;
public ColorTextPair(SolidColorBrush color, string text)
{
Color = color;
Text = text;
}
}
}