forked from dnSpy/ICSharpCode.TreeView
-
Notifications
You must be signed in to change notification settings - Fork 6
/
SharpTreeViewItem.cs
223 lines (191 loc) · 5.45 KB
/
SharpTreeViewItem.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
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Controls;
using System.Windows;
using System.Windows.Media;
using System.Windows.Input;
using System.Diagnostics;
namespace ICSharpCode.TreeView
{
public class SharpTreeViewItem : ListViewItem
{
static readonly ClickHandler<Tuple<MouseButtonEventArgs, SharpTreeNode>> doubleClickHandler
= new ClickHandler<Tuple<MouseButtonEventArgs, SharpTreeNode>>();
static SharpTreeViewItem()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(SharpTreeViewItem),
new FrameworkPropertyMetadata(typeof(SharpTreeViewItem)));
}
public SharpTreeNode Node
{
get { return DataContext as SharpTreeNode; }
}
void UpdateAdaptor(SharpTreeNode node)
{
if (nodeView == null)
return;
if (node == null)
return;
var doAdaptor = nodeView.DataContext as SharpTreeNodeProxy;
if (doAdaptor == null)
nodeView.DataContext = (doAdaptor = new SharpTreeNodeProxy(node));
else
doAdaptor.UpdateObject(node);
nodeView.UpdateTemplate();
}
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
{
base.OnPropertyChanged(e);
if (e.Property == DataContextProperty)
{
UpdateAdaptor(e.NewValue as SharpTreeNode);
}
}
SharpTreeNodeView nodeView;
public SharpTreeNodeView NodeView
{
get { return nodeView; }
internal set
{
if (nodeView != value)
{
nodeView = value;
UpdateAdaptor(Node);
}
}
}
public SharpTreeView ParentTreeView { get; internal set; }
protected override void OnKeyDown(KeyEventArgs e)
{
switch (e.Key) {
case Key.F2:
if (Node != null) {
if (Node.IsEditable && ParentTreeView != null && ParentTreeView.SelectedItems.Count == 1 && ParentTreeView.SelectedItems[0] == Node) {
Node.IsEditing = true;
e.Handled = true;
}
}
break;
case Key.Escape:
if (Node != null) {
if (Node.IsEditing) {
Node.IsEditing = false;
e.Handled = true;
}
}
break;
}
}
protected override System.Windows.Automation.Peers.AutomationPeer OnCreateAutomationPeer() => new SharpTreeViewItemAutomationPeer(this);
#region Mouse
Point startPoint;
bool wasSelected;
bool wasDoubleClick;
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
{
wasSelected = IsSelected;
if (!IsSelected) {
base.OnMouseLeftButtonDown(e);
}
if (ParentTreeView.CanDragAndDrop) {
if (Mouse.LeftButton == MouseButtonState.Pressed) {
startPoint = e.GetPosition(null);
CaptureMouse();
if (e.ClickCount == 2)
wasDoubleClick = true;
}
}
doubleClickHandler.MouseDown(new Tuple<MouseButtonEventArgs, SharpTreeNode>(e, Node));
}
protected override void OnMouseMove(MouseEventArgs e)
{
if (IsMouseCaptured) {
var currentPoint = e.GetPosition(null);
if (Math.Abs(currentPoint.X - startPoint.X) >= SystemParameters.MinimumHorizontalDragDistance ||
Math.Abs(currentPoint.Y - startPoint.Y) >= SystemParameters.MinimumVerticalDragDistance) {
var selection = ParentTreeView.GetTopLevelSelection().ToArray();
if (Node != null && Node.CanDrag(selection)) {
Node.StartDrag(this, selection);
}
}
}
}
private void SingleClickAction(Tuple<MouseButtonEventArgs, SharpTreeNode> context)
{
var node = context.Item2;
if (!node.IsExpanded && node.SingleClickExpandsChildren)
if (!node.IsRoot || ParentTreeView.ShowRootExpander)
node.IsExpanded = !node.IsExpanded;
}
private void DoubleClickAction(Tuple<MouseButtonEventArgs, SharpTreeNode> context)
{
var e = context.Item1;
var node = context.Item2;
if (node != null)
Node.ActivateItem(e);
}
protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
{
if (Node != null)
{
if (ParentTreeView.CanDragAndDrop)
{
if (wasDoubleClick)
{
wasDoubleClick = false;
OnDoubleClick(e);
}
else
SingleClickAction(new Tuple<MouseButtonEventArgs, SharpTreeNode>(e, Node));
}
else
doubleClickHandler.MouseUp(SingleClickAction, DoubleClickAction);
}
ReleaseMouseCapture();
if (wasSelected) {
wasSelected = false;
// Make sure the TV doesn't steal focus when double clicking something that will
// trigger setting focus to eg. the text editor.
if (!ignoreOnMouseLeftButtonDown)
base.OnMouseLeftButtonDown(e);
}
ignoreOnMouseLeftButtonDown = false;
}
bool ignoreOnMouseLeftButtonDown = false;
void OnDoubleClick(RoutedEventArgs e)
{
ignoreOnMouseLeftButtonDown = true;
if (Node == null)
return;
Node.ActivateItem(e);
if (!e.Handled) {
if (!Node.IsRoot || ParentTreeView.ShowRootExpander) {
Node.IsExpanded = !Node.IsExpanded;
}
}
}
#endregion
#region Drag and Drop
protected override void OnDragEnter(DragEventArgs e)
{
ParentTreeView.HandleDragEnter(this, e);
}
protected override void OnDragOver(DragEventArgs e)
{
ParentTreeView.HandleDragOver(this, e);
}
protected override void OnDrop(DragEventArgs e)
{
ParentTreeView.HandleDrop(this, e);
}
protected override void OnDragLeave(DragEventArgs e)
{
ParentTreeView.HandleDragLeave(this, e);
}
#endregion
}
}