-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCodeFileEntry.cs
More file actions
180 lines (166 loc) · 5.36 KB
/
Copy pathCodeFileEntry.cs
File metadata and controls
180 lines (166 loc) · 5.36 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
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using StatTag.Core.Models;
namespace StatTag.Controls
{
public partial class CodeFileEntry : UserControl
{
public event EventHandler CodeFileClick;
public event EventHandler CodeFileDoubleClick;
private bool selected = false;
private int index = 0;
private CodeFile codeFile = null;
public CodeFileEntry()
{
InitializeComponent();
new ToolTip().SetToolTip(imgWarning, "The file could not be found at the specified location");
}
[Description("The code file being displayed"), Category("Data")]
public CodeFile CodeFile
{
get { return codeFile; }
set
{
codeFile = value;
if (codeFile == null)
{
FileName = string.Empty;
FilePath = string.Empty;
}
else
{
FileName = Path.GetFileName(codeFile.FilePath);
FilePath = Path.GetDirectoryName(codeFile.FilePath);
imgWarning.Visible = (!File.Exists(codeFile.FilePath));
}
}
}
[Description("The name of the code file"), Category("Data")]
public string FileName
{
get { return lblFileName.Text; }
set
{
lblFileName.Text = value;
UpdateIconForFile(value);
ResizeControl();
}
}
[Description("The path to the code file"), Category("Data")]
public string FilePath
{
get { return lblFilePath.Text; }
set
{
lblFilePath.Text = value;
ResizeControl();
}
}
private void ResizeControl()
{
var fileNameSize = TextRenderer.MeasureText(lblFileName.Text, lblFileName.Font);
var filePathSize = TextRenderer.MeasureText(lblFilePath.Text, lblFilePath.Font);
lblFileName.Height = lblFileName.Padding.Top + fileNameSize.Height + lblFileName.Padding.Bottom;
lblFilePath.Top = lblFilePath.Margin.Top + lblFileName.Bottom;
lblFilePath.Height = lblFilePath.Padding.Top + filePathSize.Height + lblFilePath.Padding.Bottom;
this.Height = this.Padding.Top + lblFilePath.Bottom + this.Padding.Bottom + 5;
}
[Description("Flag to set if the control is considered selected or not"), Category("Data")]
public bool Selected
{
get { return selected; }
set
{
selected = value;
UpdateBackgroundColor();
}
}
[Description("The index of the code file entry within a list"), Category("Data")]
public int Index
{
get { return index; }
set
{
index = value;
UpdateBackgroundColor();
}
}
private void UpdateBackgroundColor()
{
if (selected)
{
ForeColor = Color.White;
BackColor = Color.DodgerBlue;
}
else if (index%2 == 0)
{
ForeColor = Color.Black;
BackColor = Color.White;
}
else
{
ForeColor = Color.Black;
BackColor = Color.GhostWhite;
}
}
private void UpdateIconForFile(string fileName)
{
var statPackage = CodeFile.GuessStatisticalPackage(fileName);
imgR.Visible = false;
imgRmd.Visible = false;
imgSAS.Visible = false;
imgStata.Visible = false;
imgPython.Visible = false;
switch (statPackage)
{
case Constants.StatisticalPackages.Stata:
{
imgStata.Visible = true;
break;
}
case Constants.StatisticalPackages.SAS:
{
imgSAS.Visible = true;
break;
}
case Constants.StatisticalPackages.R:
{
imgR.Visible = true;
break;
}
case Constants.StatisticalPackages.RMarkdown:
{
imgRmd.Visible = true;
break;
}
case Constants.StatisticalPackages.Python:
{
imgPython.Visible = true;
break;
}
}
}
private void CodeFileEntry_Click(object sender, EventArgs e)
{
if (this.CodeFileClick != null)
{
CodeFileClick(this, e);
}
}
private void CodeFileEntry_DoubleClick(object sender, EventArgs e)
{
if (this.CodeFileDoubleClick != null)
{
CodeFileDoubleClick(this, e);
}
}
}
}