-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResultsWindowControl.xaml.cs
More file actions
90 lines (75 loc) · 2.26 KB
/
ResultsWindowControl.xaml.cs
File metadata and controls
90 lines (75 loc) · 2.26 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
using Microsoft.VisualStudio.Shell;
using System.Windows;
using System.Windows.Controls;
namespace ConsoleCompare
{
/// <summary>
/// Interaction logic for ResultsWindowControl.
/// </summary>
public partial class ResultsWindowControl : UserControl
{
private ResultsWindow window;
/// <summary>
/// Initializes a new instance of the <see cref="ResultsWindowControl"/> class.
/// </summary>
public ResultsWindowControl(ResultsWindow window)
{
this.window = window;
this.InitializeComponent();
// Set up widths of rich text boxes
this.ExpectedOutput.Document.PageWidth = 1000;
this.ProgramOutput.Document.PageWidth = 1000;
}
/// <summary>
/// Begins a run of the application and captures the output, comparing
/// it to a set of predefined output
/// </summary>
private void ButtonCapture_Click(object sender, RoutedEventArgs e)
{
ThreadHelper.ThrowIfNotOnUIThread();
window.BeginCapture();
}
/// <summary>
/// Stops a capture in progress, if one exists
/// </summary>
private void ButtonStop_Click(object sender, RoutedEventArgs e)
{
ThreadHelper.ThrowIfNotOnUIThread();
window.StopCapture();
}
/// <summary>
/// Loads a simile file
/// </summary>
private void ButtonLoadSimile_Click(object sender, RoutedEventArgs e)
{
ThreadHelper.ThrowIfNotOnUIThread();
window.LoadSimileUsingFileDialog();
}
/// <summary>
/// Ensures the two text boxes remain sync'd as they scroll
/// </summary>
private void SyncScrollChanged(object sender, ScrollChangedEventArgs e)
{
RichTextBox toSync = (sender == this.ExpectedOutput) ? this.ProgramOutput : this.ExpectedOutput;
toSync.ScrollToVerticalOffset(e.VerticalOffset);
toSync.ScrollToHorizontalOffset(e.HorizontalOffset);
}
/// <summary>
/// Runs the comment check
/// </summary>
private void ButtonComments_Click(object sender, RoutedEventArgs e)
{
ThreadHelper.ThrowIfNotOnUIThread();
// Run the comment check and report results back to this window
CommentChecker.ScanForComments(window);
}
/// <summary>
/// Handles the comment text being clicked
/// </summary>
private void TextComments_Click(object sender, RoutedEventArgs e)
{
ThreadHelper.ThrowIfNotOnUIThread();
window.ShowCommentDetailsPopup();
}
}
}