-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextBoxWriter.cs
120 lines (109 loc) · 3.06 KB
/
TextBoxWriter.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
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.Globalization;
using System.IO;
using System.Windows.Controls;
using ZChat;
[Serializable, ComVisible(true)]
public class TextBoxWriter : TextWriter
{
// Fields
private bool _isOpen;
private TextBox _tb;
private static UnicodeEncoding m_encoding;
// Methods
public TextBoxWriter(TextBox tb) : this(tb, CultureInfo.CurrentCulture)
{
}
public TextBoxWriter(TextBox tb, IFormatProvider formatProvider) : base(formatProvider)
{
if (tb == null)
{
throw new ArgumentNullException("tb", "Argument cannot be null.");
}
this._tb = tb;
this._isOpen = true;
}
public override void Close()
{
this.Dispose(true);
}
protected override void Dispose(bool disposing)
{
this._isOpen = false;
base.Dispose(disposing);
}
public virtual TextBox GetTextBox()
{
return this._tb;
}
public override string ToString()
{
return this._tb.Text;
}
public override void Write(char value)
{
if (!this._isOpen)
{
throw new ObjectDisposedException("The writer is closed.");
}
_tb.Dispatcher.Invoke(new VoidDelegate(delegate
{
Chat.AppendAndMaybeScrollToBottom(_tb, value.ToString());
}));
}
public override void Write(string value)
{
if (!this._isOpen)
{
throw new ObjectDisposedException("The writer is closed.");
}
if (value != null)
{
_tb.Dispatcher.Invoke(new VoidDelegate(delegate
{
Chat.AppendAndMaybeScrollToBottom(_tb, value);
}));
}
}
public override void Write(char[] buffer, int index, int count)
{
if (!this._isOpen)
{
throw new ObjectDisposedException("The writer is closed.");
}
if (buffer == null)
{
throw new ArgumentNullException("buffer", "Argument cannot be null.");
}
if (index < 0)
{
throw new ArgumentOutOfRangeException("index", "Argument was out of range. Need a non-negative number.");
}
if (count < 0)
{
throw new ArgumentOutOfRangeException("count", "Argument was out of range. Need a non-negative number.");
}
if ((buffer.Length - index) < count)
{
throw new ArgumentException("Invalid offset length.");
}
_tb.Dispatcher.Invoke(new VoidDelegate(delegate
{
Chat.AppendAndMaybeScrollToBottom(_tb, new string(buffer, index, count));
}));
}
// Properties
public override Encoding Encoding
{
get
{
if (m_encoding == null)
{
m_encoding = new UnicodeEncoding(false, false);
}
return m_encoding;
}
}
}