-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathWindowButtonMapping.xaml.cs
More file actions
374 lines (322 loc) · 11.9 KB
/
Copy pathWindowButtonMapping.xaml.cs
File metadata and controls
374 lines (322 loc) · 11.9 KB
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using Microsoft.Win32;
namespace TabletDriverGUI
{
/// <summary>
/// Interaction logic for ButtonMapping.xaml
/// </summary>
public partial class WindowButtonMapping : Window
{
// WPF Button
Button button;
public string Result;
public class ButtonBinding
{
public string Key;
public string Name;
public bool Visible;
public ButtonBinding(string name) : this("", name)
{
}
public ButtonBinding(string key, string name)
{
Key = key;
Name = name;
Visible = true;
}
public override string ToString()
{
return Name;
}
}
public OrderedDictionary mouseBindings;
public OrderedDictionary multimediaBindings;
public string applicationCommand = "RUN ";
public WindowButtonMapping()
{
WindowStartupLocation = WindowStartupLocation.CenterOwner;
Owner = Application.Current.MainWindow;
InitializeComponent();
Result = "";
mouseBindings = new OrderedDictionary()
{
{ "", new ButtonBinding("None") },
{ "MOUSE1", new ButtonBinding("Mouse 1 (Left / Tip)") },
{ "MOUSE2", new ButtonBinding("Mouse 2 (Right / Barrel)") },
{ "MOUSE3", new ButtonBinding("Mouse 3 (Middle / Eraser)") },
{ "MOUSE4", new ButtonBinding("Mouse 4 (Back)") },
{ "MOUSE5", new ButtonBinding("Mouse 5 (Forward)") },
{ "MOUSESCROLLV", new ButtonBinding("Scroll Up/Down") },
{ "MOUSESCROLLH", new ButtonBinding("Scroll Left/Right") },
{ "MOUSESCROLLB", new ButtonBinding("Scroll Both") },
{ "SCROLLUP", new ButtonBinding("Scroll One Up") },
{ "SCROLLDOWN", new ButtonBinding("Scroll One Down") },
{ "SCROLLLEFT", new ButtonBinding("Scroll One Left") },
{ "SCROLLRIGHT", new ButtonBinding("Scroll One Right") },
};
multimediaBindings = new OrderedDictionary()
{
{ "", new ButtonBinding("None") },
{ "VOLUMEUP", new ButtonBinding("Volume Up") },
{ "VOLUMEUP0.5", new ButtonBinding("Volume Up 0.5%") },
{ "VOLUMEUP5.0", new ButtonBinding("Volume Up 5.0%") },
{ "VOLUMEDOWN", new ButtonBinding("Volume Down") },
{ "VOLUMEDOWN0.5", new ButtonBinding("Volume Down 0.5%") },
{ "VOLUMEDOWN5.0", new ButtonBinding("Volume Down 5.0%") },
{ "VOLUMEMUTE", new ButtonBinding("Volume Mute") },
{ "VOLUMECONTROL", new ButtonBinding("Volume Control Up/Down") },
{ "BALANCECONTROL", new ButtonBinding("Balance Control Left/Right") },
{ "MEDIANEXT", new ButtonBinding("Media Next Track") },
{ "MEDIAPREV", new ButtonBinding("Media Previous Track") },
{ "MEDIASTOP", new ButtonBinding("Media Stop") },
{ "MEDIAPLAY", new ButtonBinding("Media Play/Pause") },
};
UpdateBindings();
}
public WindowButtonMapping(Button button, bool isPenButton) : this()
{
this.button = button;
// Tablet buttons don't need tip, barrel and eraser info
if (!isPenButton)
{
((ButtonBinding)mouseBindings["MOUSE1"]).Name = "Mouse 1 (Left)";
((ButtonBinding)mouseBindings["MOUSE2"]).Name = "Mouse 2 (Right)";
((ButtonBinding)mouseBindings["MOUSE3"]).Name = "Mouse 3 (Middle)";
}
UpdateBindings();
CheckKeyValue();
}
//
// Update bindings and comboboxes
//
private void UpdateBindings()
{
// Mouse
comboBoxMouse.Items.Clear();
foreach (DictionaryEntry entry in mouseBindings)
{
ButtonBinding binding = (ButtonBinding)entry.Value;
binding.Key = (string)entry.Key;
if (binding.Visible)
{
comboBoxMouse.Items.Add(binding);
}
}
// Multimedia
comboBoxMultimedia.Items.Clear();
foreach (DictionaryEntry entry in multimediaBindings)
{
ButtonBinding binding = (ButtonBinding)entry.Value;
binding.Key = (string)entry.Key;
if (binding.Visible)
{
comboBoxMultimedia.Items.Add(binding);
}
}
}
//
// Check key value
//
public void CheckKeyValue()
{
string keys = button.Content.ToString().ToUpper().Trim();
comboBoxMouse.SelectedIndex = 0;
comboBoxMultimedia.SelectedIndex = 0;
// Mouse
if (mouseBindings.Contains(keys))
{
foreach (var item in comboBoxMouse.Items)
{
ButtonBinding binding = (ButtonBinding)item;
if (binding.Key == keys)
{
comboBoxMouse.SelectedItem = item;
comboBoxMouse.Focus();
}
}
}
// Multimedia
else if (multimediaBindings.Contains(keys))
{
comboBoxMultimedia.SelectedIndex = 0;
foreach (ButtonBinding item in comboBoxMultimedia.Items)
{
//ButtonBinding binding = (ButtonBinding)item;
if (item.Key == keys)
{
comboBoxMultimedia.SelectedItem = item;
comboBoxMultimedia.Focus();
}
}
}
// Launch application
else if (keys.StartsWith(applicationCommand))
{
textApplication.Text = keys.Remove(0, applicationCommand.Length);
}
// Keyboard
else
{
textKeyboard.Focus();
textKeyboard.Text = keys;
}
textCustom.Text = keys;
}
//
// Mouse button changed
//
private void ComboBoxMouse_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!IsLoaded) return;
if (comboBoxMouse.SelectedIndex >= 0 && comboBoxMouse.SelectedItem != null)
{
ButtonBinding binding = (ButtonBinding)comboBoxMouse.SelectedItem;
if (comboBoxMouse.SelectedIndex > 0)
comboBoxMultimedia.SelectedIndex = 0;
textKeyboard.Text = "";
textApplication.Text = "";
textCustom.Text = binding.Key;
}
}
//
// Multimedia key changed
//
private void ComboBoxMultimedia_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if (!IsLoaded) return;
if (comboBoxMultimedia.SelectedIndex >= 0 && comboBoxMultimedia.SelectedItem is ButtonBinding)
{
ButtonBinding binding = (ButtonBinding)comboBoxMultimedia.SelectedItem;
if (comboBoxMultimedia.SelectedIndex > 0)
comboBoxMouse.SelectedIndex = 0;
textKeyboard.Text = "";
textApplication.Text = "";
textCustom.Text = binding.Key;
}
}
//
// Keyboard mapping key down
//
private void TextKeyboard_PreviewKeyDown(object sender, KeyEventArgs e)
{
System.Windows.Forms.KeysConverter keysConverter = new System.Windows.Forms.KeysConverter();
CultureInfo cultureInfo = new CultureInfo("en-US");
int keyCode;
List<string> keys = new List<string>();
HashSet<string> keyAdded = new HashSet<string>();
foreach (Key value in Enum.GetValues(typeof(Key)))
{
Key key = (Key)value;
if (key > Key.None && Keyboard.IsKeyDown(key))
{
keyCode = KeyInterop.VirtualKeyFromKey(key);
string keyName = keysConverter.ConvertToString(null, cultureInfo, keyCode).ToUpper();
switch (key)
{
case Key.LeftAlt: keyName = "LALT"; break;
case Key.RightAlt: keyName = "RALT"; break;
case Key.LeftCtrl: keyName = "LCTRL"; break;
case Key.RightCtrl: keyName = "RCTRL"; break;
case Key.LeftShift: keyName = "LSHIFT"; break;
case Key.RightShift: keyName = "RSHIFT"; break;
default: break;
}
if (!keyAdded.Contains(keyName))
{
keys.Add(keyName);
keyAdded.Add(keyName);
}
}
}
keys.Sort(
(a, b) =>
{
int value = 0;
if (a.Contains("CTRL")) value--;
if (a.Contains("ALT")) value--;
if (a.Contains("SHIFT")) value--;
if (b.Contains("CTRL")) value++;
if (b.Contains("ALT")) value++;
if (b.Contains("SHIFT")) value++;
return value;
}
);
// Set textboxes
string keyText = string.Join("+", keys.ToArray());
textKeyboard.Text = keyText;
textApplication.Text = "";
textCustom.Text = keyText;
comboBoxMouse.SelectedIndex = 0;
if (e != null)
e.Handled = true;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
}
//
// Browse...
//
private void ButtonBrowse_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
if (openFileDialog.ShowDialog() == true)
{
string fileName = openFileDialog.FileName;
if (comboBoxMultimedia.SelectedIndex > 0)
comboBoxMouse.SelectedIndex = 0;
textKeyboard.Text = "";
textApplication.Text = fileName;
textCustom.Text = $"{applicationCommand}{fileName}";
}
}
//
// Set
//
private void ButtonSet_Click(object sender, RoutedEventArgs e)
{
if (button != null)
{
Result = textCustom.Text;
DialogResult = true;
Close();
}
}
//
// Clear
//
private void ButtonClear_Click(object sender, RoutedEventArgs e)
{
if (button != null)
{
Result = "";
DialogResult = true;
Close();
}
}
//
// Cancel
//
private void ButtonCancel_Click(object sender, RoutedEventArgs e)
{
DialogResult = false;
Close();
}
//
// Mouse combobox or custom keys enter press -> set
//
private void OnEnterKeyUp(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
ButtonSet_Click(sender, null);
}
}
}
}