blob: 3fcc8fd12193d773068ef18683d21c9b28dedfca (
plain)
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
|
namespace Tango.AutoComplete.Editors
{
using System.Diagnostics;
using System.Windows.Controls.Primitives;
using System.Windows.Input;
public class SelectionAdapter
{
#region "Fields"
private Selector _selectorControl;
#endregion
#region "Constructors"
public SelectionAdapter(Selector selector)
{
SelectorControl = selector;
SelectorControl.PreviewMouseUp += OnSelectorMouseDown;
}
#endregion
#region "Events"
public delegate void CancelEventHandler();
public delegate void CommitEventHandler();
public delegate void SelectionChangedEventHandler();
public event CancelEventHandler Cancel;
public event CommitEventHandler Commit;
public event SelectionChangedEventHandler SelectionChanged;
#endregion
#region "Properties"
public Selector SelectorControl
{
get { return _selectorControl; }
set { _selectorControl = value; }
}
#endregion
#region "Methods"
public void HandleKeyDown(KeyEventArgs key)
{
Debug.WriteLine(key.Key);
switch (key.Key)
{
case Key.Down:
IncrementSelection();
break;
case Key.Up:
DecrementSelection();
break;
case Key.Enter:
if (Commit != null)
{
Commit();
}
break;
case Key.Escape:
if (Cancel != null)
{
Cancel();
}
break;
case Key.Tab:
if (Commit != null)
{
Commit();
}
break;
}
}
private void DecrementSelection()
{
if (SelectorControl.SelectedIndex == -1)
{
SelectorControl.SelectedIndex = SelectorControl.Items.Count - 1;
}
else
{
SelectorControl.SelectedIndex -= 1;
}
if (SelectionChanged != null)
{
SelectionChanged();
}
}
private void IncrementSelection()
{
if (SelectorControl.SelectedIndex == SelectorControl.Items.Count - 1)
{
SelectorControl.SelectedIndex = -1;
}
else
{
SelectorControl.SelectedIndex += 1;
}
if (SelectionChanged != null)
{
SelectionChanged();
}
}
private void OnSelectorMouseDown(object sender, MouseButtonEventArgs e)
{
if (Commit != null)
{
Commit();
}
}
#endregion
}
}
|