File: OptionsForm.Designer.cs

package info (click to toggle)
keepass2 2.60%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,892 kB
  • sloc: cs: 119,878; xml: 6,087; ansic: 2,033; cpp: 738; sh: 50; makefile: 42
file content (978 lines) | stat: -rw-r--r-- 44,814 bytes parent folder | download | duplicates (3)
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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
namespace KeePass.Forms
{
	partial class OptionsForm
	{
		/// <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_tabMain = new System.Windows.Forms.TabControl();
			this.m_tabSecurity = new System.Windows.Forms.TabPage();
			this.m_linkSecOptAdm = new System.Windows.Forms.LinkLabel();
			this.m_linkSecOptEx = new System.Windows.Forms.LinkLabel();
			this.m_lblSecOpt = new System.Windows.Forms.Label();
			this.m_numLockAfterGlobalTime = new System.Windows.Forms.NumericUpDown();
			this.m_cbLockAfterGlobalTime = new System.Windows.Forms.CheckBox();
			this.m_lvSecurityOptions = new KeePass.UI.CustomListViewEx();
			this.m_numClipClearTime = new System.Windows.Forms.NumericUpDown();
			this.m_cbClipClearTime = new System.Windows.Forms.CheckBox();
			this.m_numDefaultExpireDays = new System.Windows.Forms.NumericUpDown();
			this.m_cbDefaultExpireDays = new System.Windows.Forms.CheckBox();
			this.m_cbLockAfterTime = new System.Windows.Forms.CheckBox();
			this.m_numLockAfterTime = new System.Windows.Forms.NumericUpDown();
			this.m_tabPolicy = new System.Windows.Forms.TabPage();
			this.m_lvPolicy = new KeePass.UI.CustomListViewEx();
			this.m_linkPolicyInfo = new System.Windows.Forms.LinkLabel();
			this.m_lblPolicyMore = new System.Windows.Forms.Label();
			this.m_lblPolicyRestart = new System.Windows.Forms.Label();
			this.m_lblPolicyIntro = new System.Windows.Forms.Label();
			this.m_tabGui1 = new System.Windows.Forms.TabPage();
			this.m_lvGuiOptions = new KeePass.UI.CustomListViewEx();
			this.m_tabGui2 = new System.Windows.Forms.TabPage();
			this.m_grpIntAdv = new System.Windows.Forms.GroupBox();
			this.m_lblEscAction = new System.Windows.Forms.Label();
			this.m_lblMruCount = new System.Windows.Forms.Label();
			this.m_numMruCount = new System.Windows.Forms.NumericUpDown();
			this.m_cmbEscAction = new System.Windows.Forms.ComboBox();
			this.m_grpFonts = new System.Windows.Forms.GroupBox();
			this.m_linkMainFont = new System.Windows.Forms.LinkLabel();
			this.m_cbListFont = new System.Windows.Forms.CheckBox();
			this.m_btnListFont = new System.Windows.Forms.Button();
			this.m_btnPasswordFont = new System.Windows.Forms.Button();
			this.m_cbPasswordFont = new System.Windows.Forms.CheckBox();
			this.m_grpStyles = new System.Windows.Forms.GroupBox();
			this.m_cmbAltColor = new System.Windows.Forms.ComboBox();
			this.m_lblAltColor = new System.Windows.Forms.Label();
			this.m_linkTheme = new System.Windows.Forms.LinkLabel();
			this.m_cmbMenuStyle = new System.Windows.Forms.ComboBox();
			this.m_btnAltColor = new KeePass.UI.ColorButtonEx();
			this.m_cmbBannerStyle = new System.Windows.Forms.ComboBox();
			this.m_lblBannerStyle = new System.Windows.Forms.Label();
			this.m_lblMenuStyle = new System.Windows.Forms.Label();
			this.m_tabIntegration = new System.Windows.Forms.TabPage();
			this.m_btnHelpSource = new System.Windows.Forms.Button();
			this.m_btnSchemeOverrides = new System.Windows.Forms.Button();
			this.m_cbAutoRun = new System.Windows.Forms.CheckBox();
			this.m_grpFileExt = new System.Windows.Forms.GroupBox();
			this.m_btnFileExtRemove = new System.Windows.Forms.Button();
			this.m_btnFileExtCreate = new System.Windows.Forms.Button();
			this.m_lblFileExtHint = new System.Windows.Forms.Label();
			this.m_grpHotKeys = new System.Windows.Forms.GroupBox();
			this.m_lblAutoTypePassword = new System.Windows.Forms.Label();
			this.m_hkAutoTypePassword = new KeePass.UI.HotKeyControlEx();
			this.m_linkHotKeyHelp = new System.Windows.Forms.LinkLabel();
			this.m_lblAutoTypeSelected = new System.Windows.Forms.Label();
			this.m_hkAutoTypeSelected = new KeePass.UI.HotKeyControlEx();
			this.m_hkShowWindow = new KeePass.UI.HotKeyControlEx();
			this.m_lblAutoType = new System.Windows.Forms.Label();
			this.m_lblShowWindow = new System.Windows.Forms.Label();
			this.m_hkAutoType = new KeePass.UI.HotKeyControlEx();
			this.m_tabAdvanced = new System.Windows.Forms.TabPage();
			this.m_btnProxy = new System.Windows.Forms.Button();
			this.m_lvAdvanced = new KeePass.UI.CustomListViewEx();
			this.m_ttRect = new System.Windows.Forms.ToolTip(this.components);
			this.m_tbSearch = new KeePass.UI.UIElementSearchBoxEx();
			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
			this.m_tabMain.SuspendLayout();
			this.m_tabSecurity.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numLockAfterGlobalTime)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numClipClearTime)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numDefaultExpireDays)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numLockAfterTime)).BeginInit();
			this.m_tabPolicy.SuspendLayout();
			this.m_tabGui1.SuspendLayout();
			this.m_tabGui2.SuspendLayout();
			this.m_grpIntAdv.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numMruCount)).BeginInit();
			this.m_grpFonts.SuspendLayout();
			this.m_grpStyles.SuspendLayout();
			this.m_tabIntegration.SuspendLayout();
			this.m_grpFileExt.SuspendLayout();
			this.m_grpHotKeys.SuspendLayout();
			this.m_tabAdvanced.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(586, 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(418, 436);
			this.m_btnOK.Name = "m_btnOK";
			this.m_btnOK.Size = new System.Drawing.Size(75, 23);
			this.m_btnOK.TabIndex = 0;
			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(499, 436);
			this.m_btnCancel.Name = "m_btnCancel";
			this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
			this.m_btnCancel.TabIndex = 1;
			this.m_btnCancel.Text = "Cancel";
			this.m_btnCancel.UseVisualStyleBackColor = true;
			this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
			// 
			// m_tabMain
			// 
			this.m_tabMain.Controls.Add(this.m_tabSecurity);
			this.m_tabMain.Controls.Add(this.m_tabPolicy);
			this.m_tabMain.Controls.Add(this.m_tabGui1);
			this.m_tabMain.Controls.Add(this.m_tabGui2);
			this.m_tabMain.Controls.Add(this.m_tabIntegration);
			this.m_tabMain.Controls.Add(this.m_tabAdvanced);
			this.m_tabMain.Location = new System.Drawing.Point(12, 66);
			this.m_tabMain.Name = "m_tabMain";
			this.m_tabMain.SelectedIndex = 0;
			this.m_tabMain.Size = new System.Drawing.Size(562, 364);
			this.m_tabMain.TabIndex = 2;
			// 
			// m_tabSecurity
			// 
			this.m_tabSecurity.Controls.Add(this.m_linkSecOptAdm);
			this.m_tabSecurity.Controls.Add(this.m_linkSecOptEx);
			this.m_tabSecurity.Controls.Add(this.m_lblSecOpt);
			this.m_tabSecurity.Controls.Add(this.m_numLockAfterGlobalTime);
			this.m_tabSecurity.Controls.Add(this.m_cbLockAfterGlobalTime);
			this.m_tabSecurity.Controls.Add(this.m_lvSecurityOptions);
			this.m_tabSecurity.Controls.Add(this.m_numClipClearTime);
			this.m_tabSecurity.Controls.Add(this.m_cbClipClearTime);
			this.m_tabSecurity.Controls.Add(this.m_numDefaultExpireDays);
			this.m_tabSecurity.Controls.Add(this.m_cbDefaultExpireDays);
			this.m_tabSecurity.Controls.Add(this.m_cbLockAfterTime);
			this.m_tabSecurity.Controls.Add(this.m_numLockAfterTime);
			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(554, 338);
			this.m_tabSecurity.TabIndex = 0;
			this.m_tabSecurity.Text = "Security";
			this.m_tabSecurity.UseVisualStyleBackColor = true;
			// 
			// m_linkSecOptAdm
			// 
			this.m_linkSecOptAdm.AutoSize = true;
			this.m_linkSecOptAdm.Location = new System.Drawing.Point(184, 316);
			this.m_linkSecOptAdm.Name = "m_linkSecOptAdm";
			this.m_linkSecOptAdm.Size = new System.Drawing.Size(89, 13);
			this.m_linkSecOptAdm.TabIndex = 11;
			this.m_linkSecOptAdm.TabStop = true;
			this.m_linkSecOptAdm.Text = "For administrators";
			this.m_linkSecOptAdm.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnSecOptAdmLinkClicked);
			// 
			// m_linkSecOptEx
			// 
			this.m_linkSecOptEx.AutoSize = true;
			this.m_linkSecOptEx.Location = new System.Drawing.Point(119, 316);
			this.m_linkSecOptEx.Name = "m_linkSecOptEx";
			this.m_linkSecOptEx.Size = new System.Drawing.Size(59, 13);
			this.m_linkSecOptEx.TabIndex = 10;
			this.m_linkSecOptEx.TabStop = true;
			this.m_linkSecOptEx.Text = "For experts";
			this.m_linkSecOptEx.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnSecOptExLinkClicked);
			// 
			// m_lblSecOpt
			// 
			this.m_lblSecOpt.AutoSize = true;
			this.m_lblSecOpt.Location = new System.Drawing.Point(3, 316);
			this.m_lblSecOpt.Name = "m_lblSecOpt";
			this.m_lblSecOpt.Size = new System.Drawing.Size(110, 13);
			this.m_lblSecOpt.TabIndex = 9;
			this.m_lblSecOpt.Text = "More security options:";
			// 
			// m_numLockAfterGlobalTime
			// 
			this.m_numLockAfterGlobalTime.Location = new System.Drawing.Point(327, 37);
			this.m_numLockAfterGlobalTime.Maximum = new decimal(new int[] {
            1209600,
            0,
            0,
            0});
			this.m_numLockAfterGlobalTime.Name = "m_numLockAfterGlobalTime";
			this.m_numLockAfterGlobalTime.Size = new System.Drawing.Size(66, 20);
			this.m_numLockAfterGlobalTime.TabIndex = 3;
			// 
			// m_cbLockAfterGlobalTime
			// 
			this.m_cbLockAfterGlobalTime.AutoSize = true;
			this.m_cbLockAfterGlobalTime.Location = new System.Drawing.Point(6, 38);
			this.m_cbLockAfterGlobalTime.Name = "m_cbLockAfterGlobalTime";
			this.m_cbLockAfterGlobalTime.Size = new System.Drawing.Size(38, 17);
			this.m_cbLockAfterGlobalTime.TabIndex = 2;
			this.m_cbLockAfterGlobalTime.Text = "<>";
			this.m_cbLockAfterGlobalTime.UseVisualStyleBackColor = true;
			this.m_cbLockAfterGlobalTime.CheckedChanged += new System.EventHandler(this.OnLockAfterGlobalTimeCheckedChanged);
			// 
			// m_lvSecurityOptions
			// 
			this.m_lvSecurityOptions.CheckBoxes = true;
			this.m_lvSecurityOptions.FullRowSelect = true;
			this.m_lvSecurityOptions.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
			this.m_lvSecurityOptions.Location = new System.Drawing.Point(6, 115);
			this.m_lvSecurityOptions.Name = "m_lvSecurityOptions";
			this.m_lvSecurityOptions.ShowItemToolTips = true;
			this.m_lvSecurityOptions.Size = new System.Drawing.Size(540, 194);
			this.m_lvSecurityOptions.TabIndex = 8;
			this.m_lvSecurityOptions.UseCompatibleStateImageBehavior = false;
			this.m_lvSecurityOptions.View = System.Windows.Forms.View.Details;
			// 
			// m_numClipClearTime
			// 
			this.m_numClipClearTime.Location = new System.Drawing.Point(327, 63);
			this.m_numClipClearTime.Maximum = new decimal(new int[] {
            1209600,
            0,
            0,
            0});
			this.m_numClipClearTime.Name = "m_numClipClearTime";
			this.m_numClipClearTime.Size = new System.Drawing.Size(66, 20);
			this.m_numClipClearTime.TabIndex = 5;
			// 
			// m_cbClipClearTime
			// 
			this.m_cbClipClearTime.AutoSize = true;
			this.m_cbClipClearTime.Location = new System.Drawing.Point(6, 64);
			this.m_cbClipClearTime.Name = "m_cbClipClearTime";
			this.m_cbClipClearTime.Size = new System.Drawing.Size(38, 17);
			this.m_cbClipClearTime.TabIndex = 4;
			this.m_cbClipClearTime.Text = "<>";
			this.m_cbClipClearTime.UseVisualStyleBackColor = true;
			this.m_cbClipClearTime.CheckedChanged += new System.EventHandler(this.OnClipboardClearTimeCheckedChanged);
			// 
			// m_numDefaultExpireDays
			// 
			this.m_numDefaultExpireDays.Location = new System.Drawing.Point(327, 89);
			this.m_numDefaultExpireDays.Maximum = new decimal(new int[] {
            2920,
            0,
            0,
            0});
			this.m_numDefaultExpireDays.Name = "m_numDefaultExpireDays";
			this.m_numDefaultExpireDays.Size = new System.Drawing.Size(66, 20);
			this.m_numDefaultExpireDays.TabIndex = 7;
			// 
			// m_cbDefaultExpireDays
			// 
			this.m_cbDefaultExpireDays.AutoSize = true;
			this.m_cbDefaultExpireDays.Location = new System.Drawing.Point(6, 90);
			this.m_cbDefaultExpireDays.Name = "m_cbDefaultExpireDays";
			this.m_cbDefaultExpireDays.Size = new System.Drawing.Size(38, 17);
			this.m_cbDefaultExpireDays.TabIndex = 6;
			this.m_cbDefaultExpireDays.Text = "<>";
			this.m_cbDefaultExpireDays.UseVisualStyleBackColor = true;
			this.m_cbDefaultExpireDays.CheckedChanged += new System.EventHandler(this.OnDefaultExpireDaysCheckedChanged);
			// 
			// m_cbLockAfterTime
			// 
			this.m_cbLockAfterTime.AutoSize = true;
			this.m_cbLockAfterTime.Location = new System.Drawing.Point(6, 12);
			this.m_cbLockAfterTime.Name = "m_cbLockAfterTime";
			this.m_cbLockAfterTime.Size = new System.Drawing.Size(38, 17);
			this.m_cbLockAfterTime.TabIndex = 0;
			this.m_cbLockAfterTime.Text = "<>";
			this.m_cbLockAfterTime.UseVisualStyleBackColor = true;
			this.m_cbLockAfterTime.CheckedChanged += new System.EventHandler(this.OnLockAfterTimeCheckedChanged);
			// 
			// m_numLockAfterTime
			// 
			this.m_numLockAfterTime.Location = new System.Drawing.Point(327, 11);
			this.m_numLockAfterTime.Maximum = new decimal(new int[] {
            1209600,
            0,
            0,
            0});
			this.m_numLockAfterTime.Name = "m_numLockAfterTime";
			this.m_numLockAfterTime.Size = new System.Drawing.Size(66, 20);
			this.m_numLockAfterTime.TabIndex = 1;
			// 
			// m_tabPolicy
			// 
			this.m_tabPolicy.Controls.Add(this.m_lvPolicy);
			this.m_tabPolicy.Controls.Add(this.m_linkPolicyInfo);
			this.m_tabPolicy.Controls.Add(this.m_lblPolicyMore);
			this.m_tabPolicy.Controls.Add(this.m_lblPolicyRestart);
			this.m_tabPolicy.Controls.Add(this.m_lblPolicyIntro);
			this.m_tabPolicy.Location = new System.Drawing.Point(4, 22);
			this.m_tabPolicy.Name = "m_tabPolicy";
			this.m_tabPolicy.Size = new System.Drawing.Size(554, 338);
			this.m_tabPolicy.TabIndex = 3;
			this.m_tabPolicy.Text = "<>";
			this.m_tabPolicy.UseVisualStyleBackColor = true;
			// 
			// m_lvPolicy
			// 
			this.m_lvPolicy.CheckBoxes = true;
			this.m_lvPolicy.FullRowSelect = true;
			this.m_lvPolicy.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.m_lvPolicy.Location = new System.Drawing.Point(6, 46);
			this.m_lvPolicy.Name = "m_lvPolicy";
			this.m_lvPolicy.ShowItemToolTips = true;
			this.m_lvPolicy.Size = new System.Drawing.Size(540, 263);
			this.m_lvPolicy.TabIndex = 3;
			this.m_lvPolicy.UseCompatibleStateImageBehavior = false;
			this.m_lvPolicy.View = System.Windows.Forms.View.Details;
			// 
			// m_linkPolicyInfo
			// 
			this.m_linkPolicyInfo.AutoSize = true;
			this.m_linkPolicyInfo.Location = new System.Drawing.Point(97, 26);
			this.m_linkPolicyInfo.Name = "m_linkPolicyInfo";
			this.m_linkPolicyInfo.Size = new System.Drawing.Size(115, 13);
			this.m_linkPolicyInfo.TabIndex = 2;
			this.m_linkPolicyInfo.TabStop = true;
			this.m_linkPolicyInfo.Text = "Application Policy Help";
			this.m_linkPolicyInfo.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnPolicyInfoLinkClicked);
			// 
			// m_lblPolicyMore
			// 
			this.m_lblPolicyMore.AutoSize = true;
			this.m_lblPolicyMore.Location = new System.Drawing.Point(3, 26);
			this.m_lblPolicyMore.Name = "m_lblPolicyMore";
			this.m_lblPolicyMore.Size = new System.Drawing.Size(88, 13);
			this.m_lblPolicyMore.TabIndex = 1;
			this.m_lblPolicyMore.Text = "More information:";
			// 
			// m_lblPolicyRestart
			// 
			this.m_lblPolicyRestart.AutoSize = true;
			this.m_lblPolicyRestart.Location = new System.Drawing.Point(3, 316);
			this.m_lblPolicyRestart.Name = "m_lblPolicyRestart";
			this.m_lblPolicyRestart.Size = new System.Drawing.Size(241, 13);
			this.m_lblPolicyRestart.TabIndex = 4;
			this.m_lblPolicyRestart.Text = "* Changing the policy requires restarting KeePass.";
			// 
			// m_lblPolicyIntro
			// 
			this.m_lblPolicyIntro.Location = new System.Drawing.Point(3, 9);
			this.m_lblPolicyIntro.Name = "m_lblPolicyIntro";
			this.m_lblPolicyIntro.Size = new System.Drawing.Size(548, 14);
			this.m_lblPolicyIntro.TabIndex = 0;
			this.m_lblPolicyIntro.Text = "The application policy defines which security-critical operations are allowed and" +
				" which are not.";
			// 
			// m_tabGui1
			// 
			this.m_tabGui1.Controls.Add(this.m_lvGuiOptions);
			this.m_tabGui1.Location = new System.Drawing.Point(4, 22);
			this.m_tabGui1.Name = "m_tabGui1";
			this.m_tabGui1.Size = new System.Drawing.Size(554, 338);
			this.m_tabGui1.TabIndex = 2;
			this.m_tabGui1.Text = "Interface (1)";
			this.m_tabGui1.UseVisualStyleBackColor = true;
			// 
			// m_lvGuiOptions
			// 
			this.m_lvGuiOptions.CheckBoxes = true;
			this.m_lvGuiOptions.FullRowSelect = true;
			this.m_lvGuiOptions.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
			this.m_lvGuiOptions.Location = new System.Drawing.Point(6, 12);
			this.m_lvGuiOptions.Name = "m_lvGuiOptions";
			this.m_lvGuiOptions.ShowItemToolTips = true;
			this.m_lvGuiOptions.Size = new System.Drawing.Size(540, 317);
			this.m_lvGuiOptions.TabIndex = 0;
			this.m_lvGuiOptions.UseCompatibleStateImageBehavior = false;
			this.m_lvGuiOptions.View = System.Windows.Forms.View.Details;
			// 
			// m_tabGui2
			// 
			this.m_tabGui2.Controls.Add(this.m_grpIntAdv);
			this.m_tabGui2.Controls.Add(this.m_grpFonts);
			this.m_tabGui2.Controls.Add(this.m_grpStyles);
			this.m_tabGui2.Location = new System.Drawing.Point(4, 22);
			this.m_tabGui2.Name = "m_tabGui2";
			this.m_tabGui2.Size = new System.Drawing.Size(554, 338);
			this.m_tabGui2.TabIndex = 5;
			this.m_tabGui2.Text = "Interface (2)";
			this.m_tabGui2.UseVisualStyleBackColor = true;
			// 
			// m_grpIntAdv
			// 
			this.m_grpIntAdv.Controls.Add(this.m_lblEscAction);
			this.m_grpIntAdv.Controls.Add(this.m_lblMruCount);
			this.m_grpIntAdv.Controls.Add(this.m_numMruCount);
			this.m_grpIntAdv.Controls.Add(this.m_cmbEscAction);
			this.m_grpIntAdv.Location = new System.Drawing.Point(6, 160);
			this.m_grpIntAdv.Name = "m_grpIntAdv";
			this.m_grpIntAdv.Size = new System.Drawing.Size(330, 78);
			this.m_grpIntAdv.TabIndex = 2;
			this.m_grpIntAdv.TabStop = false;
			this.m_grpIntAdv.Text = "Advanced";
			// 
			// m_lblEscAction
			// 
			this.m_lblEscAction.AutoSize = true;
			this.m_lblEscAction.Location = new System.Drawing.Point(6, 21);
			this.m_lblEscAction.Name = "m_lblEscAction";
			this.m_lblEscAction.Size = new System.Drawing.Size(148, 13);
			this.m_lblEscAction.TabIndex = 0;
			this.m_lblEscAction.Text = "&Esc keypress in main window:";
			// 
			// m_lblMruCount
			// 
			this.m_lblMruCount.AutoSize = true;
			this.m_lblMruCount.Location = new System.Drawing.Point(6, 47);
			this.m_lblMruCount.Name = "m_lblMruCount";
			this.m_lblMruCount.Size = new System.Drawing.Size(148, 13);
			this.m_lblMruCount.TabIndex = 2;
			this.m_lblMruCount.Text = "&Remember recently used files:";
			// 
			// m_numMruCount
			// 
			this.m_numMruCount.Location = new System.Drawing.Point(160, 45);
			this.m_numMruCount.Maximum = new decimal(new int[] {
            120,
            0,
            0,
            0});
			this.m_numMruCount.Name = "m_numMruCount";
			this.m_numMruCount.Size = new System.Drawing.Size(53, 20);
			this.m_numMruCount.TabIndex = 3;
			this.m_numMruCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// m_cmbEscAction
			// 
			this.m_cmbEscAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbEscAction.FormattingEnabled = true;
			this.m_cmbEscAction.Location = new System.Drawing.Point(160, 18);
			this.m_cmbEscAction.Name = "m_cmbEscAction";
			this.m_cmbEscAction.Size = new System.Drawing.Size(160, 21);
			this.m_cmbEscAction.TabIndex = 1;
			// 
			// m_grpFonts
			// 
			this.m_grpFonts.Controls.Add(this.m_linkMainFont);
			this.m_grpFonts.Controls.Add(this.m_cbListFont);
			this.m_grpFonts.Controls.Add(this.m_btnListFont);
			this.m_grpFonts.Controls.Add(this.m_btnPasswordFont);
			this.m_grpFonts.Controls.Add(this.m_cbPasswordFont);
			this.m_grpFonts.Location = new System.Drawing.Point(342, 12);
			this.m_grpFonts.Name = "m_grpFonts";
			this.m_grpFonts.Size = new System.Drawing.Size(204, 142);
			this.m_grpFonts.TabIndex = 1;
			this.m_grpFonts.TabStop = false;
			this.m_grpFonts.Text = "Fonts";
			// 
			// m_linkMainFont
			// 
			this.m_linkMainFont.AutoSize = true;
			this.m_linkMainFont.Location = new System.Drawing.Point(6, 117);
			this.m_linkMainFont.Name = "m_linkMainFont";
			this.m_linkMainFont.Size = new System.Drawing.Size(78, 13);
			this.m_linkMainFont.TabIndex = 4;
			this.m_linkMainFont.TabStop = true;
			this.m_linkMainFont.Text = "Main font (size)";
			this.m_linkMainFont.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnGuiFontLinkClicked);
			// 
			// m_cbListFont
			// 
			this.m_cbListFont.AutoSize = true;
			this.m_cbListFont.Location = new System.Drawing.Point(9, 20);
			this.m_cbListFont.Name = "m_cbListFont";
			this.m_cbListFont.Size = new System.Drawing.Size(100, 17);
			this.m_cbListFont.TabIndex = 0;
			this.m_cbListFont.Text = "Custom &list font:";
			this.m_cbListFont.UseVisualStyleBackColor = true;
			// 
			// m_btnListFont
			// 
			this.m_btnListFont.Location = new System.Drawing.Point(28, 39);
			this.m_btnListFont.Name = "m_btnListFont";
			this.m_btnListFont.Size = new System.Drawing.Size(167, 23);
			this.m_btnListFont.TabIndex = 1;
			this.m_btnListFont.Text = "<>";
			this.m_btnListFont.UseVisualStyleBackColor = true;
			// 
			// m_btnPasswordFont
			// 
			this.m_btnPasswordFont.Location = new System.Drawing.Point(28, 87);
			this.m_btnPasswordFont.Name = "m_btnPasswordFont";
			this.m_btnPasswordFont.Size = new System.Drawing.Size(167, 23);
			this.m_btnPasswordFont.TabIndex = 3;
			this.m_btnPasswordFont.Text = "<>";
			this.m_btnPasswordFont.UseVisualStyleBackColor = true;
			// 
			// m_cbPasswordFont
			// 
			this.m_cbPasswordFont.AutoSize = true;
			this.m_cbPasswordFont.Location = new System.Drawing.Point(9, 68);
			this.m_cbPasswordFont.Name = "m_cbPasswordFont";
			this.m_cbPasswordFont.Size = new System.Drawing.Size(133, 17);
			this.m_cbPasswordFont.TabIndex = 2;
			this.m_cbPasswordFont.Text = "Custom &password font:";
			this.m_cbPasswordFont.UseVisualStyleBackColor = true;
			// 
			// m_grpStyles
			// 
			this.m_grpStyles.Controls.Add(this.m_cmbAltColor);
			this.m_grpStyles.Controls.Add(this.m_lblAltColor);
			this.m_grpStyles.Controls.Add(this.m_linkTheme);
			this.m_grpStyles.Controls.Add(this.m_cmbMenuStyle);
			this.m_grpStyles.Controls.Add(this.m_btnAltColor);
			this.m_grpStyles.Controls.Add(this.m_cmbBannerStyle);
			this.m_grpStyles.Controls.Add(this.m_lblBannerStyle);
			this.m_grpStyles.Controls.Add(this.m_lblMenuStyle);
			this.m_grpStyles.Location = new System.Drawing.Point(6, 12);
			this.m_grpStyles.Name = "m_grpStyles";
			this.m_grpStyles.Size = new System.Drawing.Size(330, 142);
			this.m_grpStyles.TabIndex = 0;
			this.m_grpStyles.TabStop = false;
			this.m_grpStyles.Text = "Styles && colors";
			// 
			// m_cmbAltColor
			// 
			this.m_cmbAltColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbAltColor.FormattingEnabled = true;
			this.m_cmbAltColor.Location = new System.Drawing.Point(160, 72);
			this.m_cmbAltColor.Name = "m_cmbAltColor";
			this.m_cmbAltColor.Size = new System.Drawing.Size(118, 21);
			this.m_cmbAltColor.TabIndex = 5;
			this.m_cmbAltColor.SelectedIndexChanged += new System.EventHandler(this.OnAltColorSelectedIndexChanged);
			// 
			// m_lblAltColor
			// 
			this.m_lblAltColor.AutoSize = true;
			this.m_lblAltColor.Location = new System.Drawing.Point(6, 75);
			this.m_lblAltColor.Name = "m_lblAltColor";
			this.m_lblAltColor.Size = new System.Drawing.Size(133, 13);
			this.m_lblAltColor.TabIndex = 4;
			this.m_lblAltColor.Text = "&Alt. item background color:";
			// 
			// m_linkTheme
			// 
			this.m_linkTheme.AutoSize = true;
			this.m_linkTheme.Location = new System.Drawing.Point(6, 102);
			this.m_linkTheme.Name = "m_linkTheme";
			this.m_linkTheme.Size = new System.Drawing.Size(62, 13);
			this.m_linkTheme.TabIndex = 7;
			this.m_linkTheme.TabStop = true;
			this.m_linkTheme.Text = "Dark theme";
			this.m_linkTheme.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnGuiDarkLinkClicked);
			// 
			// m_cmbMenuStyle
			// 
			this.m_cmbMenuStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbMenuStyle.FormattingEnabled = true;
			this.m_cmbMenuStyle.Location = new System.Drawing.Point(160, 18);
			this.m_cmbMenuStyle.Name = "m_cmbMenuStyle";
			this.m_cmbMenuStyle.Size = new System.Drawing.Size(160, 21);
			this.m_cmbMenuStyle.TabIndex = 1;
			// 
			// m_btnAltColor
			// 
			this.m_btnAltColor.Location = new System.Drawing.Point(284, 71);
			this.m_btnAltColor.Name = "m_btnAltColor";
			this.m_btnAltColor.Size = new System.Drawing.Size(37, 23);
			this.m_btnAltColor.TabIndex = 6;
			this.m_btnAltColor.UseVisualStyleBackColor = true;
			// 
			// m_cmbBannerStyle
			// 
			this.m_cmbBannerStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_cmbBannerStyle.FormattingEnabled = true;
			this.m_cmbBannerStyle.Location = new System.Drawing.Point(160, 45);
			this.m_cmbBannerStyle.Name = "m_cmbBannerStyle";
			this.m_cmbBannerStyle.Size = new System.Drawing.Size(160, 21);
			this.m_cmbBannerStyle.TabIndex = 3;
			this.m_cmbBannerStyle.SelectedIndexChanged += new System.EventHandler(this.OnBannerStyleSelectedChanged);
			// 
			// m_lblBannerStyle
			// 
			this.m_lblBannerStyle.AutoSize = true;
			this.m_lblBannerStyle.Location = new System.Drawing.Point(6, 48);
			this.m_lblBannerStyle.Name = "m_lblBannerStyle";
			this.m_lblBannerStyle.Size = new System.Drawing.Size(100, 13);
			this.m_lblBannerStyle.TabIndex = 2;
			this.m_lblBannerStyle.Text = "&Dialog banner style:";
			// 
			// m_lblMenuStyle
			// 
			this.m_lblMenuStyle.AutoSize = true;
			this.m_lblMenuStyle.Location = new System.Drawing.Point(6, 21);
			this.m_lblMenuStyle.Name = "m_lblMenuStyle";
			this.m_lblMenuStyle.Size = new System.Drawing.Size(117, 13);
			this.m_lblMenuStyle.TabIndex = 0;
			this.m_lblMenuStyle.Text = "&Menu and toolbar style:";
			// 
			// m_tabIntegration
			// 
			this.m_tabIntegration.Controls.Add(this.m_btnHelpSource);
			this.m_tabIntegration.Controls.Add(this.m_btnSchemeOverrides);
			this.m_tabIntegration.Controls.Add(this.m_cbAutoRun);
			this.m_tabIntegration.Controls.Add(this.m_grpFileExt);
			this.m_tabIntegration.Controls.Add(this.m_grpHotKeys);
			this.m_tabIntegration.Location = new System.Drawing.Point(4, 22);
			this.m_tabIntegration.Name = "m_tabIntegration";
			this.m_tabIntegration.Size = new System.Drawing.Size(554, 338);
			this.m_tabIntegration.TabIndex = 4;
			this.m_tabIntegration.Text = "Integration";
			this.m_tabIntegration.UseVisualStyleBackColor = true;
			// 
			// m_btnHelpSource
			// 
			this.m_btnHelpSource.Location = new System.Drawing.Point(435, 307);
			this.m_btnHelpSource.Name = "m_btnHelpSource";
			this.m_btnHelpSource.Size = new System.Drawing.Size(112, 23);
			this.m_btnHelpSource.TabIndex = 4;
			this.m_btnHelpSource.Text = "&Help Source...";
			this.m_btnHelpSource.UseVisualStyleBackColor = true;
			this.m_btnHelpSource.Click += new System.EventHandler(this.OnBtnHelpSource);
			// 
			// m_btnSchemeOverrides
			// 
			this.m_btnSchemeOverrides.Location = new System.Drawing.Point(317, 307);
			this.m_btnSchemeOverrides.Name = "m_btnSchemeOverrides";
			this.m_btnSchemeOverrides.Size = new System.Drawing.Size(112, 23);
			this.m_btnSchemeOverrides.TabIndex = 3;
			this.m_btnSchemeOverrides.Text = "URL &Overrides...";
			this.m_btnSchemeOverrides.UseVisualStyleBackColor = true;
			this.m_btnSchemeOverrides.Click += new System.EventHandler(this.OnBtnUrlOverrides);
			// 
			// m_cbAutoRun
			// 
			this.m_cbAutoRun.AutoSize = true;
			this.m_cbAutoRun.Location = new System.Drawing.Point(6, 247);
			this.m_cbAutoRun.Name = "m_cbAutoRun";
			this.m_cbAutoRun.Size = new System.Drawing.Size(250, 17);
			this.m_cbAutoRun.TabIndex = 2;
			this.m_cbAutoRun.Text = "R&un KeePass at Windows startup (current user)";
			this.m_cbAutoRun.UseVisualStyleBackColor = true;
			this.m_cbAutoRun.CheckedChanged += new System.EventHandler(this.OnCheckedChangedAutoRun);
			// 
			// m_grpFileExt
			// 
			this.m_grpFileExt.Controls.Add(this.m_btnFileExtRemove);
			this.m_grpFileExt.Controls.Add(this.m_btnFileExtCreate);
			this.m_grpFileExt.Controls.Add(this.m_lblFileExtHint);
			this.m_grpFileExt.Location = new System.Drawing.Point(6, 149);
			this.m_grpFileExt.Name = "m_grpFileExt";
			this.m_grpFileExt.Size = new System.Drawing.Size(540, 85);
			this.m_grpFileExt.TabIndex = 1;
			this.m_grpFileExt.TabStop = false;
			this.m_grpFileExt.Text = "KDBX file association";
			// 
			// m_btnFileExtRemove
			// 
			this.m_btnFileExtRemove.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.m_btnFileExtRemove.Location = new System.Drawing.Point(146, 52);
			this.m_btnFileExtRemove.Name = "m_btnFileExtRemove";
			this.m_btnFileExtRemove.Size = new System.Drawing.Size(135, 23);
			this.m_btnFileExtRemove.TabIndex = 2;
			this.m_btnFileExtRemove.Text = "&Remove Association";
			this.m_btnFileExtRemove.UseVisualStyleBackColor = true;
			this.m_btnFileExtRemove.Click += new System.EventHandler(this.OnBtnFileExtRemove);
			// 
			// m_btnFileExtCreate
			// 
			this.m_btnFileExtCreate.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.m_btnFileExtCreate.Location = new System.Drawing.Point(9, 52);
			this.m_btnFileExtCreate.Name = "m_btnFileExtCreate";
			this.m_btnFileExtCreate.Size = new System.Drawing.Size(131, 23);
			this.m_btnFileExtCreate.TabIndex = 1;
			this.m_btnFileExtCreate.Text = "&Create Association";
			this.m_btnFileExtCreate.UseVisualStyleBackColor = true;
			this.m_btnFileExtCreate.Click += new System.EventHandler(this.OnBtnFileExtCreate);
			// 
			// m_lblFileExtHint
			// 
			this.m_lblFileExtHint.Location = new System.Drawing.Point(6, 21);
			this.m_lblFileExtHint.Name = "m_lblFileExtHint";
			this.m_lblFileExtHint.Size = new System.Drawing.Size(525, 28);
			this.m_lblFileExtHint.TabIndex = 0;
			this.m_lblFileExtHint.Text = "KDBX files can be associated with KeePass. When you double-click a KDBX file in W" +
				"indows Explorer, they will automatically be opened by KeePass.";
			// 
			// m_grpHotKeys
			// 
			this.m_grpHotKeys.Controls.Add(this.m_lblAutoTypePassword);
			this.m_grpHotKeys.Controls.Add(this.m_hkAutoTypePassword);
			this.m_grpHotKeys.Controls.Add(this.m_linkHotKeyHelp);
			this.m_grpHotKeys.Controls.Add(this.m_lblAutoTypeSelected);
			this.m_grpHotKeys.Controls.Add(this.m_hkAutoTypeSelected);
			this.m_grpHotKeys.Controls.Add(this.m_hkShowWindow);
			this.m_grpHotKeys.Controls.Add(this.m_lblAutoType);
			this.m_grpHotKeys.Controls.Add(this.m_lblShowWindow);
			this.m_grpHotKeys.Controls.Add(this.m_hkAutoType);
			this.m_grpHotKeys.Location = new System.Drawing.Point(6, 12);
			this.m_grpHotKeys.Name = "m_grpHotKeys";
			this.m_grpHotKeys.Size = new System.Drawing.Size(540, 129);
			this.m_grpHotKeys.TabIndex = 0;
			this.m_grpHotKeys.TabStop = false;
			this.m_grpHotKeys.Text = "System-wide hot keys";
			// 
			// m_lblAutoTypePassword
			// 
			this.m_lblAutoTypePassword.AutoSize = true;
			this.m_lblAutoTypePassword.Location = new System.Drawing.Point(6, 47);
			this.m_lblAutoTypePassword.Name = "m_lblAutoTypePassword";
			this.m_lblAutoTypePassword.Size = new System.Drawing.Size(163, 13);
			this.m_lblAutoTypePassword.TabIndex = 3;
			this.m_lblAutoTypePassword.Text = "Global auto-type - password only:";
			// 
			// m_hkAutoTypePassword
			// 
			this.m_hkAutoTypePassword.Location = new System.Drawing.Point(175, 44);
			this.m_hkAutoTypePassword.Name = "m_hkAutoTypePassword";
			this.m_hkAutoTypePassword.Size = new System.Drawing.Size(180, 20);
			this.m_hkAutoTypePassword.TabIndex = 4;
			// 
			// m_linkHotKeyHelp
			// 
			this.m_linkHotKeyHelp.AutoSize = true;
			this.m_linkHotKeyHelp.Location = new System.Drawing.Point(382, 21);
			this.m_linkHotKeyHelp.Name = "m_linkHotKeyHelp";
			this.m_linkHotKeyHelp.Size = new System.Drawing.Size(149, 13);
			this.m_linkHotKeyHelp.TabIndex = 2;
			this.m_linkHotKeyHelp.TabStop = true;
			this.m_linkHotKeyHelp.Text = "Creating system-wide hot keys";
			this.m_linkHotKeyHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnHotKeyHelpLinkClicked);
			// 
			// m_lblAutoTypeSelected
			// 
			this.m_lblAutoTypeSelected.AutoSize = true;
			this.m_lblAutoTypeSelected.Location = new System.Drawing.Point(6, 73);
			this.m_lblAutoTypeSelected.Name = "m_lblAutoTypeSelected";
			this.m_lblAutoTypeSelected.Size = new System.Drawing.Size(124, 13);
			this.m_lblAutoTypeSelected.TabIndex = 5;
			this.m_lblAutoTypeSelected.Text = "Auto-type selected entry:";
			// 
			// m_hkAutoTypeSelected
			// 
			this.m_hkAutoTypeSelected.Location = new System.Drawing.Point(175, 70);
			this.m_hkAutoTypeSelected.Name = "m_hkAutoTypeSelected";
			this.m_hkAutoTypeSelected.Size = new System.Drawing.Size(180, 20);
			this.m_hkAutoTypeSelected.TabIndex = 6;
			// 
			// m_hkShowWindow
			// 
			this.m_hkShowWindow.Location = new System.Drawing.Point(175, 96);
			this.m_hkShowWindow.Name = "m_hkShowWindow";
			this.m_hkShowWindow.Size = new System.Drawing.Size(180, 20);
			this.m_hkShowWindow.TabIndex = 8;
			// 
			// m_lblAutoType
			// 
			this.m_lblAutoType.AutoSize = true;
			this.m_lblAutoType.Location = new System.Drawing.Point(6, 21);
			this.m_lblAutoType.Name = "m_lblAutoType";
			this.m_lblAutoType.Size = new System.Drawing.Size(87, 13);
			this.m_lblAutoType.TabIndex = 0;
			this.m_lblAutoType.Text = "Global auto-type:";
			// 
			// m_lblShowWindow
			// 
			this.m_lblShowWindow.AutoSize = true;
			this.m_lblShowWindow.Location = new System.Drawing.Point(6, 99);
			this.m_lblShowWindow.Name = "m_lblShowWindow";
			this.m_lblShowWindow.Size = new System.Drawing.Size(121, 13);
			this.m_lblShowWindow.TabIndex = 7;
			this.m_lblShowWindow.Text = "Show KeePass window:";
			// 
			// m_hkAutoType
			// 
			this.m_hkAutoType.Location = new System.Drawing.Point(175, 18);
			this.m_hkAutoType.Name = "m_hkAutoType";
			this.m_hkAutoType.Size = new System.Drawing.Size(180, 20);
			this.m_hkAutoType.TabIndex = 1;
			// 
			// m_tabAdvanced
			// 
			this.m_tabAdvanced.Controls.Add(this.m_btnProxy);
			this.m_tabAdvanced.Controls.Add(this.m_lvAdvanced);
			this.m_tabAdvanced.Location = new System.Drawing.Point(4, 22);
			this.m_tabAdvanced.Name = "m_tabAdvanced";
			this.m_tabAdvanced.Padding = new System.Windows.Forms.Padding(3);
			this.m_tabAdvanced.Size = new System.Drawing.Size(554, 338);
			this.m_tabAdvanced.TabIndex = 1;
			this.m_tabAdvanced.Text = "Advanced";
			this.m_tabAdvanced.UseVisualStyleBackColor = true;
			// 
			// m_btnProxy
			// 
			this.m_btnProxy.Location = new System.Drawing.Point(472, 307);
			this.m_btnProxy.Name = "m_btnProxy";
			this.m_btnProxy.Size = new System.Drawing.Size(75, 23);
			this.m_btnProxy.TabIndex = 1;
			this.m_btnProxy.Text = "&Proxy...";
			this.m_btnProxy.UseVisualStyleBackColor = true;
			this.m_btnProxy.Click += new System.EventHandler(this.OnBtnProxy);
			// 
			// m_lvAdvanced
			// 
			this.m_lvAdvanced.CheckBoxes = true;
			this.m_lvAdvanced.FullRowSelect = true;
			this.m_lvAdvanced.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
			this.m_lvAdvanced.Location = new System.Drawing.Point(6, 12);
			this.m_lvAdvanced.Name = "m_lvAdvanced";
			this.m_lvAdvanced.ShowItemToolTips = true;
			this.m_lvAdvanced.Size = new System.Drawing.Size(540, 289);
			this.m_lvAdvanced.TabIndex = 0;
			this.m_lvAdvanced.UseCompatibleStateImageBehavior = false;
			this.m_lvAdvanced.View = System.Windows.Forms.View.Details;
			// 
			// m_tbSearch
			// 
			this.m_tbSearch.Location = new System.Drawing.Point(12, 439);
			this.m_tbSearch.Name = "m_tbSearch";
			this.m_tbSearch.Size = new System.Drawing.Size(182, 20);
			this.m_tbSearch.TabIndex = 3;
			// 
			// OptionsForm
			// 
			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(586, 471);
			this.Controls.Add(this.m_tbSearch);
			this.Controls.Add(this.m_tabMain);
			this.Controls.Add(this.m_btnCancel);
			this.Controls.Add(this.m_btnOK);
			this.Controls.Add(this.m_bannerImage);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "OptionsForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Options";
			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_tabMain.ResumeLayout(false);
			this.m_tabSecurity.ResumeLayout(false);
			this.m_tabSecurity.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numLockAfterGlobalTime)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numClipClearTime)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numDefaultExpireDays)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_numLockAfterTime)).EndInit();
			this.m_tabPolicy.ResumeLayout(false);
			this.m_tabPolicy.PerformLayout();
			this.m_tabGui1.ResumeLayout(false);
			this.m_tabGui2.ResumeLayout(false);
			this.m_grpIntAdv.ResumeLayout(false);
			this.m_grpIntAdv.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_numMruCount)).EndInit();
			this.m_grpFonts.ResumeLayout(false);
			this.m_grpFonts.PerformLayout();
			this.m_grpStyles.ResumeLayout(false);
			this.m_grpStyles.PerformLayout();
			this.m_tabIntegration.ResumeLayout(false);
			this.m_tabIntegration.PerformLayout();
			this.m_grpFileExt.ResumeLayout(false);
			this.m_grpHotKeys.ResumeLayout(false);
			this.m_grpHotKeys.PerformLayout();
			this.m_tabAdvanced.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#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.TabControl m_tabMain;
		private System.Windows.Forms.TabPage m_tabSecurity;
		private System.Windows.Forms.TabPage m_tabAdvanced;
		private System.Windows.Forms.TabPage m_tabGui1;
		private System.Windows.Forms.CheckBox m_cbLockAfterTime;
		private System.Windows.Forms.NumericUpDown m_numLockAfterTime;
		private System.Windows.Forms.TabPage m_tabPolicy;
		private System.Windows.Forms.LinkLabel m_linkPolicyInfo;
		private System.Windows.Forms.Label m_lblPolicyMore;
		private System.Windows.Forms.Label m_lblPolicyRestart;
		private System.Windows.Forms.Label m_lblPolicyIntro;
		private KeePass.UI.CustomListViewEx m_lvPolicy;
		private KeePass.UI.CustomListViewEx m_lvGuiOptions;
		private System.Windows.Forms.TabPage m_tabIntegration;
		private KeePass.UI.HotKeyControlEx m_hkAutoType;
		private System.Windows.Forms.Label m_lblAutoType;
		private System.Windows.Forms.GroupBox m_grpHotKeys;
		private KeePass.UI.HotKeyControlEx m_hkShowWindow;
		private System.Windows.Forms.Label m_lblShowWindow;
		private System.Windows.Forms.CheckBox m_cbDefaultExpireDays;
		private System.Windows.Forms.NumericUpDown m_numDefaultExpireDays;
		private System.Windows.Forms.NumericUpDown m_numClipClearTime;
		private System.Windows.Forms.CheckBox m_cbClipClearTime;
		private System.Windows.Forms.Button m_btnFileExtRemove;
		private System.Windows.Forms.GroupBox m_grpFileExt;
		private System.Windows.Forms.Button m_btnFileExtCreate;
		private System.Windows.Forms.Label m_lblFileExtHint;
		private System.Windows.Forms.CheckBox m_cbAutoRun;
		private KeePass.UI.CustomListViewEx m_lvAdvanced;
		private KeePass.UI.CustomListViewEx m_lvSecurityOptions;
		private System.Windows.Forms.Button m_btnSchemeOverrides;
		private System.Windows.Forms.Label m_lblAutoTypeSelected;
		private KeePass.UI.HotKeyControlEx m_hkAutoTypeSelected;
		private System.Windows.Forms.LinkLabel m_linkHotKeyHelp;
		private System.Windows.Forms.CheckBox m_cbLockAfterGlobalTime;
		private System.Windows.Forms.NumericUpDown m_numLockAfterGlobalTime;
		private System.Windows.Forms.Button m_btnProxy;
		private System.Windows.Forms.ToolTip m_ttRect;
		private System.Windows.Forms.Label m_lblAutoTypePassword;
		private KeePass.UI.HotKeyControlEx m_hkAutoTypePassword;
		private System.Windows.Forms.Button m_btnHelpSource;
		private System.Windows.Forms.Label m_lblSecOpt;
		private System.Windows.Forms.LinkLabel m_linkSecOptAdm;
		private System.Windows.Forms.LinkLabel m_linkSecOptEx;
		private System.Windows.Forms.TabPage m_tabGui2;
		private System.Windows.Forms.ComboBox m_cmbMenuStyle;
		private System.Windows.Forms.Label m_lblMenuStyle;
		private System.Windows.Forms.Label m_lblBannerStyle;
		private System.Windows.Forms.ComboBox m_cmbBannerStyle;
		private System.Windows.Forms.ComboBox m_cmbEscAction;
		private System.Windows.Forms.Label m_lblEscAction;
		private System.Windows.Forms.NumericUpDown m_numMruCount;
		private System.Windows.Forms.Label m_lblMruCount;
		private System.Windows.Forms.CheckBox m_cbListFont;
		private System.Windows.Forms.Button m_btnPasswordFont;
		private System.Windows.Forms.CheckBox m_cbPasswordFont;
		private System.Windows.Forms.Button m_btnListFont;
		private KeePass.UI.ColorButtonEx m_btnAltColor;
		private System.Windows.Forms.GroupBox m_grpFonts;
		private System.Windows.Forms.GroupBox m_grpStyles;
		private System.Windows.Forms.GroupBox m_grpIntAdv;
		private System.Windows.Forms.LinkLabel m_linkTheme;
		private System.Windows.Forms.LinkLabel m_linkMainFont;
		private System.Windows.Forms.ComboBox m_cmbAltColor;
		private System.Windows.Forms.Label m_lblAltColor;
		private KeePass.UI.UIElementSearchBoxEx m_tbSearch;
	}
}