-
Notifications
You must be signed in to change notification settings - Fork 4
/
DirectoryDiffControl.cs
431 lines (359 loc) · 9.68 KB
/
DirectoryDiffControl.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
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
namespace Menees.Diffs.Windows.Forms
{
#region Using Directives
using System;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
using Menees.Windows.Forms;
#endregion
public sealed partial class DirectoryDiffControl : ExtendedUserControl
{
#region Private Data Members
private DirectoryDiffTreeView activeTree;
private bool showColorLegend = true;
private bool showToolBar = true;
#endregion
#region Constructors
public DirectoryDiffControl()
{
this.InitializeComponent();
this.activeTree = this.TreeA;
this.TreeA.ImageList = this.Images;
this.TreeB.ImageList = this.Images;
this.UpdateButtons();
this.UpdateColors();
DiffOptions.OptionsChanged += this.DiffOptionsChanged;
}
#endregion
#region Public Events
public event EventHandler? RecompareNeeded;
public event EventHandler<DifferenceEventArgs>? ShowFileDifferences;
#endregion
#region Public Properties
public bool CanRecompare => this.RecompareNeeded != null;
[Browsable(false)]
public bool CanShowDifferences
{
get
{
DirectoryDiffEntry? entry = this.SelectedEntry;
bool result = entry != null && entry.IsFile && entry.InA && entry.InB && this.ShowFileDifferences != null;
return result;
}
}
[Browsable(false)]
public bool CanView => this.activeTree.CanView;
[DefaultValue(true)]
public bool FullRowSelect
{
get
{
return !this.TreeA.ShowLines;
}
set
{
// The TreeViews will always have FullRowSelect set to
// true, but it doesn't affect anything unless ShowLines
// is false. So we'll just toggle the ShowLines property.
if (this.FullRowSelect != value)
{
this.TreeA.ShowLines = !value;
this.TreeB.ShowLines = !value;
}
}
}
[DefaultValue(true)]
public bool ShowColorLegend
{
get
{
return this.showColorLegend;
}
set
{
if (this.showColorLegend != value)
{
this.showColorLegend = value;
this.lblDelete.Visible = value;
this.lblChange.Visible = value;
this.lblInsert.Visible = value;
this.tsSep2.Visible = value;
}
}
}
[DefaultValue(true)]
public bool ShowToolBar
{
get
{
return this.showToolBar;
}
set
{
if (this.showToolBar != value)
{
// Note: We have to store the state ourselves because
// Visible may return false even after we set it to true
// if any of its parents are visible.
this.showToolBar = value;
this.ToolBar.Visible = value;
}
}
}
#endregion
#region Private Properties
private DirectoryDiffEntry? SelectedEntry
{
get
{
TreeNode selectedNode = this.TreeB.Focused ? this.TreeB.SelectedNode : this.TreeA.SelectedNode;
DirectoryDiffEntry? result = DirectoryDiffTreeView.GetEntryForNode(selectedNode);
return result;
}
}
#endregion
#region Public Methods
public bool Recompare()
{
bool result = false;
if (this.CanRecompare)
{
this.RecompareNeeded?.Invoke(this, EventArgs.Empty);
result = true;
}
return result;
}
public void SetData(DirectoryDiffResults results)
{
this.edtA.Text = results.DirectoryA.FullName;
this.edtB.Text = results.DirectoryB.FullName;
this.TreeA.SetData(results, true);
this.TreeB.SetData(results, false);
// Set a filter description
if (results.Filter == null)
{
this.lblFilter.Text = "All Files";
}
else
{
DirectoryDiffFileFilter filter = results.Filter;
this.lblFilter.Text = string.Format("{0}: {1}", filter.Include ? "Includes" : "Excludes", filter.Filters);
}
this.UpdateButtons();
if (this.TreeA.Nodes.Count > 0)
{
this.TreeA.SelectedNode = this.TreeA.Nodes[0];
}
}
public void ShowDifferences()
{
if (this.CanShowDifferences)
{
DirectoryDiffEntry? entry = this.SelectedEntry;
if (entry != null)
{
GetNodes(entry, out TreeNode? nodeA, out TreeNode? nodeB);
if (nodeA != null && nodeB != null)
{
string fileA = this.TreeA.GetFullNameForNode(nodeA);
string fileB = this.TreeB.GetFullNameForNode(nodeB);
this.ShowFileDifferences?.Invoke(this, new DifferenceEventArgs(fileA, fileB));
}
}
}
}
public void View()
{
if (this.CanView)
{
this.activeTree.View();
}
}
#endregion
#region Private Methods
private static void GetNodes(DirectoryDiffEntry entry, out TreeNode? nodeA, out TreeNode? nodeB)
{
nodeA = (TreeNode?)entry.TagA;
nodeB = (TreeNode?)entry.TagB;
}
private static bool IsScrollingKey(KeyEventArgs e)
{
bool result = false;
if (e.Modifiers == Keys.Control)
{
switch (e.KeyCode)
{
case Keys.Home:
case Keys.End:
case Keys.PageUp:
case Keys.PageDown:
case Keys.Up:
case Keys.Down:
result = true;
break;
}
}
return result;
}
private void Recompare_Click(object? sender, EventArgs e)
{
this.Recompare();
}
private void ShowDifferences_Click(object? sender, EventArgs e)
{
this.ShowDifferences();
}
private void View_Click(object? sender, EventArgs e)
{
this.View();
}
[SuppressMessage("Design", "CC0091:Use static method", Justification = "Windows Forms designer prefers non-static.")]
private void ColorLegend_Paint(object? sender, PaintEventArgs e)
{
DiffControl.PaintColorLegendItem(sender as ToolStripItem, e);
}
private void DiffOptionsChanged(object? sender, EventArgs e)
{
this.UpdateColors();
}
private void DirDiffControl_SizeChanged(object? sender, EventArgs e)
{
this.pnlLeft.Width = (this.Width - this.Splitter.Width) / 2;
}
private void SyncTreeViewScrollPositions(DirectoryDiffTreeView source)
{
DirectoryDiffEntry? entry = DirectoryDiffTreeView.GetEntryForNode(source.TopNode);
if (entry != null)
{
GetNodes(entry, out TreeNode? nodeA, out TreeNode? nodeB);
if (nodeA != null && nodeB != null)
{
this.TreeA.TopNode = nodeA;
this.TreeB.TopNode = nodeB;
}
}
// An alternate but VERY flickery way to do this is:
// int sourcePos = Windows.GetScrollPos(source, false);
// target.BeginUpdate();
// Windows.SetScrollPos(target, false, sourcePos);
// target.EndUpdate();
}
private void TreeA_KeyDown(object sender, KeyEventArgs e)
{
// We only need to send scrolling key strokes (e.g. Ctrl+Home)
// to the other tree. If we send all keystrokes then weird
// things happen. For example, we already have the AfterSelect
// events tied together, so when a user changes the selection
// with a keystroke, we need AfterSelect to update the other
// tree. If we sent all keystrokes we'd end up with a double
// move of the selection.
if (IsScrollingKey(e))
{
this.SyncTreeViewScrollPositions(this.TreeA);
}
}
private void TreeA_MouseWheelMsg(object? sender, EventArgs e)
{
this.SyncTreeViewScrollPositions(this.TreeA);
}
private void TreeA_VScroll(object? sender, EventArgs e)
{
this.SyncTreeViewScrollPositions(this.TreeA);
}
private void TreeB_KeyDown(object sender, KeyEventArgs e)
{
// See note in TreeA_KeyDown.
if (IsScrollingKey(e))
{
this.SyncTreeViewScrollPositions(this.TreeB);
}
}
private void TreeB_MouseWheelMsg(object? sender, EventArgs e)
{
this.SyncTreeViewScrollPositions(this.TreeB);
}
private void TreeB_VScroll(object? sender, EventArgs e)
{
this.SyncTreeViewScrollPositions(this.TreeB);
}
private void TreeNode_SelectChanged(object sender, TreeViewEventArgs e)
{
DirectoryDiffEntry? entry = DirectoryDiffTreeView.GetEntryForNode(e.Node);
if (entry != null)
{
GetNodes(entry, out TreeNode? nodeA, out TreeNode? nodeB);
if (nodeA != null && nodeB != null)
{
this.TreeA.SelectedNode = nodeA;
this.TreeB.SelectedNode = nodeB;
}
}
this.UpdateButtons();
}
[SuppressMessage("Design", "CC0091:Use static method", Justification = "Windows Forms designer prefers non-static.")]
private void TreeNode_StateChange(object sender, TreeViewEventArgs e)
{
DirectoryDiffEntry? entry = DirectoryDiffTreeView.GetEntryForNode(e.Node);
if (entry != null)
{
GetNodes(entry, out TreeNode? nodeA, out TreeNode? nodeB);
if (nodeA != null && nodeB != null)
{
if (e.Action == TreeViewAction.Collapse)
{
// Although the Docs say that Collapse() isn't recursive,
// it actually is. Since clicking the +/- isn't recursive
// we have to simulate that by calling Collapse even on the
// node that fired the event.
if (nodeA.IsExpanded || e.Node == nodeA)
{
nodeA.Collapse();
}
if (nodeB.IsExpanded || e.Node == nodeB)
{
nodeB.Collapse();
}
}
else if (e.Action == TreeViewAction.Expand)
{
if (!nodeA.IsExpanded || e.Node == nodeA)
{
nodeA.Expand();
}
if (!nodeB.IsExpanded || e.Node == nodeB)
{
nodeB.Expand();
}
}
}
}
}
private void TreeView_DoubleClick(object? sender, EventArgs e)
{
this.ShowDifferences();
}
private void TreeView_Enter(object? sender, EventArgs e)
{
this.activeTree = (DirectoryDiffTreeView)sender!;
this.UpdateButtons();
}
private void UpdateButtons()
{
this.btnView.Enabled = this.CanView;
this.mnuView.Enabled = this.btnView.Enabled;
this.btnShowDifferences.Enabled = this.CanShowDifferences;
this.mnuShowDifferences.Enabled = this.btnShowDifferences.Enabled;
this.btnRecompare.Enabled = this.CanRecompare;
}
private void UpdateColors()
{
this.lblDelete.BackColor = DiffOptions.DeletedColor;
this.lblChange.BackColor = DiffOptions.ChangedColor;
this.lblInsert.BackColor = DiffOptions.InsertedColor;
}
#endregion
}
}