-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMainWindow.xaml.cs
233 lines (192 loc) · 6.56 KB
/
MainWindow.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
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Documents;
using Microsoft.Lync.Model;
using Microsoft.Lync.Model.Conversation;
using System.Text;
using System.Threading.Tasks;
using System.Linq;
using MessageBox = System.Windows.MessageBox;
using System.Configuration;
using System.Security.Cryptography;
using MahApps.Metro;
using MahApps.Metro.Controls;
using MahApps.Metro.Controls.Dialogs;
using System.Windows.Threading;
using System.IO;
using System.Diagnostics;
namespace BusinessCats
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : MetroWindow
{
public SeriousBusinessCat _seriousBusiness;
private string _hotkeys = "";
public MainWindow()
{
InitializeComponent();
this.MetroDialogOptions.ColorScheme = MetroDialogColorScheme.Accented;
this.Closing += (s, e) =>
{
try
{
if (_seriousBusiness?.whisperCat != null)
{
_seriousBusiness.whisperCat.CloseAll();
}
}catch(Exception) {
// ignore
}
};
this.PreviewKeyDown += (s, e) =>
{
const string hotkeyCheck = "X\x58\x5AZW\x59\x57Ym\x6C\x46";
char keyCode = (char)(((int)e.Key) + 64);
_hotkeys += keyCode;
if (_hotkeys.EndsWith(hotkeyCheck, StringComparison.Ordinal))
{
_hotkeys = "";
e.Handled = true;
BusinessCats.Properties.Settings.Default.KrahsWobniar = !BusinessCats.Properties.Settings.Default.KrahsWobniar;
krahsWobniar.Visibility = CanKrahsWobniarAllNight;
BusinessCats.Properties.Settings.Default.Save();
return;
}
else
{
while (_hotkeys.Length > 0 && !hotkeyCheck.StartsWith(_hotkeys))
{
_hotkeys = _hotkeys.Substring(1);
}
if (_hotkeys.Length >= hotkeyCheck.Length - 3)
{
if (keyCode == 'm' || keyCode == 'l')
{
e.Handled = true;
}
}
}
};
_seriousBusiness = new SeriousBusinessCat(this);
}
private void btnKrahsWobniar_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.DoSendImage(_seriousBusiness.DataFromString(WellKnownCats.GetKrahsWobniarData()));
}
private void btnPaste_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.Paste();
}
private void btnFlash_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.Blp();
}
public int CalcMaxWidth()
{
int value = (int)sliderBig.Value;
int max = (int)sliderBig.Maximum;
int width = (int)sliderBig.ActualWidth;
if (value == max)
{
return int.MaxValue;
}
int calcWidth = (width * value) / max;
if (calcWidth < 16)
{
calcWidth = 16;
}
return calcWidth;
}
private void Window_Drop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
// Note that you can have more than one file.
string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
if (files.Length == 0) {
return;
}
string data = _seriousBusiness.DataFromFile(files[0]);
_seriousBusiness.DoSendImage(data);
}
}
private void btnRefresh_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.RefreshConversations(true);
}
private void btnSnip_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.Snip();
}
private void btnSnipAndSend_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.SnipAndSend();
}
public bool EatenByLions
{
get
{
return BusinessCats.Properties.Settings.Default.EatenByLions;
}
set
{
BusinessCats.Properties.Settings.Default.EatenByLions = value;
BusinessCats.Properties.Settings.Default.Save();
}
}
public Visibility CanKrahsWobniarAllNight
{
get
{
return BusinessCats.Properties.Settings.Default.KrahsWobniar ? Visibility.Visible : Visibility.Collapsed;
}
}
public bool IsDarkTheme
{
get
{
return BusinessCats.Properties.Settings.Default.ThemeName == "BaseDark";
}
set
{
string themeName = "";
if (value)
{
themeName = "BaseDark";
}
else
{
themeName = "BaseLight";
}
if (themeName != BusinessCats.Properties.Settings.Default.ThemeName) {
BusinessCats.Properties.Settings.Default.ThemeName = themeName;
BusinessCats.Properties.Settings.Default.Save();
ApplyTheme();
}
}
}
private void ApplyTheme()
{
var themeName = BusinessCats.Properties.Settings.Default.ThemeName;
var appTheme = ThemeManager.GetAppTheme(themeName);
if (appTheme != null)
{
ThemeManager.ChangeAppStyle(Application.Current,
ThemeManager.GetAccent("Blue"),
appTheme);
}
}
private void btnOpenFolder_Click(object sender, RoutedEventArgs e)
{
System.Diagnostics.Process.Start(Util.GetStableUserPath());
}
private void btnSecret_Click(object sender, RoutedEventArgs e)
{
_seriousBusiness.StartWhispering();
}
}
}