forked from jeason0813/QuranCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.cs
451 lines (425 loc) · 16.5 KB
/
MainForm.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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.IO;
using System.Text;
using System.Windows.Forms;
namespace InitialLetters
{
public partial class MainForm : Form
{
List<string> sentences;
DateTime m_start_time;
public MainForm()
{
InitializeComponent();
m_filename = AppDomain.CurrentDomain.FriendlyName.Replace(".exe", ".ini");
LoadSettings();
}
private string m_filename = null;
private string m_letters = null;
private void LoadSettings()
{
if (File.Exists(m_filename))
{
using (StreamReader reader = File.OpenText(m_filename))
{
try
{
while (!reader.EndOfStream)
{
string line = reader.ReadLine();
string[] parts = line.Split('=');
if (parts.Length == 2)
{
switch (parts[0])
{
case "Top":
{
this.Top = int.Parse(parts[1]);
}
break;
case "Left":
{
this.Left = int.Parse(parts[1]);
}
break;
case "Width":
{
this.Width = int.Parse(parts[1]);
}
break;
case "Height":
{
this.Height = int.Parse(parts[1]);
}
break;
case "Letters":
{
this.m_letters = parts[1];
}
break;
}
}
}
}
catch
{
this.Top = 0;
this.Left = 0;
}
}
}
else // first start
{
RestoreLocation();
}
}
private void SaveSettings()
{
try
{
using (StreamWriter writer = File.CreateText(m_filename))
{
writer.WriteLine("[Window]");
writer.WriteLine("Top=" + this.Top);
writer.WriteLine("Left=" + this.Left);
writer.WriteLine("Width=" + this.Width);
writer.WriteLine("Height=" + this.Height);
writer.WriteLine("[Text]");
writer.WriteLine("Letters=" + this.LettersTextBox.Text); // don't use this.m_letters
}
}
catch
{
// silence IO error in case running from read-only media (CD/DVD)
}
}
private void RestoreLocation()
{
this.Top = (Screen.PrimaryScreen.Bounds.Height / 2) - (this.Height / 2);
this.Left = (Screen.PrimaryScreen.Bounds.Width / 2) - (this.Width / 2);
}
private void MainForm_Load(object sender, EventArgs e)
{
}
private void MainForm_Shown(object sender, EventArgs e)
{
if ((m_letters != null) && (m_letters.Length > 0))
{
LettersTextBox.Text = m_letters;
}
else
{
InitialsUniqueLettersToolStripMenuItem_Click(sender, e);
}
UniqueLettersToolStripMenuItem.Checked = false;
UniqueWordsToolStripMenuItem.Checked = false;
AllWordsToolStripMenuItem.Checked = false;
ListView.Enabled = false;
}
private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
{
CloseApplication();
}
private void CloseApplication()
{
SaveSettings();
}
private void MainForm_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
GenerateAnagrams();
}
private void Timer_Tick(object sender, EventArgs e)
{
TimeSpan timespan = DateTime.Now - m_start_time;
ElapsedTimeLabel.Text = new DateTime(timespan.Ticks).ToString("HH:mm:ss");//.fff");
}
private void ListView_Resize(object sender, EventArgs e)
{
// trial and error shows that we must make the column
// header four pixels narrower than the containing
// listview in order to avoid a scrollbar.
if (ListView.Columns.Count > 0)
{
ListView.Columns[0].Width = ListView.Width - 23;
// if the listview is big enough to show all the items, then make sure
// the first item is at the top. This works around behavior (which I assume is
// a bug in C# or .NET or something) whereby
// some blank lines appear before the first item
if (ListView.Items.Count > 0
&&
ListView.TopItem != null
&&
ListView.TopItem.Index == 0)
ListView.EnsureVisible(0);
}
}
private void ListView_SelectedIndexChanged(object sender, EventArgs e)
{
Clipboard.Clear();
string selected_text = "";
ListView me = (ListView)sender;
foreach (ListViewItem it in me.SelectedItems)
{
if (selected_text.Length > 0)
selected_text += Environment.NewLine;
selected_text += it.Text;
}
// Under some circumstances -- probably a bug in my code somewhere --
// we can get blank lines in the listview. And if you click on one, since it
// has no text, selected_text will be blank; _and_, apparantly, calling
// Clipboard.set_text with an empty string provokes an aResultLabeless violation ...
// so avoid that AV.
if (selected_text.Length > 0)
Clipboard.SetText(selected_text);
}
private void ListView_SortColumnClick(object sender, ColumnClickEventArgs e)
{
this.Cursor = Cursors.WaitCursor;
try
{
if (ListView.Sorting == SortOrder.Ascending)
{
ListView.Columns[0].Text = "Decending order";
ListView.Sorting = SortOrder.Descending;
}
else
{
ListView.Columns[0].Text = "Ascending order";
ListView.Sorting = SortOrder.Ascending;
}
SaveResults();
}
finally
{
this.Cursor = Cursors.Default;
}
}
private void LettersTextBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
GenerateAnagrams();
// Control-A
if (e.KeyChar == (char)1)
LettersTextBox.SelectAll();
m_letters = LettersTextBox.Text + e.KeyChar.ToString();
}
private void InitialsUniqueLettersToolStripMenuItem_Click(object sender, EventArgs e)
{
LettersTextBox.Text = "ق ص ر ع س ن م ل ك ي ط ح ه ا";
UniqueLettersToolStripMenuItem.Checked = true;
UniqueWordsToolStripMenuItem.Checked = false;
AllWordsToolStripMenuItem.Checked = false;
}
private void InitialsUniqueWordsToolStripMenuItem_Click(object sender, EventArgs e)
{
LettersTextBox.Text = "الم المص الر المر كهيعص طه طسم طس يس ص حم عسق ق ن";
UniqueLettersToolStripMenuItem.Checked = false;
UniqueWordsToolStripMenuItem.Checked = true;
AllWordsToolStripMenuItem.Checked = false;
}
private void InitialsAllWordsToolStripMenuItem_Click(object sender, EventArgs e)
{
LettersTextBox.Text = "الم الم المص الر الر الر المر الر الر كهيعص طه طسم طس طسم الم الم الم الم يس ص حم حم عسق حم حم حم حم حم ق ن";
UniqueLettersToolStripMenuItem.Checked = false;
UniqueWordsToolStripMenuItem.Checked = false;
AllWordsToolStripMenuItem.Checked = true;
}
private void RunToolStripMenuItem_Click(object sender, EventArgs e)
{
GenerateAnagrams();
}
private void SaveToolStripMenuItem_Click(object sender, EventArgs e)
{
string filename = "";
if (ListView.Sorting == SortOrder.None)
{
filename = LettersTextBox.Text + ".txt";
}
else if (ListView.Sorting == SortOrder.Ascending)
{
filename = "Asc_" + LettersTextBox.Text + ".txt";
}
else if (ListView.Sorting == SortOrder.Descending)
{
filename = "Desc_" + LettersTextBox.Text + ".txt";
}
// show file content after save
if (File.Exists(filename))
{
try
{
System.Diagnostics.Process.Start(filename);
}
catch
{
System.Diagnostics.Process.Start(filename.Replace(@"/", @"\"));
}
}
}
private void InitialLettersToolStripMenuItem_Click(object sender, EventArgs e)
{
string filename = "InitialLetters.html";
string path = Application.StartupPath + "/" + "Help" + "/" + filename;
if (File.Exists(path))
{
System.Diagnostics.Process.Start(path);
}
}
private void AboutToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show(String.Format(
"Initial Letters - v{0}", Application.ProductVersion + "\r\n"
+ "\r\n"
+ "©2007 Eric Hanchrow - Anagrams" + "\r\n"
+ "http://github.com/offby1/anagrams" + "\r\n"
+ "\r\n"
+ "©2012 Ali Adams - علي عبد الرزاق عبد الكريم القره غولي" + "\r\n"
+ "http://www.qurancode.com" + "\r\n"
),
Application.ProductName);
}
private void GenerateAnagrams()
{
this.Cursor = Cursors.WaitCursor;
try
{
LettersTextBox.Enabled = false;
ListView.Items.Clear();
ListView.Enabled = false;
InitialsToolStripMenuItem.Enabled = false;
RunToolStripMenuItem.Enabled = false;
SaveToolStripMenuItem.Enabled = false;
m_start_time = DateTime.Now;
ElapsedTimeLabel.Text = "00:00:00";
Timer.Enabled = true;
ProgressBar.Minimum = 0;
ProgressBar.Value = 0;
string filename = "Data" + "/" + "dictionary.txt";
if (File.Exists(filename))
{
sentences = Anagrams.GenerateAnagrams(filename, LettersTextBox.Text);
if (sentences != null)
{
ProgressBar.Minimum = 0;
ProgressBar.Maximum = sentences.Count;
for (int i = 0; i < sentences.Count; i++)
{
ListView.Items.Add(sentences[i]);
ListView.EnsureVisible(ListView.Items.Count - 1);
ResultLabel.Text = ListView.Items.Count.ToString() + " / " + sentences.Count;
if (ListView.Items.Count % 1000 == 0)
{
Application.DoEvents();
}
ProgressBar.Value = i + 1;
}
}
ResultLabel.Text = String.Format("{0} sentences.", sentences.Count);
if (ListView.Items.Count > 0)
{
ListView.EnsureVisible(0);
}
LettersTextBox.Enabled = true;
LettersTextBox.Focus();
ListView.Enabled = true;
if (ListView.Columns.Count > 0)
{
ListView.Columns[0].Text = "Click to sort";
}
InitialsToolStripMenuItem.Enabled = true;
RunToolStripMenuItem.Enabled = true;
SaveToolStripMenuItem.Enabled = true;
SaveResults();
Timer.Enabled = false;
}
}
finally
{
this.Cursor = Cursors.Default;
}
}
private void SaveResults()
{
string filename = "";
if (ListView.Sorting == SortOrder.None)
{
filename = LettersTextBox.Text + ".txt";
}
else if (ListView.Sorting == SortOrder.Ascending)
{
filename = "Asc_" + LettersTextBox.Text + ".txt";
}
else if (ListView.Sorting == SortOrder.Descending)
{
filename = "Desc_" + LettersTextBox.Text + ".txt";
}
try
{
using (StreamWriter writer = new StreamWriter(filename, false, Encoding.Unicode))
{
writer.WriteLine("{0} sentences using '{1}'", ListView.Items.Count, LettersTextBox.Text);
writer.WriteLine("-----------------------------------");
foreach (ListViewItem it in ListView.Items)
{
writer.WriteLine(it.Text);
}
}
}
catch
{
// silence IO error in case running from read-only media (CD/DVD)
}
}
private void LettersTextBox_TextChanged(object sender, EventArgs e)
{
string text = LettersTextBox.Text;
text = text.Replace(" ", "");
ResultLabel.Text = "Letters = " + text.Length;
}
private string m_backeup_text_with_duplicate_letters = null;
private void DuplicateLettersCheckBox_CheckedChanged(object sender, EventArgs e)
{
if (!DuplicateLettersCheckBox.Checked)
{
m_backeup_text_with_duplicate_letters = LettersTextBox.Text;
LettersTextBox.Text = RemoveDuplicateLetters(m_backeup_text_with_duplicate_letters);
}
else
{
LettersTextBox.Text = m_backeup_text_with_duplicate_letters;
}
}
public string RemoveDuplicates(string text)
{
if (String.IsNullOrEmpty(text)) return "";
string result = "";
foreach (char c in text)
{
if (!result.Contains(c.ToString()))
{
result += c;
}
}
return result;
}
private string RemoveDuplicateLetters(string text)
{
if (String.IsNullOrEmpty(text)) return "";
string result = "";
foreach (char c in text)
{
if (!result.Contains(c.ToString()))
{
result += c + " ";
}
}
result = result.Remove(result.Length - 1, 1);
return result;
}
}
}