-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
431 lines (391 loc) · 12.9 KB
/
MainWindow.xaml.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
namespace WpfApplication1
{
/// <summary>
/// Interaktionslogik für MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
string help;
bool file_set = false;
String FilePath;
List<String> list = new List<String>();
public MainWindow()
{
InitializeComponent();
}
private void btn_open_Click(object sender, RoutedEventArgs e)
{
open_file();
}
private void btn_edit_Click(object sender, RoutedEventArgs e)
{
edit();
}
private void btn_submit_Click(object sender, RoutedEventArgs e)
{
submit();
}
private void tb_cullom_I_with_TextChanged(object sender, TextChangedEventArgs e)
{
tb_cullom_I_with.Text = check_number(tb_cullom_I_with.Text);
}
private void tb_cullom_I_with_GotFocus(object sender, RoutedEventArgs e)
{
tb_cullom_I_with.Text = "";
}
private void cb_cullom_I_with_Click(object sender, RoutedEventArgs e)
{
if (cb_cullom_I_with.IsChecked == true)
{
tb_cullom_I_with.IsEnabled = true;
rb_I_center.IsEnabled = true;
rb_I_left.IsEnabled = true;
rb_I_right.IsEnabled = true;
}
else
{
tb_cullom_I_with.IsEnabled = false;
rb_I_center.IsEnabled = false;
rb_I_left.IsEnabled = false;
rb_I_right.IsEnabled = false;
}
}
private void tb_cullom_II_with_TextChanged(object sender, TextChangedEventArgs e)
{
tb_cullom_II_with.Text = check_number(tb_cullom_II_with.Text);
}
private void tb_cullom_II_with_GotFocus(object sender, RoutedEventArgs e)
{
tb_cullom_II_with.Text = "";
}
private void cb_praefix_Click(object sender, RoutedEventArgs e)
{
if (cb_praefix.IsChecked == true)
{
tb_praefix.IsEnabled = true;
}
else
{
tb_praefix.IsEnabled = false;
}
}
private void cb_cullom_II_with_Click(object sender, RoutedEventArgs e)
{
if (cb_cullom_II_with.IsChecked == true)
{
tb_cullom_II_with.IsEnabled = true;
rb_II_center.IsEnabled = true;
rb_II_left.IsEnabled = true;
rb_II_right.IsEnabled = true;
}
else
{
tb_cullom_II_with.IsEnabled = false;
rb_II_center.IsEnabled = false;
rb_II_left.IsEnabled = false;
rb_II_right.IsEnabled = false;
}
}
private void cb_edit_Click(object sender, RoutedEventArgs e)
{
if (cb_edit.IsChecked == true)
{
tb_edit_number.IsEnabled = true;
tb_edit_cullom_I.IsEnabled = true;
tb_edit_cullom_II.IsEnabled = true;
}
else
{
tb_edit_number.IsEnabled = false;
tb_edit_cullom_I.IsEnabled = false;
tb_edit_cullom_II.IsEnabled = false;
tb_edit_number.Text = "";
tb_edit_cullom_I.Text = "";
tb_edit_cullom_II.Text = "";
}
}
private void tb_cullom_II_with_LostFocus(object sender, RoutedEventArgs e)
{
if (tb_cullom_II_with.Text == "")
{
tb_cullom_II_with.Text = "Spalte II Breite";
}
}
private void tb_cullom_I_with_LostFocus(object sender, RoutedEventArgs e)
{
if (tb_cullom_I_with.Text == "")
{
tb_cullom_I_with.Text = "Spalte I Breite";
}
}
private void rb_I_left_Click(object sender, RoutedEventArgs e)
{
if (rb_I_left.IsChecked == true)
{
rb_I_center.IsChecked = false;
rb_I_right.IsChecked = false;
}
}
private void rb_I_right_Click(object sender, RoutedEventArgs e)
{
if (rb_I_right.IsChecked == true)
{
rb_I_center.IsChecked = false;
rb_I_left.IsChecked = false;
}
}
private void rb_I_center_Click(object sender, RoutedEventArgs e)
{
if (rb_I_center.IsChecked == true)
{
rb_I_left.IsChecked = false;
rb_I_right.IsChecked = false;
}
}
private void rb_II_left_Click(object sender, RoutedEventArgs e)
{
if (rb_II_left.IsChecked == true)
{
rb_II_center.IsChecked = false;
rb_II_right.IsChecked = false;
}
}
private void rb_II_right_Click(object sender, RoutedEventArgs e)
{
if (rb_II_right.IsChecked == true)
{
rb_II_center.IsChecked = false;
rb_II_left.IsChecked = false;
}
}
private void rb_II_center_Click(object sender, RoutedEventArgs e)
{
if (rb_II_left.IsChecked == true)
{
rb_II_center.IsChecked = false;
rb_II_right.IsChecked = false;
}
}
private void tb_edit_number_TextChanged(object sender, TextChangedEventArgs e)
{
tb_edit_number.Text = check_number(tb_edit_number.Text);
if (tb_edit_number.Text == "")
{
btn_edit.IsEnabled = false;
}
else
{
btn_edit.IsEnabled = true;
}
}
private void tb_cullom_I_submit_TextChanged(object sender, TextChangedEventArgs e)
{
if (tb_cullom_I_submit.Text == "")
{
btn_submit.IsEnabled = false;
}
else
{
btn_submit.IsEnabled = true;
}
}
private void lb_list_view_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
select(lb_list_view.SelectedIndex);
}
private void open_file()
{
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
dlg.DefaultExt = ".tex";
dlg.Filter = "LaTEX-Table (.tex)|*.tex";
Nullable<bool> result = dlg.ShowDialog();
file_set = false;
if (result == true)
{
// Open document
string filename = dlg.FileName;
lbl_path_curr_data.Content = path_name(filename, 90, 70);
file_set = true;
FilePath = filename;
open();
}
}
private void edit()
{
if ((tb_edit_cullom_I.Text == "") && (tb_edit_cullom_II.Text == ""))
{
list.RemoveAt(Convert.ToInt16(tb_edit_number.Text));
orderList();
refresh_list_view();
write_file();
tb_edit_number.Text = "";
}
else
{
list.RemoveAt(Convert.ToInt16(tb_edit_number.Text));
list.Add(tb_praefix.Text.Substring(0, 1) +
tb_edit_cullom_I.Text +
tb_praefix.Text.Substring(1, 1) +
"&" +
tb_edit_cullom_II.Text);
orderList();
refresh_list_view();
write_file();
tb_edit_cullom_I.Text = "";
tb_edit_cullom_II.Text = "";
tb_edit_number.Text = "";
}
}
private void submit()
{
list.Add( tb_praefix.Text.Substring(0,1) +
tb_cullom_I_submit.Text +
tb_praefix.Text.Substring(1,1) +
"&" +
tb_cullom_II_submit.Text);
orderList();
refresh_list_view();
write_file();
tb_cullom_I_submit.Text = "";
tb_cullom_II_submit.Text = "";
}
private string check_number(string input)
{
int x;
if (int.TryParse(input, out x))
{
return input;
}
else
{
return "";
}
}
private string path_name(string input, int displatabele_length, int ending)
{
if (input.Length < displatabele_length)
{
return input;
}
else
{
String end = input.Substring(input.Length - (ending+1));
String trailing = input.Substring(0, (displatabele_length-(ending+5)));
return trailing+" ... "+end;
}
}
private void write_file()
{
if (file_set)
{
String head = "\\begin{longtable}{"+tablepropertys()+"}";
String end = "\\end{longtable}";
//StreamWriter delete = new StreamWriter(FilePath, false);
//delete.WriteLine("");
//delete.Close();
StreamWriter sw = new StreamWriter(FilePath, false);
sw.WriteLine(head);
foreach(String str in list)
{
sw.WriteLine(str + "\\" + "\\");
}
sw.WriteLine(end);
sw.Close();
}
}
private string tablepropertys()
{
String help="";
if(tb_cullom_I_with.Text!=""){
help +="lp{"+tb_cullom_I_with.Text+"cm}";
}
else{
if(Convert.ToBoolean(rb_I_left.IsChecked)){
help += "l";
}
if(Convert.ToBoolean(rb_I_right.IsChecked)){
help += "r";
}
if(Convert.ToBoolean(rb_I_center.IsChecked)){
help += "c";
}
}
if (tb_cullom_II_with.Text != "")
{
help += "lp{" + tb_cullom_II_with.Text + "cm}";
}
else
{
if (Convert.ToBoolean(rb_II_left.IsChecked))
{
help += "l";
}
if (Convert.ToBoolean(rb_II_right.IsChecked))
{
help += "r";
}
if (Convert.ToBoolean(rb_II_center.IsChecked))
{
help += "c";
}
}
return help;
}
private void refresh_list_view()
{
int i = 0;
lb_list_view.Items.Clear();
foreach (string lst in list)
{
lb_list_view.Items.Add(Convert.ToString(i)+ " " + lst);
i++;
}
}
private void orderList()
{
list.Sort();
}
private void open()
{
list.Clear();
StreamReader sr = new StreamReader(FilePath);
string line;
while ((line = sr.ReadLine()) != null)
{
list.Add(line.Substring(0,(line.Length-2)));
}
list.RemoveAt(0);
orderList();
refresh_list_view();
list.RemoveAt(list.Count-1);
orderList();
refresh_list_view();
}
private void select(int index)
{
String[] helper=new String[2];
if (index >= 0)
{
helper = list[index].ToString().Split('&');
tb_edit_number.Text = index.ToString();
tb_edit_cullom_I.Text = helper[0];
tb_edit_cullom_II.Text = helper[1];
}
}
}
}