-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAdvancedGeneralSettingsDlg.Designer.cs
555 lines (549 loc) · 29.7 KB
/
AdvancedGeneralSettingsDlg.Designer.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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
namespace iRacingReplayDirector
{
partial class AdvanceGeneralSettingsDlg
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.incidents_settings_tab = new System.Windows.Forms.TabControl();
this.tabPageTiming = new System.Windows.Forms.TabPage();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.durationHighlight = new System.Windows.Forms.MaskedTextBox();
this.timeToFocusLeaderRaceFinish = new System.Windows.Forms.MaskedTextBox();
this.timeToFocusLeaderRaceStart = new System.Windows.Forms.MaskedTextBox();
this.battleSwitchTimeInput = new System.Windows.Forms.MaskedTextBox();
this.cameraSwitchTimeInput = new System.Windows.Forms.MaskedTextBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.textBoxSettingDescription = new System.Windows.Forms.TextBox();
this.tabPageIncidents = new System.Windows.Forms.TabPage();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.input_IgnoreIncidentBelow = new System.Windows.Forms.MaskedTextBox();
this.input_IncidentScanWait = new System.Windows.Forms.MaskedTextBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.checkBoxIgnoreCarsInPitsDuringStart = new System.Windows.Forms.CheckBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.checkBox_IgnoreIncidentsCapture = new System.Windows.Forms.CheckBox();
this.tabPageDrivers = new System.Windows.Forms.TabPage();
this.groupBox_Drivers = new System.Windows.Forms.GroupBox();
this.listBox_PreferedDriverNames = new System.Windows.Forms.ListBox();
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.checkBox_PerferedDriversOnly = new System.Windows.Forms.CheckBox();
this.ok_button = new System.Windows.Forms.Button();
this.cancel_button = new System.Windows.Forms.Button();
this.incidents_settings_tab.SuspendLayout();
this.tabPageTiming.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabPageIncidents.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.tabPageDrivers.SuspendLayout();
this.groupBox_Drivers.SuspendLayout();
this.groupBox6.SuspendLayout();
this.SuspendLayout();
//
// incidents_settings_tab
//
this.incidents_settings_tab.Controls.Add(this.tabPageTiming);
this.incidents_settings_tab.Controls.Add(this.tabPageIncidents);
this.incidents_settings_tab.Controls.Add(this.tabPageDrivers);
this.incidents_settings_tab.Location = new System.Drawing.Point(16, 18);
this.incidents_settings_tab.Margin = new System.Windows.Forms.Padding(4);
this.incidents_settings_tab.Name = "incidents_settings_tab";
this.incidents_settings_tab.SelectedIndex = 0;
this.incidents_settings_tab.Size = new System.Drawing.Size(520, 564);
this.incidents_settings_tab.TabIndex = 0;
//
// tabPageTiming
//
this.tabPageTiming.Controls.Add(this.groupBox1);
this.tabPageTiming.Controls.Add(this.groupBox2);
this.tabPageTiming.Location = new System.Drawing.Point(4, 28);
this.tabPageTiming.Margin = new System.Windows.Forms.Padding(4);
this.tabPageTiming.Name = "tabPageTiming";
this.tabPageTiming.Padding = new System.Windows.Forms.Padding(4);
this.tabPageTiming.Size = new System.Drawing.Size(512, 532);
this.tabPageTiming.TabIndex = 0;
this.tabPageTiming.Text = "Timing";
this.tabPageTiming.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.durationHighlight);
this.groupBox1.Controls.Add(this.timeToFocusLeaderRaceFinish);
this.groupBox1.Controls.Add(this.timeToFocusLeaderRaceStart);
this.groupBox1.Controls.Add(this.battleSwitchTimeInput);
this.groupBox1.Controls.Add(this.cameraSwitchTimeInput);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(21, 19);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
this.groupBox1.Size = new System.Drawing.Size(480, 246);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Settings";
//
// durationHighlight
//
this.durationHighlight.Location = new System.Drawing.Point(309, 175);
this.durationHighlight.Margin = new System.Windows.Forms.Padding(4);
this.durationHighlight.Mask = "000.0 sec";
this.durationHighlight.Name = "durationHighlight";
this.durationHighlight.Size = new System.Drawing.Size(132, 27);
this.durationHighlight.TabIndex = 3;
this.durationHighlight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// timeToFocusLeaderRaceFinish
//
this.timeToFocusLeaderRaceFinish.Location = new System.Drawing.Point(309, 137);
this.timeToFocusLeaderRaceFinish.Margin = new System.Windows.Forms.Padding(4);
this.timeToFocusLeaderRaceFinish.Mask = "000.0 sec";
this.timeToFocusLeaderRaceFinish.Name = "timeToFocusLeaderRaceFinish";
this.timeToFocusLeaderRaceFinish.Size = new System.Drawing.Size(132, 27);
this.timeToFocusLeaderRaceFinish.TabIndex = 3;
this.timeToFocusLeaderRaceFinish.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// timeToFocusLeaderRaceStart
//
this.timeToFocusLeaderRaceStart.Location = new System.Drawing.Point(309, 99);
this.timeToFocusLeaderRaceStart.Margin = new System.Windows.Forms.Padding(4);
this.timeToFocusLeaderRaceStart.Mask = "000.0 sec";
this.timeToFocusLeaderRaceStart.Name = "timeToFocusLeaderRaceStart";
this.timeToFocusLeaderRaceStart.Size = new System.Drawing.Size(132, 27);
this.timeToFocusLeaderRaceStart.TabIndex = 3;
this.timeToFocusLeaderRaceStart.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// battleSwitchTimeInput
//
this.battleSwitchTimeInput.Location = new System.Drawing.Point(309, 61);
this.battleSwitchTimeInput.Margin = new System.Windows.Forms.Padding(4);
this.battleSwitchTimeInput.Mask = "000.0 sec";
this.battleSwitchTimeInput.Name = "battleSwitchTimeInput";
this.battleSwitchTimeInput.Size = new System.Drawing.Size(132, 27);
this.battleSwitchTimeInput.TabIndex = 3;
this.battleSwitchTimeInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// cameraSwitchTimeInput
//
this.cameraSwitchTimeInput.Location = new System.Drawing.Point(309, 23);
this.cameraSwitchTimeInput.Margin = new System.Windows.Forms.Padding(4);
this.cameraSwitchTimeInput.Mask = "000.0 sec";
this.cameraSwitchTimeInput.Name = "cameraSwitchTimeInput";
this.cameraSwitchTimeInput.Size = new System.Drawing.Size(132, 27);
this.cameraSwitchTimeInput.TabIndex = 3;
this.cameraSwitchTimeInput.Tag = "45.0";
this.cameraSwitchTimeInput.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.cameraSwitchTimeInput.Enter += new System.EventHandler(this.cameraSwitchTimeInput_Enter);
this.cameraSwitchTimeInput.MouseHover += new System.EventHandler(this.cameraSwitchTimeInput_MouseHover);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(11, 186);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(186, 19);
this.label5.TabIndex = 1;
this.label5.Text = "Duration of Highlight Video";
this.label5.Click += new System.EventHandler(this.label1_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(11, 146);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(211, 19);
this.label4.TabIndex = 1;
this.label4.Text = "Time to track leader on last lap";
this.label4.Click += new System.EventHandler(this.label1_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(11, 107);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(222, 19);
this.label3.TabIndex = 1;
this.label3.Text = "Time to track leader at race start";
this.label3.Click += new System.EventHandler(this.label1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 67);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(204, 19);
this.label2.TabIndex = 1;
this.label2.Text = "Time between battle switches";
this.label2.Click += new System.EventHandler(this.label1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(11, 28);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(214, 19);
this.label1.TabIndex = 1;
this.label1.Text = "Time between camera switches";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.textBoxSettingDescription);
this.groupBox2.Location = new System.Drawing.Point(21, 329);
this.groupBox2.Margin = new System.Windows.Forms.Padding(4);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(4);
this.groupBox2.Size = new System.Drawing.Size(480, 164);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Description of Setting";
this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
//
// textBoxSettingDescription
//
this.textBoxSettingDescription.Location = new System.Drawing.Point(15, 29);
this.textBoxSettingDescription.Margin = new System.Windows.Forms.Padding(4);
this.textBoxSettingDescription.Multiline = true;
this.textBoxSettingDescription.Name = "textBoxSettingDescription";
this.textBoxSettingDescription.Size = new System.Drawing.Size(456, 124);
this.textBoxSettingDescription.TabIndex = 0;
this.textBoxSettingDescription.TextChanged += new System.EventHandler(this.textBoxSettingDescription_TextChanged);
//
// tabPageIncidents
//
this.tabPageIncidents.Controls.Add(this.groupBox5);
this.tabPageIncidents.Controls.Add(this.groupBox4);
this.tabPageIncidents.Controls.Add(this.groupBox3);
this.tabPageIncidents.Location = new System.Drawing.Point(4, 28);
this.tabPageIncidents.Margin = new System.Windows.Forms.Padding(4);
this.tabPageIncidents.Name = "tabPageIncidents";
this.tabPageIncidents.Padding = new System.Windows.Forms.Padding(4);
this.tabPageIncidents.Size = new System.Drawing.Size(512, 532);
this.tabPageIncidents.TabIndex = 1;
this.tabPageIncidents.Text = "Incidents";
this.tabPageIncidents.UseVisualStyleBackColor = true;
//
// groupBox5
//
this.groupBox5.Controls.Add(this.input_IgnoreIncidentBelow);
this.groupBox5.Controls.Add(this.input_IncidentScanWait);
this.groupBox5.Controls.Add(this.label7);
this.groupBox5.Controls.Add(this.label6);
this.groupBox5.Location = new System.Drawing.Point(15, 156);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(480, 119);
this.groupBox5.TabIndex = 8;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Incident Parameters";
//
// input_IgnoreIncidentBelow
//
this.input_IgnoreIncidentBelow.Location = new System.Drawing.Point(339, 61);
this.input_IgnoreIncidentBelow.Margin = new System.Windows.Forms.Padding(4);
this.input_IgnoreIncidentBelow.Mask = "000";
this.input_IgnoreIncidentBelow.Name = "input_IgnoreIncidentBelow";
this.input_IgnoreIncidentBelow.Size = new System.Drawing.Size(132, 27);
this.input_IgnoreIncidentBelow.TabIndex = 5;
this.input_IgnoreIncidentBelow.Tag = "150";
this.input_IgnoreIncidentBelow.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.input_IgnoreIncidentBelow.MaskInputRejected += new System.Windows.Forms.MaskInputRejectedEventHandler(this.maskedTextBox1_MaskInputRejected);
//
// input_IncidentScanWait
//
this.input_IncidentScanWait.Location = new System.Drawing.Point(339, 27);
this.input_IncidentScanWait.Margin = new System.Windows.Forms.Padding(4);
this.input_IncidentScanWait.Mask = "000";
this.input_IncidentScanWait.Name = "input_IncidentScanWait";
this.input_IncidentScanWait.Size = new System.Drawing.Size(132, 27);
this.input_IncidentScanWait.TabIndex = 5;
this.input_IncidentScanWait.Tag = "150";
this.input_IncidentScanWait.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(15, 66);
this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(150, 19);
this.label7.TabIndex = 4;
this.label7.Text = "Ignore Incident Below";
this.label7.Click += new System.EventHandler(this.label6_Click);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(15, 32);
this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(129, 19);
this.label6.TabIndex = 4;
this.label6.Text = "Incident Scan Wait";
this.label6.Click += new System.EventHandler(this.label6_Click);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.textBox1);
this.groupBox4.Location = new System.Drawing.Point(15, 301);
this.groupBox4.Margin = new System.Windows.Forms.Padding(4);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(4);
this.groupBox4.Size = new System.Drawing.Size(480, 164);
this.groupBox4.TabIndex = 7;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Description of Setting";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(15, 29);
this.textBox1.Margin = new System.Windows.Forms.Padding(4);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(456, 124);
this.textBox1.TabIndex = 0;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.checkBoxIgnoreCarsInPitsDuringStart);
this.groupBox3.Controls.Add(this.checkBox1);
this.groupBox3.Controls.Add(this.checkBox_IgnoreIncidentsCapture);
this.groupBox3.Location = new System.Drawing.Point(15, 21);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(480, 119);
this.groupBox3.TabIndex = 0;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "General Incidents Settings";
//
// checkBoxIgnoreCarsInPitsDuringStart
//
this.checkBoxIgnoreCarsInPitsDuringStart.AutoSize = true;
this.checkBoxIgnoreCarsInPitsDuringStart.Checked = true;
this.checkBoxIgnoreCarsInPitsDuringStart.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxIgnoreCarsInPitsDuringStart.Location = new System.Drawing.Point(15, 26);
this.checkBoxIgnoreCarsInPitsDuringStart.Name = "checkBoxIgnoreCarsInPitsDuringStart";
this.checkBoxIgnoreCarsInPitsDuringStart.Size = new System.Drawing.Size(225, 23);
this.checkBoxIgnoreCarsInPitsDuringStart.TabIndex = 0;
this.checkBoxIgnoreCarsInPitsDuringStart.Text = "Ingore Cars in Pits during Start";
this.checkBoxIgnoreCarsInPitsDuringStart.UseVisualStyleBackColor = true;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Checked = true;
this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox1.Location = new System.Drawing.Point(15, 55);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(249, 23);
this.checkBox1.TabIndex = 0;
this.checkBox1.Text = "Ingore Incidents During Race Start";
this.checkBox1.UseVisualStyleBackColor = true;
//
// checkBox_IgnoreIncidentsCapture
//
this.checkBox_IgnoreIncidentsCapture.AutoSize = true;
this.checkBox_IgnoreIncidentsCapture.Location = new System.Drawing.Point(15, 84);
this.checkBox_IgnoreIncidentsCapture.Name = "checkBox_IgnoreIncidentsCapture";
this.checkBox_IgnoreIncidentsCapture.Size = new System.Drawing.Size(187, 23);
this.checkBox_IgnoreIncidentsCapture.TabIndex = 0;
this.checkBox_IgnoreIncidentsCapture.Text = "Ingore Incidents Capture";
this.checkBox_IgnoreIncidentsCapture.UseVisualStyleBackColor = true;
//
// tabPageDrivers
//
this.tabPageDrivers.Controls.Add(this.groupBox_Drivers);
this.tabPageDrivers.Controls.Add(this.groupBox6);
this.tabPageDrivers.Location = new System.Drawing.Point(4, 28);
this.tabPageDrivers.Margin = new System.Windows.Forms.Padding(4);
this.tabPageDrivers.Name = "tabPageDrivers";
this.tabPageDrivers.Padding = new System.Windows.Forms.Padding(4);
this.tabPageDrivers.Size = new System.Drawing.Size(512, 532);
this.tabPageDrivers.TabIndex = 2;
this.tabPageDrivers.Text = "Drivers";
this.tabPageDrivers.UseVisualStyleBackColor = true;
//
// groupBox_Drivers
//
this.groupBox_Drivers.Controls.Add(this.listBox_PreferedDriverNames);
this.groupBox_Drivers.Controls.Add(this.checkedListBox1);
this.groupBox_Drivers.Enabled = false;
this.groupBox_Drivers.Location = new System.Drawing.Point(7, 116);
this.groupBox_Drivers.Name = "groupBox_Drivers";
this.groupBox_Drivers.Size = new System.Drawing.Size(480, 390);
this.groupBox_Drivers.TabIndex = 1;
this.groupBox_Drivers.TabStop = false;
this.groupBox_Drivers.Text = "Drivers";
//
// listBox_PreferedDriverNames
//
this.listBox_PreferedDriverNames.FormattingEnabled = true;
this.listBox_PreferedDriverNames.ItemHeight = 19;
this.listBox_PreferedDriverNames.Location = new System.Drawing.Point(15, 154);
this.listBox_PreferedDriverNames.Name = "listBox_PreferedDriverNames";
this.listBox_PreferedDriverNames.Size = new System.Drawing.Size(422, 80);
this.listBox_PreferedDriverNames.TabIndex = 1;
//
// checkedListBox1
//
this.checkedListBox1.FormattingEnabled = true;
this.checkedListBox1.Location = new System.Drawing.Point(15, 44);
this.checkedListBox1.Name = "checkedListBox1";
this.checkedListBox1.Size = new System.Drawing.Size(422, 92);
this.checkedListBox1.TabIndex = 0;
//
// groupBox6
//
this.groupBox6.Controls.Add(this.checkBox_PerferedDriversOnly);
this.groupBox6.Location = new System.Drawing.Point(7, 18);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(480, 79);
this.groupBox6.TabIndex = 1;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "General";
//
// checkBox_PerferedDriversOnly
//
this.checkBox_PerferedDriversOnly.AutoSize = true;
this.checkBox_PerferedDriversOnly.Location = new System.Drawing.Point(15, 26);
this.checkBox_PerferedDriversOnly.Name = "checkBox_PerferedDriversOnly";
this.checkBox_PerferedDriversOnly.Size = new System.Drawing.Size(229, 23);
this.checkBox_PerferedDriversOnly.TabIndex = 0;
this.checkBox_PerferedDriversOnly.Text = "Battles of prefered drivers only";
this.checkBox_PerferedDriversOnly.UseVisualStyleBackColor = true;
this.checkBox_PerferedDriversOnly.CheckedChanged += new System.EventHandler(this.checkBox_PerferedDriversOnly_CheckedChanged);
//
// ok_button
//
this.ok_button.Location = new System.Drawing.Point(573, 50);
this.ok_button.Margin = new System.Windows.Forms.Padding(4);
this.ok_button.Name = "ok_button";
this.ok_button.Size = new System.Drawing.Size(137, 45);
this.ok_button.TabIndex = 1;
this.ok_button.Text = "OK";
this.ok_button.UseVisualStyleBackColor = true;
this.ok_button.Click += new System.EventHandler(this.button1_Click);
//
// cancel_button
//
this.cancel_button.Location = new System.Drawing.Point(573, 114);
this.cancel_button.Margin = new System.Windows.Forms.Padding(4);
this.cancel_button.Name = "cancel_button";
this.cancel_button.Size = new System.Drawing.Size(137, 45);
this.cancel_button.TabIndex = 1;
this.cancel_button.Text = "Cancel";
this.cancel_button.UseVisualStyleBackColor = true;
this.cancel_button.Click += new System.EventHandler(this.button1_Click);
//
// AdvanceGeneralSettingsDlg
//
this.AccessibleDescription = "General_Settings_Dialog";
this.AccessibleName = "GeneralSettingsDlg";
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 19F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(755, 615);
this.Controls.Add(this.cancel_button);
this.Controls.Add(this.ok_button);
this.Controls.Add(this.incidents_settings_tab);
this.Font = new System.Drawing.Font("Calibri", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "AdvanceGeneralSettingsDlg";
this.Text = "Configure General Settings";
this.Load += new System.EventHandler(this.AdvanceGeneralSettingsDlg_Load);
this.incidents_settings_tab.ResumeLayout(false);
this.tabPageTiming.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.tabPageIncidents.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.tabPageDrivers.ResumeLayout(false);
this.groupBox_Drivers.ResumeLayout(false);
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl incidents_settings_tab;
private System.Windows.Forms.TabPage tabPageTiming;
private System.Windows.Forms.TabPage tabPageIncidents;
private System.Windows.Forms.Button ok_button;
private System.Windows.Forms.Button cancel_button;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.MaskedTextBox durationHighlight;
private System.Windows.Forms.MaskedTextBox timeToFocusLeaderRaceFinish;
private System.Windows.Forms.MaskedTextBox timeToFocusLeaderRaceStart;
private System.Windows.Forms.MaskedTextBox battleSwitchTimeInput;
private System.Windows.Forms.MaskedTextBox cameraSwitchTimeInput;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.TabPage tabPageDrivers;
private System.Windows.Forms.TextBox textBoxSettingDescription;
private System.Windows.Forms.GroupBox groupBox4;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.CheckBox checkBoxIgnoreCarsInPitsDuringStart;
private System.Windows.Forms.CheckBox checkBox1;
private System.Windows.Forms.CheckBox checkBox_IgnoreIncidentsCapture;
private System.Windows.Forms.GroupBox groupBox5;
private System.Windows.Forms.MaskedTextBox input_IncidentScanWait;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.MaskedTextBox input_IgnoreIncidentBelow;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.GroupBox groupBox_Drivers;
private System.Windows.Forms.ListBox listBox_PreferedDriverNames;
private System.Windows.Forms.CheckedListBox checkedListBox1;
private System.Windows.Forms.GroupBox groupBox6;
private System.Windows.Forms.CheckBox checkBox_PerferedDriversOnly;
}
}