forked from pauldotknopf/WPFKeyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVirtualKey.cs
133 lines (117 loc) · 4.21 KB
/
VirtualKey.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
using System.Collections.Generic;
using WindowsInput.Native;
using WPFKeyboard.Models;
using WPFKeyboardNative;
namespace WPFKeyboard
{
public class VirtualKey : BaseOnScreenKeyViewModel, IButtonEventListener, IKeyEventListener
{
private readonly VirtualKeyCode _virtualKey;
private readonly List<int> _characters;
private readonly bool _isAffectedByCapsLock;
private readonly string _displayText;
private readonly char characterBase;
private readonly char characterShift;
private readonly char characterAltGraphics;
private readonly char characterControl;
private readonly char characterShiftControl;
private readonly char characterShiftAltGraphics;
public VirtualKey(VirtualKeyCode virtualKey,
string displayText,
List<int> characters,
bool isAffectedByCapsLock)
{
_virtualKey = virtualKey;
_characters = characters;
_isAffectedByCapsLock = isAffectedByCapsLock;
_displayText = displayText;
for (var x = 0; x < characters.Count; x++)
{
var character = default(char);
var value = characters[x];
if (value == Definitions.WCH_DEAD)
{
character = ' ';
}
else if (value == Definitions.WCH_LGTR)
{
character = ' ';
}
else if (value == Definitions.WCH_NONE)
{
character = ' ';
}
else
{
character = (char)value;
}
switch (x)
{
case 0:
characterBase = character;
break;
case 1:
characterShift = character;
break;
case 2:
characterAltGraphics = character;
break;
case 3:
characterControl = character;
break;
case 4:
characterShiftControl = character;
break;
case 5:
characterShiftAltGraphics = character;
break;
}
}
Display = GetDisplayValue(false, false);
}
public void ButtonDown()
{
Keyboard.Simulator.Keyboard.KeyDown(_virtualKey);
}
public void ButtonUp()
{
Keyboard.Simulator.Keyboard.KeyUp(_virtualKey);
}
public void KeyDown(System.Windows.Forms.KeyEventArgs args, bool isShifting, bool isCapsLockOn)
{
if ((int)args.KeyCode == (int)_virtualKey)
{
IsActive = true;
}
Display = GetDisplayValue(isShifting, isCapsLockOn);
}
public void KeyPressed(System.Windows.Forms.KeyPressEventArgs character, bool isShifting, bool isCapsLockOn)
{
}
public void KeyUp(System.Windows.Forms.KeyEventArgs args, bool isShifting, bool isCapsLockOn)
{
if ((int)args.KeyCode == (int)_virtualKey)
{
IsActive = false;
}
Display = GetDisplayValue(isShifting, isCapsLockOn);
}
public VirtualKeyCode Key { get { return _virtualKey; } }
private string GetDisplayValue(bool isShift, bool isCapsLockOn)
{
if (!string.IsNullOrEmpty(_displayText))
return _displayText;
if (_characters == null || _characters.Count == 0)
return ((VirtualKeyCode)_virtualKey).ToString();
if (_isAffectedByCapsLock)
{
if (isCapsLockOn)
{
return new string(isShift ? characterBase : characterShift, 1);
}
return new string(isShift ? characterShift : characterBase, 1);
}
return new string(isShift ? characterShift : characterBase, 1);
}
}
}