-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsForm_ContentCoding.cs
More file actions
234 lines (150 loc) · 8.25 KB
/
SettingsForm_ContentCoding.cs
File metadata and controls
234 lines (150 loc) · 8.25 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
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
using System;
using System.IO;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
namespace ContentCoding
{
internal partial class SettingsForm_ContentCoding : Form
{
#region Get and Set Options
public List<DictionaryMetaObject> DictDataToReturn;
public Dictionary<string, string> DictDescriptions;
public Dictionary<string, string> DictPrefixes;
public Dictionary<string, string> DictVariableLists;
public bool RawFreqs;
#endregion
public SettingsForm_ContentCoding(List<DictionaryMetaObject> Dicts, bool RawFreqs)
{
InitializeComponent();
DictDataToReturn = Dicts;
DictDescriptions = new Dictionary<string, string>();
DictPrefixes = new Dictionary<string, string>();
DictVariableLists = new Dictionary<string, string>();
RawCountsCheckbox.Checked = RawFreqs;
foreach (DictionaryMetaObject Dict in Dicts)
{
SelectedDictionariesCheckedListbox.Items.Add(Dict.DictionaryName);
if (Dict.UseDictionary) SelectedDictionariesCheckedListbox.SetItemChecked(
SelectedDictionariesCheckedListbox.Items.IndexOf(Dict.DictionaryName), Dict.UseDictionary);
try
{
DictDescriptions.Add(Dict.DictionaryName, Dict.DictionaryDescription);
DictPrefixes.Add(Dict.DictionaryName, Dict.DictionaryCategoryPrefix);
StringBuilder variableNameList = new StringBuilder();
//because we haven't actually *parsed* the dictionaries yet (so far as we're aware — this isn't always true if we've loaded a pipeline)
//we have to do this to get variable names
DictParser DP = new DictParser();
DictionaryMetaObject tempDictionaryForParsing = Dict;
if (Dict.DictData.DictionaryLoaded == false)
{
tempDictionaryForParsing.DictData = DP.ParseDict(tempDictionaryForParsing);
}
else
{
//but we don't want to reload this *every* time either if we've already parsed the dictionaries once
tempDictionaryForParsing.DictData = Dict.DictData;
}
foreach (string varName in tempDictionaryForParsing.DictData.CatNames) variableNameList.AppendLine('\t' + varName);
DictVariableLists.Add(Dict.DictionaryName, variableNameList.ToString());
}
catch
{
}
}
SelectedDictionariesCheckedListbox.SelectedIndex = 0;
}
private void OKButton_Click(object sender, System.EventArgs e)
{
RawFreqs = RawCountsCheckbox.Checked;
for (int i = 0; i < DictDataToReturn.Count; i++)
{
DictDataToReturn[i].UseDictionary = SelectedDictionariesCheckedListbox.GetItemChecked(SelectedDictionariesCheckedListbox.Items.IndexOf(DictDataToReturn[i].DictionaryName));
}
this.DialogResult = DialogResult.OK;
}
private void SelectedDictionariesCheckedListbox_Click(object sender, System.EventArgs e)
{
UpdateDescription();
}
private void UpdateDescription()
{
if (SelectedDictionariesCheckedListbox.SelectedItem != null)
{
StringBuilder dictionaryDescText = new StringBuilder();
//add in the name of the dictionary
dictionaryDescText.Append(SelectedDictionariesCheckedListbox.SelectedItem.ToString());
//add the output prefix
dictionaryDescText.Append(Environment.NewLine + Environment.NewLine +
"Output Prefix: " + DictPrefixes[SelectedDictionariesCheckedListbox.SelectedItem.ToString()]);
//add the descriptive text
dictionaryDescText.Append(Environment.NewLine + Environment.NewLine +
DictDescriptions[SelectedDictionariesCheckedListbox.SelectedItem.ToString()]);
//add in the variable lists
dictionaryDescText.Append(Environment.NewLine + Environment.NewLine +
"Variable Names: " + Environment.NewLine +
DictVariableLists[SelectedDictionariesCheckedListbox.SelectedItem.ToString()]);
DictionaryDescriptionTextbox.Text = dictionaryDescText.ToString();
}
}
private void SelectedDictionariesCheckedListbox_KeyPress(object sender, KeyPressEventArgs e)
{
UpdateDescription();
}
private void SelectedDictionariesCheckedListbox_SelectedIndexChanged(object sender, System.EventArgs e)
{
UpdateDescription();
}
private void CheckAllButton_Click(object sender, System.EventArgs e)
{
for (int i = 0; i < SelectedDictionariesCheckedListbox.Items.Count; i++) SelectedDictionariesCheckedListbox.SetItemChecked(i, true);
}
private void UncheckAllButton_Click(object sender, System.EventArgs e)
{
for (int i = 0; i < SelectedDictionariesCheckedListbox.Items.Count; i++) SelectedDictionariesCheckedListbox.SetItemChecked(i, false);
}
private void LoadDictionaryButton_Click(object sender, System.EventArgs e)
{
using (var dialog = new OpenFileDialog())
{
dialog.Multiselect = false;
dialog.CheckFileExists = true;
dialog.CheckPathExists = true;
dialog.ValidateNames = true;
dialog.Title = "Please choose the Dictionary file that you would like to read";
dialog.FileName = "Dictionary.dic";
dialog.Filter = "LIWC Dictionary File|*.dic;*.txt";
if (dialog.ShowDialog() == DialogResult.OK)
{
try
{
if (SelectedDictionariesCheckedListbox.Items.Contains(Path.GetFileName(dialog.FileName)))
{
MessageBox.Show("There is already a dictionary with this name in your list.", "Error Loading Dictionary", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
string DicText = File.ReadAllText(dialog.FileName, Encoding.UTF8).Trim();
DictionaryMetaObject InputDictData = new DictionaryMetaObject(Path.GetFileName(dialog.FileName), "User-loaded dictionary", "", DicText);
DictParser DP = new DictParser();
InputDictData.DictData = DP.ParseDict(InputDictData);
DictDataToReturn.Add(InputDictData);
SelectedDictionariesCheckedListbox.Items.Add(InputDictData.DictionaryName);
SelectedDictionariesCheckedListbox.SetItemChecked(SelectedDictionariesCheckedListbox.Items.IndexOf(InputDictData.DictionaryName), true);
DictDescriptions.Add(InputDictData.DictionaryName, InputDictData.DictionaryDescription);
DictPrefixes.Add(InputDictData.DictionaryName, "");
StringBuilder variableNameList = new StringBuilder();
foreach (string varName in InputDictData.DictData.CatNames) variableNameList.AppendLine('\t' + varName);
DictVariableLists.Add(InputDictData.DictionaryName, variableNameList.ToString());
}
catch
{
MessageBox.Show("There was an error while trying to read/load your dictionary file. Is your dictionary correctly formatted? Have you already added this dictionary to this plugin?", "Error reading dictionary", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
}
}
}
}
}