-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptions.xaml.cs
237 lines (206 loc) · 9.8 KB
/
Options.xaml.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
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Reflection;
using System.Threading;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using Microsoft.Scripting.Hosting;
using Microsoft.Scripting;
using System.IO;
using System.Text;
using System.Collections.Generic;
using System.Windows.Input;
namespace ZChat
{
/// <summary>
/// Interaction logic for Options.xaml
/// </summary>
public partial class Options : Window, INotifyPropertyChanged
{
public Chat ZChat { get { return _zchat; } set { _zchat = value; FirePropertyChanged("ZChat"); } }
private Chat _zchat;
public Options(Chat parent) : base()
{
InitializeComponent();
Icon = BitmapFrame.Create(Assembly.GetExecutingAssembly().GetManifestResourceStream("ZChat.IRC.ico"));
ZChat = parent;
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
HideAllGrids();
DataContext = this;
generalTreeItem.IsSelected = true;
channelTextBox.Text = ZChat.Options.FirstChannel;
nickNameTextBox.Text = ZChat.Options.InitialNickname;
serverTextBox.Text = ZChat.Options.Server;
serverPortTextBox.Text = ZChat.Options.ServerPort.ToString();
channelKeyTextBox.Text = ZChat.Options.FirstChannelKey;
saveConnectionInfoCheckBox.IsChecked = ZChat.Options.SaveConnectionInfo;
if (ZChat.Options.RestoreType == ClickRestoreType.SingleClick)
{
singleClickRestore.IsChecked = true;
doubleClickRestore.IsChecked = false;
}
else
{
singleClickRestore.IsChecked = false;
doubleClickRestore.IsChecked = true;
}
joinsQuitsHighlight.IsChecked = ZChat.Options.HighlightTrayIconForJoinsAndQuits;
UsersBack.Background = ZChat.Options.UsersBack;
UsersFore.Background = ZChat.Options.UsersFore;
EntryBack.Background = ZChat.Options.EntryBack;
EntryFore.Background = ZChat.Options.EntryFore;
ChatBack.Background = ZChat.Options.ChatBack;
TimeFore.Background = ZChat.Options.TimeFore;
NickFore.Background = ZChat.Options.NickFore;
BracketFore.Background = ZChat.Options.BracketFore;
TextFore.Background = ZChat.Options.TextFore;
QueryTextFore.Background = ZChat.Options.QueryTextFore;
OwnNickFore.Background = ZChat.Options.OwnNickFore;
LinkFore.Background = ZChat.Options.LinkFore;
fontsCombo.ItemsSource = Fonts.SystemFontFamilies;
fontsCombo.SelectedValue = ZChat.Options.Font.Source;
timeFormatBox.Text = ZChat.Options.TimeStampFormat;
windowsForPrivMsgs.IsChecked = ZChat.Options.WindowsForPrivMsgs;
hyperlinkPatternBox.Text = ZChat.Options.HyperlinkPattern;
//foreach (Plugin plugin in ZChat.LoadedScripts)
// foreach (Grid pluginGrid in plugin.GetOptionGrids())
// mainGrid.Children.Add(pluginGrid);
}
private void Cancel_Click(object sender, RoutedEventArgs e)
{
DialogResult = false;
Close();
}
private void SaveOptions()
{
ZChat.Options.FirstChannel = channelTextBox.Text;
ZChat.Options.InitialNickname = nickNameTextBox.Text;
ZChat.Options.Server = serverTextBox.Text;
try { ZChat.Options.ServerPort = int.Parse(serverPortTextBox.Text); }
catch { serverPortTextBox.Text = ZChat.Options.ServerPort.ToString(); }
ZChat.Options.FirstChannelKey = channelKeyTextBox.Text;
ZChat.Options.SaveConnectionInfo = saveConnectionInfoCheckBox.IsChecked.Value;
if (singleClickRestore.IsChecked.Value)
ZChat.Options.RestoreType = ClickRestoreType.SingleClick;
else
ZChat.Options.RestoreType = ClickRestoreType.DoubleClick;
ZChat.Options.HighlightTrayIconForJoinsAndQuits = joinsQuitsHighlight.IsChecked.Value;
ZChat.Options.UsersBack = (SolidColorBrush)UsersBack.Background;
ZChat.Options.UsersFore = (SolidColorBrush)UsersFore.Background;
ZChat.Options.EntryBack = (SolidColorBrush)EntryBack.Background;
ZChat.Options.EntryFore = (SolidColorBrush)EntryFore.Background;
ZChat.Options.ChatBack = (SolidColorBrush)ChatBack.Background;
ZChat.Options.TimeFore = (SolidColorBrush)TimeFore.Background;
ZChat.Options.NickFore = (SolidColorBrush)NickFore.Background;
ZChat.Options.BracketFore = (SolidColorBrush)BracketFore.Background;
ZChat.Options.TextFore = (SolidColorBrush)TextFore.Background;
ZChat.Options.QueryTextFore = (SolidColorBrush)QueryTextFore.Background;
ZChat.Options.OwnNickFore = (SolidColorBrush)OwnNickFore.Background;
ZChat.Options.LinkFore = (SolidColorBrush)LinkFore.Background;
ZChat.Options.Font = (FontFamily)fontsCombo.SelectedItem;
ZChat.Options.TimeStampFormat = timeFormatBox.Text;
ZChat.Options.WindowsForPrivMsgs = windowsForPrivMsgs.IsChecked.Value;
ZChat.Options.HyperlinkPattern = hyperlinkPatternBox.Text;
}
private void OK_Click(object sender, RoutedEventArgs e)
{
SaveOptions();
DialogResult = true;
Close();
}
private void Color_Click(object sender, RoutedEventArgs e)
{
Button b = sender as Button;
System.Windows.Forms.ColorDialog colorPicker = new System.Windows.Forms.ColorDialog();
colorPicker.Color = System.Drawing.Color.FromArgb(((SolidColorBrush)b.Background).Color.R, ((SolidColorBrush)b.Background).Color.G, ((SolidColorBrush)b.Background).Color.B);
colorPicker.FullOpen = true;
colorPicker.ShowDialog();
b.Background = new SolidColorBrush(Color.FromRgb(colorPicker.Color.R, colorPicker.Color.G, colorPicker.Color.B));
}
private void TimeFormatHelp_Click(object sender, RoutedEventArgs e)
{
new Thread(new ThreadStart(delegate
{
try
{
ProcessStartInfo psi = new ProcessStartInfo("http://msdn.microsoft.com/en-us/library/8kb3ddd4(VS.71).aspx");
psi.UseShellExecute = true;
System.Diagnostics.Process.Start(psi);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
})).Start();
}
private void Window_KeyUp(object sender, System.Windows.Input.KeyEventArgs e)
{
if (e.Key == System.Windows.Input.Key.Enter)
{
OK_Click(this, e);
}
else if (e.Key == System.Windows.Input.Key.Escape)
{
Cancel_Click(this, e);
}
}
private void HideAllGrids()
{
appearanceGrid.Visibility = Visibility.Hidden;
highlightingGrid.Visibility = Visibility.Hidden;
windowsGrid.Visibility = Visibility.Hidden;
miscGrid.Visibility = Visibility.Hidden;
generalGrid.Visibility = Visibility.Hidden;
colorsGrid.Visibility = Visibility.Hidden;
systemTrayGrid.Visibility = Visibility.Hidden;
scriptGrid.Visibility = Visibility.Hidden;
}
private void TreeView_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
{
HideAllGrids();
if (e.NewValue == appearanceTreeItem)
appearanceGrid.Visibility = Visibility.Visible;
if (e.NewValue == highlightingTreeItem)
highlightingGrid.Visibility = Visibility.Visible;
if (e.NewValue == windowsTreeItem)
windowsGrid.Visibility = Visibility.Visible;
if (e.NewValue == miscTreeItem)
miscGrid.Visibility = Visibility.Visible;
if (e.NewValue == generalTreeItem)
generalGrid.Visibility = Visibility.Visible;
if (e.NewValue == colorsTreeItem)
colorsGrid.Visibility = Visibility.Visible;
if (e.NewValue == systemTrayTreeItem)
systemTrayGrid.Visibility = Visibility.Visible;
if (e.NewValue == scriptTreeItem)
scriptGrid.Visibility = Visibility.Visible;
}
private void LoadScript_Click(object sender, RoutedEventArgs e)
{
System.Windows.Forms.OpenFileDialog ofd = new System.Windows.Forms.OpenFileDialog();
if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
string path = ofd.FileName;
Application.Current.Dispatcher.BeginInvoke(new VoidDelegate(delegate
{
ZChat.CreatePlugin(path);
}));
}
}
public event PropertyChangedEventHandler PropertyChanged;
public void FirePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
private void scriptDir_Click(object sender, RoutedEventArgs e)
{
Process.Start("explorer", Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory) + "\\scripts");
}
}
}