File: DatabaseSettingsForm.Designer.cs

package info (click to toggle)
keepass2 2.19%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 11,496 kB
  • sloc: cs: 87,098; xml: 6,569; cpp: 311; makefile: 49; sh: 9
file content (800 lines) | stat: -rw-r--r-- 36,324 bytes parent folder | download | duplicates (2)
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
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
namespace KeePass.Forms
{
	partial class DatabaseSettingsForm
	{
		/// <summary>
		/// Erforderliche Designervariable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Verwendete Ressourcen bereinigen.
		/// </summary>
		/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
		protected override void Dispose(bool disposing)
		{
			if(disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Vom Windows Form-Designer generierter Code

		/// <summary>
		/// Erforderliche Methode für die Designerunterstützung.
		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.m_bannerImage = new System.Windows.Forms.PictureBox();
			this.m_btnOK = new System.Windows.Forms.Button();
			this.m_btnCancel = new System.Windows.Forms.Button();
			this.m_grpEncAlgo = new System.Windows.Forms.GroupBox();
			this.m_lblEncAlgoDesc = new System.Windows.Forms.Label();
			this.m_cmbEncAlgo = new System.Windows.Forms.ComboBox();
			this.m_lblTransIntro = new System.Windows.Forms.Label();
			this.m_lblTransNum = new System.Windows.Forms.Label();
			this.m_lblTransInfo = new System.Windows.Forms.Label();
			this.m_grpKeyTrans = new System.Windows.Forms.GroupBox();
			this.m_lnkCompute1SecDelay = new System.Windows.Forms.LinkLabel();
			this.m_numEncRounds = new System.Windows.Forms.NumericUpDown();
			this.m_btnHelp = new System.Windows.Forms.Button();
			this.m_ttRect = new System.Windows.Forms.ToolTip(this.components);
			this.m_lblCompressionIntro = new System.Windows.Forms.Label();
			this.m_tabMain = new System.Windows.Forms.TabControl();
			this.m_tabGeneral = new System.Windows.Forms.TabPage();
			this.m_cbColor = new System.Windows.Forms.CheckBox();
			this.m_btnColor = new System.Windows.Forms.Button();
			this.m_tbDefaultUser = new System.Windows.Forms.TextBox();
			this.m_lblDefaultUser = new System.Windows.Forms.Label();
			this.m_tbDbDesc = new KeePass.UI.PromptedTextBox();
			this.m_lblDbDesc = new System.Windows.Forms.Label();
			this.m_tbDbName = new KeePass.UI.PromptedTextBox();
			this.m_lblDbName = new System.Windows.Forms.Label();
			this.m_tabSecurity = new System.Windows.Forms.TabPage();
			this.m_lblSecIntro = new System.Windows.Forms.Label();
			this.m_tabCompression = new System.Windows.Forms.TabPage();
			this.m_lblHeaderCpAlgo = new System.Windows.Forms.Label();
			this.m_lblCpGZipPerf = new System.Windows.Forms.Label();
			this.m_lblCpGZipCp = new System.Windows.Forms.Label();
			this.m_lblCpNonePerf = new System.Windows.Forms.Label();
			this.m_lblCpNoneCp = new System.Windows.Forms.Label();
			this.m_lblHeaderPerf = new System.Windows.Forms.Label();
			this.m_lblHeaderCp = new System.Windows.Forms.Label();
			this.m_rbGZip = new System.Windows.Forms.RadioButton();
			this.m_rbNone = new System.Windows.Forms.RadioButton();
			this.m_tabRecycleBin = new System.Windows.Forms.TabPage();
			this.m_cmbRecycleBin = new System.Windows.Forms.ComboBox();
			this.m_lblRecycleBinGroup = new System.Windows.Forms.Label();
			this.m_lblRecycleBinInfo = new System.Windows.Forms.Label();
			this.m_cbRecycleBin = new System.Windows.Forms.CheckBox();
			this.m_tabAdvanced = new System.Windows.Forms.TabPage();
			this.m_grpHistory = new System.Windows.Forms.GroupBox();
			this.m_numHistoryMaxSize = new System.Windows.Forms.NumericUpDown();
			this.m_numHistoryMaxItems = new System.Windows.Forms.NumericUpDown();
			this.m_cbHistoryMaxSize = new System.Windows.Forms.CheckBox();
			this.m_cbHistoryMaxItems = new System.Windows.Forms.CheckBox();
			this.m_grpMasterKey = new System.Windows.Forms.GroupBox();
			this.m_cbKeyForce = new System.Windows.Forms.CheckBox();
			this.m_cbKeyRec = new System.Windows.Forms.CheckBox();
			this.m_numKeyForceDays = new System.Windows.Forms.NumericUpDown();
			this.m_numKeyRecDays = new System.Windows.Forms.NumericUpDown();
			this.m_grpTemplates = new System.Windows.Forms.GroupBox();
			this.m_cmbEntryTemplates = new System.Windows.Forms.ComboBox();
			this.m_lblTemplatesHint = new System.Windows.Forms.Label();
			this.m_lblEntryTemplatesGroup = new System.Windows.Forms.Label();
			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
			this.m_grpEncAlgo.SuspendLayout();
			this.m_grpKeyTrans.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numEncRounds)).BeginInit();
			this.m_tabMain.SuspendLayout();
			this.m_tabGeneral.SuspendLayout();
			this.m_tabSecurity.SuspendLayout();
			this.m_tabCompression.SuspendLayout();
			this.m_tabRecycleBin.SuspendLayout();
			this.m_tabAdvanced.SuspendLayout();
			this.m_grpHistory.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numHistoryMaxSize)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numHistoryMaxItems)).BeginInit();
			this.m_grpMasterKey.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numKeyForceDays)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numKeyRecDays)).BeginInit();
			this.m_grpTemplates.SuspendLayout();
			this.SuspendLayout();
			// 
			// m_bannerImage
			// 
			this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
			this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
			this.m_bannerImage.Name = "m_bannerImage";
			this.m_bannerImage.Size = new System.Drawing.Size(486, 60);
			this.m_bannerImage.TabIndex = 0;
			this.m_bannerImage.TabStop = false;
			// 
			// m_btnOK
			// 
			this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.m_btnOK.Location = new System.Drawing.Point(318, 399);
			this.m_btnOK.Name = "m_btnOK";
			this.m_btnOK.Size = new System.Drawing.Size(75, 23);
			this.m_btnOK.TabIndex = 1;
			this.m_btnOK.Text = "&OK";
			this.m_btnOK.UseVisualStyleBackColor = true;
			this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
			// 
			// m_btnCancel
			// 
			this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.m_btnCancel.Location = new System.Drawing.Point(399, 399);
			this.m_btnCancel.Name = "m_btnCancel";
			this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
			this.m_btnCancel.TabIndex = 2;
			this.m_btnCancel.Text = "&Cancel";
			this.m_btnCancel.UseVisualStyleBackColor = true;
			this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
			// 
			// m_grpEncAlgo
			// 
			this.m_grpEncAlgo.Controls.Add(this.m_lblEncAlgoDesc);
			this.m_grpEncAlgo.Controls.Add(this.m_cmbEncAlgo);
			this.m_grpEncAlgo.Location = new System.Drawing.Point(6, 37);
			this.m_grpEncAlgo.Name = "m_grpEncAlgo";
			this.m_grpEncAlgo.Size = new System.Drawing.Size(440, 53);
			this.m_grpEncAlgo.TabIndex = 1;
			this.m_grpEncAlgo.TabStop = false;
			this.m_grpEncAlgo.Text = "Encryption";
			// 
			// m_lblEncAlgoDesc
			// 
			this.m_lblEncAlgoDesc.AutoSize = true;
			this.m_lblEncAlgoDesc.Location = new System.Drawing.Point(6, 22);
			this.m_lblEncAlgoDesc.Name = "m_lblEncAlgoDesc";
			this.m_lblEncAlgoDesc.Size = new System.Drawing.Size(169, 13);
			this.m_lblEncAlgoDesc.TabIndex = 0;
			this.m_lblEncAlgoDesc.Text = "Database file encryption algorithm:";
			// 
			// m_cmbEncAlgo
			// 
			this.m_cmbEncAlgo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbEncAlgo.FormattingEnabled = true;
			this.m_cmbEncAlgo.Location = new System.Drawing.Point(211, 19);
			this.m_cmbEncAlgo.Name = "m_cmbEncAlgo";
			this.m_cmbEncAlgo.Size = new System.Drawing.Size(219, 21);
			this.m_cmbEncAlgo.TabIndex = 1;
			// 
			// m_lblTransIntro
			// 
			this.m_lblTransIntro.Location = new System.Drawing.Point(6, 16);
			this.m_lblTransIntro.Name = "m_lblTransIntro";
			this.m_lblTransIntro.Size = new System.Drawing.Size(428, 40);
			this.m_lblTransIntro.TabIndex = 0;
			this.m_lblTransIntro.Text = "The composite master key is transformed several times before being used as encryp" +
				"tion key for the database. This adds a constant time factor and makes dictionary" +
				" and guessing attacks harder.";
			// 
			// m_lblTransNum
			// 
			this.m_lblTransNum.AutoSize = true;
			this.m_lblTransNum.Location = new System.Drawing.Point(6, 63);
			this.m_lblTransNum.Name = "m_lblTransNum";
			this.m_lblTransNum.Size = new System.Drawing.Size(183, 13);
			this.m_lblTransNum.TabIndex = 1;
			this.m_lblTransNum.Text = "Number of key transformation rounds:";
			// 
			// m_lblTransInfo
			// 
			this.m_lblTransInfo.Location = new System.Drawing.Point(6, 103);
			this.m_lblTransInfo.Name = "m_lblTransInfo";
			this.m_lblTransInfo.Size = new System.Drawing.Size(428, 28);
			this.m_lblTransInfo.TabIndex = 4;
			this.m_lblTransInfo.Text = "The higher this number the harder are dictionary attacks. But also database loadi" +
				"ng/saving takes more time.";
			// 
			// m_grpKeyTrans
			// 
			this.m_grpKeyTrans.Controls.Add(this.m_lnkCompute1SecDelay);
			this.m_grpKeyTrans.Controls.Add(this.m_numEncRounds);
			this.m_grpKeyTrans.Controls.Add(this.m_lblTransIntro);
			this.m_grpKeyTrans.Controls.Add(this.m_lblTransInfo);
			this.m_grpKeyTrans.Controls.Add(this.m_lblTransNum);
			this.m_grpKeyTrans.Location = new System.Drawing.Point(6, 96);
			this.m_grpKeyTrans.Name = "m_grpKeyTrans";
			this.m_grpKeyTrans.Size = new System.Drawing.Size(440, 140);
			this.m_grpKeyTrans.TabIndex = 2;
			this.m_grpKeyTrans.TabStop = false;
			this.m_grpKeyTrans.Text = "Key transformation";
			// 
			// m_lnkCompute1SecDelay
			// 
			this.m_lnkCompute1SecDelay.AutoSize = true;
			this.m_lnkCompute1SecDelay.Location = new System.Drawing.Point(208, 84);
			this.m_lnkCompute1SecDelay.Name = "m_lnkCompute1SecDelay";
			this.m_lnkCompute1SecDelay.Size = new System.Drawing.Size(79, 13);
			this.m_lnkCompute1SecDelay.TabIndex = 3;
			this.m_lnkCompute1SecDelay.TabStop = true;
			this.m_lnkCompute1SecDelay.Text = "1 second delay";
			this.m_lnkCompute1SecDelay.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnLinkClicked1SecondDelayRounds);
			// 
			// m_numEncRounds
			// 
			this.m_numEncRounds.Location = new System.Drawing.Point(211, 61);
			this.m_numEncRounds.Name = "m_numEncRounds";
			this.m_numEncRounds.Size = new System.Drawing.Size(219, 20);
			this.m_numEncRounds.TabIndex = 2;
			this.m_numEncRounds.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_btnHelp
			// 
			this.m_btnHelp.Location = new System.Drawing.Point(11, 399);
			this.m_btnHelp.Name = "m_btnHelp";
			this.m_btnHelp.Size = new System.Drawing.Size(75, 23);
			this.m_btnHelp.TabIndex = 3;
			this.m_btnHelp.Text = "&Help";
			this.m_btnHelp.UseVisualStyleBackColor = true;
			this.m_btnHelp.Click += new System.EventHandler(this.OnBtnHelp);
			// 
			// m_ttRect
			// 
			this.m_ttRect.AutomaticDelay = 250;
			this.m_ttRect.AutoPopDelay = 2500;
			this.m_ttRect.InitialDelay = 250;
			this.m_ttRect.ReshowDelay = 50;
			// 
			// m_lblCompressionIntro
			// 
			this.m_lblCompressionIntro.Location = new System.Drawing.Point(3, 12);
			this.m_lblCompressionIntro.Name = "m_lblCompressionIntro";
			this.m_lblCompressionIntro.Size = new System.Drawing.Size(435, 15);
			this.m_lblCompressionIntro.TabIndex = 0;
			this.m_lblCompressionIntro.Text = "Data compression reduces the size of the database.";
			// 
			// m_tabMain
			// 
			this.m_tabMain.Controls.Add(this.m_tabGeneral);
			this.m_tabMain.Controls.Add(this.m_tabSecurity);
			this.m_tabMain.Controls.Add(this.m_tabCompression);
			this.m_tabMain.Controls.Add(this.m_tabRecycleBin);
			this.m_tabMain.Controls.Add(this.m_tabAdvanced);
			this.m_tabMain.Location = new System.Drawing.Point(12, 67);
			this.m_tabMain.Name = "m_tabMain";
			this.m_tabMain.SelectedIndex = 0;
			this.m_tabMain.Size = new System.Drawing.Size(463, 320);
			this.m_tabMain.TabIndex = 0;
			// 
			// m_tabGeneral
			// 
			this.m_tabGeneral.Controls.Add(this.m_cbColor);
			this.m_tabGeneral.Controls.Add(this.m_btnColor);
			this.m_tabGeneral.Controls.Add(this.m_tbDefaultUser);
			this.m_tabGeneral.Controls.Add(this.m_lblDefaultUser);
			this.m_tabGeneral.Controls.Add(this.m_tbDbDesc);
			this.m_tabGeneral.Controls.Add(this.m_lblDbDesc);
			this.m_tabGeneral.Controls.Add(this.m_tbDbName);
			this.m_tabGeneral.Controls.Add(this.m_lblDbName);
			this.m_tabGeneral.Location = new System.Drawing.Point(4, 22);
			this.m_tabGeneral.Name = "m_tabGeneral";
			this.m_tabGeneral.Padding = new System.Windows.Forms.Padding(3);
			this.m_tabGeneral.Size = new System.Drawing.Size(455, 294);
			this.m_tabGeneral.TabIndex = 0;
			this.m_tabGeneral.Text = "General";
			this.m_tabGeneral.UseVisualStyleBackColor = true;
			// 
			// m_cbColor
			// 
			this.m_cbColor.AutoSize = true;
			this.m_cbColor.Location = new System.Drawing.Point(6, 269);
			this.m_cbColor.Name = "m_cbColor";
			this.m_cbColor.Size = new System.Drawing.Size(137, 17);
			this.m_cbColor.TabIndex = 6;
			this.m_cbColor.Text = "Custom database color:";
			this.m_cbColor.UseVisualStyleBackColor = true;
			this.m_cbColor.CheckedChanged += new System.EventHandler(this.OnColorCheckedChanged);
			// 
			// m_btnColor
			// 
			this.m_btnColor.Location = new System.Drawing.Point(176, 265);
			this.m_btnColor.Name = "m_btnColor";
			this.m_btnColor.Size = new System.Drawing.Size(48, 23);
			this.m_btnColor.TabIndex = 7;
			this.m_btnColor.UseVisualStyleBackColor = true;
			this.m_btnColor.Click += new System.EventHandler(this.OnBtnColor);
			// 
			// m_tbDefaultUser
			// 
			this.m_tbDefaultUser.Location = new System.Drawing.Point(177, 239);
			this.m_tbDefaultUser.Name = "m_tbDefaultUser";
			this.m_tbDefaultUser.Size = new System.Drawing.Size(269, 20);
			this.m_tbDefaultUser.TabIndex = 5;
			// 
			// m_lblDefaultUser
			// 
			this.m_lblDefaultUser.AutoSize = true;
			this.m_lblDefaultUser.Location = new System.Drawing.Point(3, 242);
			this.m_lblDefaultUser.Name = "m_lblDefaultUser";
			this.m_lblDefaultUser.Size = new System.Drawing.Size(168, 13);
			this.m_lblDefaultUser.TabIndex = 4;
			this.m_lblDefaultUser.Text = "Default user name for new entries:";
			// 
			// m_tbDbDesc
			// 
			this.m_tbDbDesc.AcceptsReturn = true;
			this.m_tbDbDesc.Location = new System.Drawing.Point(6, 57);
			this.m_tbDbDesc.Multiline = true;
			this.m_tbDbDesc.Name = "m_tbDbDesc";
			this.m_tbDbDesc.PromptText = "";
			this.m_tbDbDesc.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
			this.m_tbDbDesc.Size = new System.Drawing.Size(440, 176);
			this.m_tbDbDesc.TabIndex = 3;
			// 
			// m_lblDbDesc
			// 
			this.m_lblDbDesc.AutoSize = true;
			this.m_lblDbDesc.Location = new System.Drawing.Point(3, 41);
			this.m_lblDbDesc.Name = "m_lblDbDesc";
			this.m_lblDbDesc.Size = new System.Drawing.Size(110, 13);
			this.m_lblDbDesc.TabIndex = 2;
			this.m_lblDbDesc.Text = "Database description:";
			// 
			// m_tbDbName
			// 
			this.m_tbDbName.Location = new System.Drawing.Point(94, 9);
			this.m_tbDbName.Name = "m_tbDbName";
			this.m_tbDbName.PromptText = "";
			this.m_tbDbName.Size = new System.Drawing.Size(352, 20);
			this.m_tbDbName.TabIndex = 0;
			// 
			// m_lblDbName
			// 
			this.m_lblDbName.AutoSize = true;
			this.m_lblDbName.Location = new System.Drawing.Point(3, 12);
			this.m_lblDbName.Name = "m_lblDbName";
			this.m_lblDbName.Size = new System.Drawing.Size(85, 13);
			this.m_lblDbName.TabIndex = 1;
			this.m_lblDbName.Text = "Database name:";
			// 
			// m_tabSecurity
			// 
			this.m_tabSecurity.Controls.Add(this.m_lblSecIntro);
			this.m_tabSecurity.Controls.Add(this.m_grpEncAlgo);
			this.m_tabSecurity.Controls.Add(this.m_grpKeyTrans);
			this.m_tabSecurity.Location = new System.Drawing.Point(4, 22);
			this.m_tabSecurity.Name = "m_tabSecurity";
			this.m_tabSecurity.Padding = new System.Windows.Forms.Padding(3);
			this.m_tabSecurity.Size = new System.Drawing.Size(455, 294);
			this.m_tabSecurity.TabIndex = 1;
			this.m_tabSecurity.Text = "Security";
			this.m_tabSecurity.UseVisualStyleBackColor = true;
			// 
			// m_lblSecIntro
			// 
			this.m_lblSecIntro.AutoSize = true;
			this.m_lblSecIntro.Location = new System.Drawing.Point(3, 12);
			this.m_lblSecIntro.Name = "m_lblSecIntro";
			this.m_lblSecIntro.Size = new System.Drawing.Size(277, 13);
			this.m_lblSecIntro.TabIndex = 0;
			this.m_lblSecIntro.Text = "On this page you can configure file-level security settings.";
			// 
			// m_tabCompression
			// 
			this.m_tabCompression.Controls.Add(this.m_lblHeaderCpAlgo);
			this.m_tabCompression.Controls.Add(this.m_lblCpGZipPerf);
			this.m_tabCompression.Controls.Add(this.m_lblCpGZipCp);
			this.m_tabCompression.Controls.Add(this.m_lblCpNonePerf);
			this.m_tabCompression.Controls.Add(this.m_lblCpNoneCp);
			this.m_tabCompression.Controls.Add(this.m_lblHeaderPerf);
			this.m_tabCompression.Controls.Add(this.m_lblHeaderCp);
			this.m_tabCompression.Controls.Add(this.m_rbGZip);
			this.m_tabCompression.Controls.Add(this.m_rbNone);
			this.m_tabCompression.Controls.Add(this.m_lblCompressionIntro);
			this.m_tabCompression.Location = new System.Drawing.Point(4, 22);
			this.m_tabCompression.Name = "m_tabCompression";
			this.m_tabCompression.Size = new System.Drawing.Size(455, 294);
			this.m_tabCompression.TabIndex = 2;
			this.m_tabCompression.Text = "Compression";
			this.m_tabCompression.UseVisualStyleBackColor = true;
			// 
			// m_lblHeaderCpAlgo
			// 
			this.m_lblHeaderCpAlgo.AutoSize = true;
			this.m_lblHeaderCpAlgo.Location = new System.Drawing.Point(23, 56);
			this.m_lblHeaderCpAlgo.Name = "m_lblHeaderCpAlgo";
			this.m_lblHeaderCpAlgo.Size = new System.Drawing.Size(50, 13);
			this.m_lblHeaderCpAlgo.TabIndex = 1;
			this.m_lblHeaderCpAlgo.Text = "Algorithm";
			// 
			// m_lblCpGZipPerf
			// 
			this.m_lblCpGZipPerf.AutoSize = true;
			this.m_lblCpGZipPerf.Location = new System.Drawing.Point(189, 101);
			this.m_lblCpGZipPerf.Name = "m_lblCpGZipPerf";
			this.m_lblCpGZipPerf.Size = new System.Drawing.Size(55, 13);
			this.m_lblCpGZipPerf.TabIndex = 9;
			this.m_lblCpGZipPerf.Text = "Very good";
			// 
			// m_lblCpGZipCp
			// 
			this.m_lblCpGZipCp.AutoSize = true;
			this.m_lblCpGZipCp.Location = new System.Drawing.Point(91, 101);
			this.m_lblCpGZipCp.Name = "m_lblCpGZipCp";
			this.m_lblCpGZipCp.Size = new System.Drawing.Size(52, 13);
			this.m_lblCpGZipCp.TabIndex = 8;
			this.m_lblCpGZipCp.Text = "Moderate";
			// 
			// m_lblCpNonePerf
			// 
			this.m_lblCpNonePerf.AutoSize = true;
			this.m_lblCpNonePerf.Location = new System.Drawing.Point(189, 78);
			this.m_lblCpNonePerf.Name = "m_lblCpNonePerf";
			this.m_lblCpNonePerf.Size = new System.Drawing.Size(52, 13);
			this.m_lblCpNonePerf.TabIndex = 6;
			this.m_lblCpNonePerf.Text = "Moderate";
			// 
			// m_lblCpNoneCp
			// 
			this.m_lblCpNoneCp.AutoSize = true;
			this.m_lblCpNoneCp.Location = new System.Drawing.Point(91, 78);
			this.m_lblCpNoneCp.Name = "m_lblCpNoneCp";
			this.m_lblCpNoneCp.Size = new System.Drawing.Size(83, 13);
			this.m_lblCpNoneCp.TabIndex = 5;
			this.m_lblCpNoneCp.Text = "No compression";
			// 
			// m_lblHeaderPerf
			// 
			this.m_lblHeaderPerf.AutoSize = true;
			this.m_lblHeaderPerf.Location = new System.Drawing.Point(189, 56);
			this.m_lblHeaderPerf.Name = "m_lblHeaderPerf";
			this.m_lblHeaderPerf.Size = new System.Drawing.Size(67, 13);
			this.m_lblHeaderPerf.TabIndex = 3;
			this.m_lblHeaderPerf.Text = "Performance";
			// 
			// m_lblHeaderCp
			// 
			this.m_lblHeaderCp.AutoSize = true;
			this.m_lblHeaderCp.Location = new System.Drawing.Point(91, 56);
			this.m_lblHeaderCp.Name = "m_lblHeaderCp";
			this.m_lblHeaderCp.Size = new System.Drawing.Size(67, 13);
			this.m_lblHeaderCp.TabIndex = 2;
			this.m_lblHeaderCp.Text = "Compression";
			// 
			// m_rbGZip
			// 
			this.m_rbGZip.AutoSize = true;
			this.m_rbGZip.Location = new System.Drawing.Point(6, 99);
			this.m_rbGZip.Name = "m_rbGZip";
			this.m_rbGZip.Size = new System.Drawing.Size(48, 17);
			this.m_rbGZip.TabIndex = 7;
			this.m_rbGZip.TabStop = true;
			this.m_rbGZip.Text = "GZip";
			this.m_rbGZip.UseVisualStyleBackColor = true;
			// 
			// m_rbNone
			// 
			this.m_rbNone.AutoSize = true;
			this.m_rbNone.Location = new System.Drawing.Point(6, 76);
			this.m_rbNone.Name = "m_rbNone";
			this.m_rbNone.Size = new System.Drawing.Size(51, 17);
			this.m_rbNone.TabIndex = 4;
			this.m_rbNone.TabStop = true;
			this.m_rbNone.Text = "None";
			this.m_rbNone.UseVisualStyleBackColor = true;
			// 
			// m_tabRecycleBin
			// 
			this.m_tabRecycleBin.Controls.Add(this.m_cmbRecycleBin);
			this.m_tabRecycleBin.Controls.Add(this.m_lblRecycleBinGroup);
			this.m_tabRecycleBin.Controls.Add(this.m_lblRecycleBinInfo);
			this.m_tabRecycleBin.Controls.Add(this.m_cbRecycleBin);
			this.m_tabRecycleBin.Location = new System.Drawing.Point(4, 22);
			this.m_tabRecycleBin.Name = "m_tabRecycleBin";
			this.m_tabRecycleBin.Padding = new System.Windows.Forms.Padding(3);
			this.m_tabRecycleBin.Size = new System.Drawing.Size(455, 294);
			this.m_tabRecycleBin.TabIndex = 4;
			this.m_tabRecycleBin.Text = "Recycle Bin";
			this.m_tabRecycleBin.UseVisualStyleBackColor = true;
			// 
			// m_cmbRecycleBin
			// 
			this.m_cmbRecycleBin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbRecycleBin.FormattingEnabled = true;
			this.m_cmbRecycleBin.Location = new System.Drawing.Point(6, 99);
			this.m_cmbRecycleBin.Name = "m_cmbRecycleBin";
			this.m_cmbRecycleBin.Size = new System.Drawing.Size(440, 21);
			this.m_cmbRecycleBin.TabIndex = 3;
			// 
			// m_lblRecycleBinGroup
			// 
			this.m_lblRecycleBinGroup.AutoSize = true;
			this.m_lblRecycleBinGroup.Location = new System.Drawing.Point(3, 83);
			this.m_lblRecycleBinGroup.Name = "m_lblRecycleBinGroup";
			this.m_lblRecycleBinGroup.Size = new System.Drawing.Size(96, 13);
			this.m_lblRecycleBinGroup.TabIndex = 2;
			this.m_lblRecycleBinGroup.Text = "Recycle bin group:";
			// 
			// m_lblRecycleBinInfo
			// 
			this.m_lblRecycleBinInfo.Location = new System.Drawing.Point(22, 32);
			this.m_lblRecycleBinInfo.Name = "m_lblRecycleBinInfo";
			this.m_lblRecycleBinInfo.Size = new System.Drawing.Size(424, 40);
			this.m_lblRecycleBinInfo.TabIndex = 1;
			this.m_lblRecycleBinInfo.Text = "If this option is enabled, KeePass moves entries/groups to the recycle bin group " +
				"instead of deleting them. Deleting an entry/group from the recycle bin will perm" +
				"anently remove it.";
			// 
			// m_cbRecycleBin
			// 
			this.m_cbRecycleBin.AutoSize = true;
			this.m_cbRecycleBin.Location = new System.Drawing.Point(6, 12);
			this.m_cbRecycleBin.Name = "m_cbRecycleBin";
			this.m_cbRecycleBin.Size = new System.Drawing.Size(108, 17);
			this.m_cbRecycleBin.TabIndex = 0;
			this.m_cbRecycleBin.Text = "&Use a recycle bin";
			this.m_cbRecycleBin.UseVisualStyleBackColor = true;
			// 
			// m_tabAdvanced
			// 
			this.m_tabAdvanced.Controls.Add(this.m_grpHistory);
			this.m_tabAdvanced.Controls.Add(this.m_grpMasterKey);
			this.m_tabAdvanced.Controls.Add(this.m_grpTemplates);
			this.m_tabAdvanced.Location = new System.Drawing.Point(4, 22);
			this.m_tabAdvanced.Name = "m_tabAdvanced";
			this.m_tabAdvanced.Size = new System.Drawing.Size(455, 294);
			this.m_tabAdvanced.TabIndex = 5;
			this.m_tabAdvanced.Text = "Advanced";
			this.m_tabAdvanced.UseVisualStyleBackColor = true;
			// 
			// m_grpHistory
			// 
			this.m_grpHistory.Controls.Add(this.m_numHistoryMaxSize);
			this.m_grpHistory.Controls.Add(this.m_numHistoryMaxItems);
			this.m_grpHistory.Controls.Add(this.m_cbHistoryMaxSize);
			this.m_grpHistory.Controls.Add(this.m_cbHistoryMaxItems);
			this.m_grpHistory.Location = new System.Drawing.Point(6, 117);
			this.m_grpHistory.Name = "m_grpHistory";
			this.m_grpHistory.Size = new System.Drawing.Size(440, 75);
			this.m_grpHistory.TabIndex = 1;
			this.m_grpHistory.TabStop = false;
			this.m_grpHistory.Text = "Automatic entry history maintenance";
			// 
			// m_numHistoryMaxSize
			// 
			this.m_numHistoryMaxSize.Location = new System.Drawing.Point(349, 43);
			this.m_numHistoryMaxSize.Name = "m_numHistoryMaxSize";
			this.m_numHistoryMaxSize.Size = new System.Drawing.Size(81, 20);
			this.m_numHistoryMaxSize.TabIndex = 3;
			this.m_numHistoryMaxSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_numHistoryMaxItems
			// 
			this.m_numHistoryMaxItems.Location = new System.Drawing.Point(349, 18);
			this.m_numHistoryMaxItems.Name = "m_numHistoryMaxItems";
			this.m_numHistoryMaxItems.Size = new System.Drawing.Size(81, 20);
			this.m_numHistoryMaxItems.TabIndex = 1;
			this.m_numHistoryMaxItems.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_cbHistoryMaxSize
			// 
			this.m_cbHistoryMaxSize.AutoSize = true;
			this.m_cbHistoryMaxSize.Location = new System.Drawing.Point(9, 44);
			this.m_cbHistoryMaxSize.Name = "m_cbHistoryMaxSize";
			this.m_cbHistoryMaxSize.Size = new System.Drawing.Size(173, 17);
			this.m_cbHistoryMaxSize.TabIndex = 2;
			this.m_cbHistoryMaxSize.Text = "Limit history size per entry (MB):";
			this.m_cbHistoryMaxSize.UseVisualStyleBackColor = true;
			this.m_cbHistoryMaxSize.CheckedChanged += new System.EventHandler(this.OnHistoryMaxSizeCheckedChanged);
			// 
			// m_cbHistoryMaxItems
			// 
			this.m_cbHistoryMaxItems.AutoSize = true;
			this.m_cbHistoryMaxItems.Location = new System.Drawing.Point(9, 19);
			this.m_cbHistoryMaxItems.Name = "m_cbHistoryMaxItems";
			this.m_cbHistoryMaxItems.Size = new System.Drawing.Size(204, 17);
			this.m_cbHistoryMaxItems.TabIndex = 0;
			this.m_cbHistoryMaxItems.Text = "Limit number of history items per entry:";
			this.m_cbHistoryMaxItems.UseVisualStyleBackColor = true;
			this.m_cbHistoryMaxItems.CheckedChanged += new System.EventHandler(this.OnHistoryMaxItemsCheckedChanged);
			// 
			// m_grpMasterKey
			// 
			this.m_grpMasterKey.Controls.Add(this.m_cbKeyForce);
			this.m_grpMasterKey.Controls.Add(this.m_cbKeyRec);
			this.m_grpMasterKey.Controls.Add(this.m_numKeyForceDays);
			this.m_grpMasterKey.Controls.Add(this.m_numKeyRecDays);
			this.m_grpMasterKey.Location = new System.Drawing.Point(6, 198);
			this.m_grpMasterKey.Name = "m_grpMasterKey";
			this.m_grpMasterKey.Size = new System.Drawing.Size(440, 75);
			this.m_grpMasterKey.TabIndex = 2;
			this.m_grpMasterKey.TabStop = false;
			this.m_grpMasterKey.Text = "Master key";
			// 
			// m_cbKeyForce
			// 
			this.m_cbKeyForce.AutoSize = true;
			this.m_cbKeyForce.Location = new System.Drawing.Point(9, 44);
			this.m_cbKeyForce.Name = "m_cbKeyForce";
			this.m_cbKeyForce.Size = new System.Drawing.Size(172, 17);
			this.m_cbKeyForce.TabIndex = 2;
			this.m_cbKeyForce.Text = "Force changing the key (days):";
			this.m_cbKeyForce.UseVisualStyleBackColor = true;
			this.m_cbKeyForce.CheckedChanged += new System.EventHandler(this.OnKeyForceCheckedChanged);
			// 
			// m_cbKeyRec
			// 
			this.m_cbKeyRec.AutoSize = true;
			this.m_cbKeyRec.Location = new System.Drawing.Point(9, 19);
			this.m_cbKeyRec.Name = "m_cbKeyRec";
			this.m_cbKeyRec.Size = new System.Drawing.Size(205, 17);
			this.m_cbKeyRec.TabIndex = 0;
			this.m_cbKeyRec.Text = "Recommend changing the key (days):";
			this.m_cbKeyRec.UseVisualStyleBackColor = true;
			this.m_cbKeyRec.CheckedChanged += new System.EventHandler(this.OnKeyRecCheckedChanged);
			// 
			// m_numKeyForceDays
			// 
			this.m_numKeyForceDays.Location = new System.Drawing.Point(349, 43);
			this.m_numKeyForceDays.Name = "m_numKeyForceDays";
			this.m_numKeyForceDays.Size = new System.Drawing.Size(81, 20);
			this.m_numKeyForceDays.TabIndex = 3;
			this.m_numKeyForceDays.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_numKeyRecDays
			// 
			this.m_numKeyRecDays.Location = new System.Drawing.Point(349, 18);
			this.m_numKeyRecDays.Name = "m_numKeyRecDays";
			this.m_numKeyRecDays.Size = new System.Drawing.Size(81, 20);
			this.m_numKeyRecDays.TabIndex = 1;
			this.m_numKeyRecDays.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_grpTemplates
			// 
			this.m_grpTemplates.Controls.Add(this.m_cmbEntryTemplates);
			this.m_grpTemplates.Controls.Add(this.m_lblTemplatesHint);
			this.m_grpTemplates.Controls.Add(this.m_lblEntryTemplatesGroup);
			this.m_grpTemplates.Location = new System.Drawing.Point(6, 7);
			this.m_grpTemplates.Name = "m_grpTemplates";
			this.m_grpTemplates.Size = new System.Drawing.Size(440, 104);
			this.m_grpTemplates.TabIndex = 0;
			this.m_grpTemplates.TabStop = false;
			this.m_grpTemplates.Text = "Templates";
			// 
			// m_cmbEntryTemplates
			// 
			this.m_cmbEntryTemplates.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbEntryTemplates.FormattingEnabled = true;
			this.m_cmbEntryTemplates.Location = new System.Drawing.Point(9, 35);
			this.m_cmbEntryTemplates.Name = "m_cmbEntryTemplates";
			this.m_cmbEntryTemplates.Size = new System.Drawing.Size(421, 21);
			this.m_cmbEntryTemplates.TabIndex = 1;
			// 
			// m_lblTemplatesHint
			// 
			this.m_lblTemplatesHint.Location = new System.Drawing.Point(6, 68);
			this.m_lblTemplatesHint.Name = "m_lblTemplatesHint";
			this.m_lblTemplatesHint.Size = new System.Drawing.Size(424, 28);
			this.m_lblTemplatesHint.TabIndex = 2;
			this.m_lblTemplatesHint.Text = "Click the drop-down arrow of the \'Add Entry\' toolbar button in the main window to" +
				" create a new entry based on a template in the group above.";
			// 
			// m_lblEntryTemplatesGroup
			// 
			this.m_lblEntryTemplatesGroup.AutoSize = true;
			this.m_lblEntryTemplatesGroup.Location = new System.Drawing.Point(6, 19);
			this.m_lblEntryTemplatesGroup.Name = "m_lblEntryTemplatesGroup";
			this.m_lblEntryTemplatesGroup.Size = new System.Drawing.Size(112, 13);
			this.m_lblEntryTemplatesGroup.TabIndex = 0;
			this.m_lblEntryTemplatesGroup.Text = "Entry templates group:";
			// 
			// DatabaseSettingsForm
			// 
			this.AcceptButton = this.m_btnOK;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.m_btnCancel;
			this.ClientSize = new System.Drawing.Size(486, 434);
			this.Controls.Add(this.m_tabMain);
			this.Controls.Add(this.m_btnHelp);
			this.Controls.Add(this.m_bannerImage);
			this.Controls.Add(this.m_btnOK);
			this.Controls.Add(this.m_btnCancel);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "DatabaseSettingsForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "<DYN>";
			this.Load += new System.EventHandler(this.OnFormLoad);
			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
			this.m_grpEncAlgo.ResumeLayout(false);
			this.m_grpEncAlgo.PerformLayout();
			this.m_grpKeyTrans.ResumeLayout(false);
			this.m_grpKeyTrans.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numEncRounds)).EndInit();
			this.m_tabMain.ResumeLayout(false);
			this.m_tabGeneral.ResumeLayout(false);
			this.m_tabGeneral.PerformLayout();
			this.m_tabSecurity.ResumeLayout(false);
			this.m_tabSecurity.PerformLayout();
			this.m_tabCompression.ResumeLayout(false);
			this.m_tabCompression.PerformLayout();
			this.m_tabRecycleBin.ResumeLayout(false);
			this.m_tabRecycleBin.PerformLayout();
			this.m_tabAdvanced.ResumeLayout(false);
			this.m_grpHistory.ResumeLayout(false);
			this.m_grpHistory.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numHistoryMaxSize)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numHistoryMaxItems)).EndInit();
			this.m_grpMasterKey.ResumeLayout(false);
			this.m_grpMasterKey.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numKeyForceDays)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numKeyRecDays)).EndInit();
			this.m_grpTemplates.ResumeLayout(false);
			this.m_grpTemplates.PerformLayout();
			this.ResumeLayout(false);

		}

		#endregion

		private System.Windows.Forms.PictureBox m_bannerImage;
		private System.Windows.Forms.Button m_btnOK;
		private System.Windows.Forms.Button m_btnCancel;
		private System.Windows.Forms.GroupBox m_grpEncAlgo;
		private System.Windows.Forms.ComboBox m_cmbEncAlgo;
		private System.Windows.Forms.Label m_lblEncAlgoDesc;
		private System.Windows.Forms.Label m_lblTransNum;
		private System.Windows.Forms.Label m_lblTransIntro;
		private System.Windows.Forms.Label m_lblTransInfo;
		private System.Windows.Forms.GroupBox m_grpKeyTrans;
		private System.Windows.Forms.NumericUpDown m_numEncRounds;
		private System.Windows.Forms.Button m_btnHelp;
		private System.Windows.Forms.LinkLabel m_lnkCompute1SecDelay;
		private System.Windows.Forms.ToolTip m_ttRect;
		private System.Windows.Forms.Label m_lblCompressionIntro;
		private System.Windows.Forms.TabControl m_tabMain;
		private System.Windows.Forms.TabPage m_tabGeneral;
		private System.Windows.Forms.TabPage m_tabSecurity;
		private System.Windows.Forms.TabPage m_tabCompression;
		private KeePass.UI.PromptedTextBox m_tbDbDesc;
		private System.Windows.Forms.Label m_lblDbDesc;
		private KeePass.UI.PromptedTextBox m_tbDbName;
		private System.Windows.Forms.Label m_lblDbName;
		private System.Windows.Forms.Label m_lblSecIntro;
		private System.Windows.Forms.RadioButton m_rbGZip;
		private System.Windows.Forms.RadioButton m_rbNone;
		private System.Windows.Forms.Label m_lblCpNonePerf;
		private System.Windows.Forms.Label m_lblCpNoneCp;
		private System.Windows.Forms.Label m_lblHeaderPerf;
		private System.Windows.Forms.Label m_lblHeaderCp;
		private System.Windows.Forms.Label m_lblCpGZipPerf;
		private System.Windows.Forms.Label m_lblCpGZipCp;
		private System.Windows.Forms.Label m_lblHeaderCpAlgo;
		private System.Windows.Forms.TextBox m_tbDefaultUser;
		private System.Windows.Forms.Label m_lblDefaultUser;
		private System.Windows.Forms.TabPage m_tabRecycleBin;
		private System.Windows.Forms.Label m_lblRecycleBinInfo;
		private System.Windows.Forms.CheckBox m_cbRecycleBin;
		private System.Windows.Forms.ComboBox m_cmbRecycleBin;
		private System.Windows.Forms.Label m_lblRecycleBinGroup;
		private System.Windows.Forms.TabPage m_tabAdvanced;
		private System.Windows.Forms.ComboBox m_cmbEntryTemplates;
		private System.Windows.Forms.Label m_lblEntryTemplatesGroup;
		private System.Windows.Forms.Label m_lblTemplatesHint;
		private System.Windows.Forms.GroupBox m_grpTemplates;
		private System.Windows.Forms.GroupBox m_grpMasterKey;
		private System.Windows.Forms.CheckBox m_cbKeyForce;
		private System.Windows.Forms.CheckBox m_cbKeyRec;
		private System.Windows.Forms.NumericUpDown m_numKeyForceDays;
		private System.Windows.Forms.NumericUpDown m_numKeyRecDays;
		private System.Windows.Forms.GroupBox m_grpHistory;
		private System.Windows.Forms.CheckBox m_cbHistoryMaxItems;
		private System.Windows.Forms.NumericUpDown m_numHistoryMaxSize;
		private System.Windows.Forms.NumericUpDown m_numHistoryMaxItems;
		private System.Windows.Forms.CheckBox m_cbHistoryMaxSize;
		private System.Windows.Forms.Button m_btnColor;
		private System.Windows.Forms.CheckBox m_cbColor;
	}
}