-
Notifications
You must be signed in to change notification settings - Fork 4
/
frmConfig.cs
1601 lines (1462 loc) · 65.8 KB
/
frmConfig.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
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
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
This file is part of TorqueDev.
TorqueDev is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
TorqueDev is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with TorqueDev. If not, see <http://www.gnu.org/licenses>
EXCEPTIONS TO THE GPL: TorqueDev links in a number of third party libraries,
which are exempt from the license. If you want to write closed-source
third party modules that you are going to link into TorqueDev, you may do so
without restriction. I acknowledge that this technically allows for
one to bypass the open source provisions of the GPL, but the real goal
is to keep the core of TorqueDev free and open. The rest is up to you.
*/
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using TSDev.Plugins;
namespace TSDev
{
/// <summary>
/// Summary description for frmConfig.
/// </summary>
internal class frmConfig : System.Windows.Forms.Form
{
private class ShortcutConfig {
public ShortcutConfig(Keys keys, Keys modifiers) {
this.keys = keys;
this.modifiers = modifiers;
}
public Keys keys = Keys.None;
public Keys modifiers = Keys.None;
public override string ToString() {
// Convert the thing to a string
string output = "";
if ((modifiers & Keys.Control) == Keys.Control)
output += "Ctrl+";
if ((modifiers & Keys.Alt) == Keys.Alt)
output += "Alt+";
if ((modifiers & Keys.Shift) == Keys.Shift)
output += "Shift+";
output += keys.ToString();
return output;
}
public Keys ToKeys() {
// Convert the thing to keys
return keys | modifiers;
}
}
private CConfig loconf;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label label2;
private ActiproSoftware.SyntaxEditor.SyntaxEditor txtSynEd;
private System.Windows.Forms.ListBox lstColorDefs;
private System.Windows.Forms.Button cmdAdColor;
private System.Windows.Forms.CheckBox chkScrollHint;
private System.Windows.Forms.CheckBox chkAutoColl;
private System.Windows.Forms.Button cmdCancel;
private System.Windows.Forms.Button cmdOK;
public Crownwood.DotNetMagic.Controls.TabControl tabMain;
private Crownwood.DotNetMagic.Controls.TabPage tpHighlighting;
private System.Windows.Forms.CheckBox chkCheckUpdates;
private System.Windows.Forms.CheckBox chkDebugSummary;
private System.Windows.Forms.GroupBox groupBox2;
private Crownwood.DotNetMagic.Controls.TabPage tpGeneral;
private Crownwood.DotNetMagic.Controls.TabPage tpShortcut;
private Crownwood.DotNetMagic.Controls.TabPage tpEditor;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ListView lvShortcuts;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.CheckBox chkAC_Infopop;
private System.Windows.Forms.CheckBox chkAC_Obj;
private System.Windows.Forms.CheckBox chkAC_Var;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.PictureBox pictureBox4;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.CheckBox chkConvTabToSpc;
private System.Windows.Forms.TextBox txtTabSpace;
private System.Windows.Forms.CheckBox chk_Ed_Virtlines;
private System.Windows.Forms.CheckBox chk_Ed_ShowLines;
private System.Windows.Forms.CheckBox chk_Ed_ShowWhitespace;
private System.Windows.Forms.CheckBox chk_Ed_ShowNewline;
private System.Windows.Forms.CheckBox chk_Ed_ShowBrackets;
private System.Windows.Forms.CheckBox chk_Ed_Wordwrap;
private System.Windows.Forms.CheckBox chk_Ed_ShowTabs;
private System.Windows.Forms.Button cmdClearRecent;
private System.Windows.Forms.Button cmdFlushAuth;
private System.Windows.Forms.Button cmdOnDebugExec;
private System.Windows.Forms.CheckBox chk_Ed_Errs;
private System.Windows.Forms.CheckBox chkErrChkDbg;
private System.Windows.Forms.CheckBox chk_Ed_AutoIndent;
private RadioButton optRenderStd;
private RadioButton optRenderPro;
private Label label7;
private TextBox txtAssgnShortcut;
private Button cmdApplyShortcut;
private CheckBox chk_Ed_CodeFold;
private ToolTip toolTip1;
private Button cmdResetColors;
private CheckBox chk_E_IndentGuides;
private ContextMenuStrip ctxReset;
private ToolStripMenuItem ctxReset_DefaultClr;
private ToolStripMenuItem ctxReset_NoolnessDarkClr;
private CheckBox chkAC_TypeAsYouGo;
private TreeView tvMenus;
private ImageList imageList1;
private IContainer components;
public frmConfig(CConfig prevconf)
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
this.loconf = (CConfig)prevconf.Clone();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmConfig));
ActiproSoftware.SyntaxEditor.Document document1 = new ActiproSoftware.SyntaxEditor.Document();
this.tabMain = new Crownwood.DotNetMagic.Controls.TabControl();
this.tpGeneral = new Crownwood.DotNetMagic.Controls.TabPage();
this.optRenderStd = new System.Windows.Forms.RadioButton();
this.optRenderPro = new System.Windows.Forms.RadioButton();
this.label7 = new System.Windows.Forms.Label();
this.cmdClearRecent = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.chkAC_Infopop = new System.Windows.Forms.CheckBox();
this.chkAC_Obj = new System.Windows.Forms.CheckBox();
this.chkAC_TypeAsYouGo = new System.Windows.Forms.CheckBox();
this.chkAC_Var = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.cmdOnDebugExec = new System.Windows.Forms.Button();
this.chkDebugSummary = new System.Windows.Forms.CheckBox();
this.chkErrChkDbg = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.chkCheckUpdates = new System.Windows.Forms.CheckBox();
this.tpHighlighting = new Crownwood.DotNetMagic.Controls.TabPage();
this.cmdResetColors = new System.Windows.Forms.Button();
this.cmdAdColor = new System.Windows.Forms.Button();
this.lstColorDefs = new System.Windows.Forms.ListBox();
this.txtSynEd = new ActiproSoftware.SyntaxEditor.SyntaxEditor();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.tpShortcut = new Crownwood.DotNetMagic.Controls.TabPage();
this.tvMenus = new System.Windows.Forms.TreeView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.cmdApplyShortcut = new System.Windows.Forms.Button();
this.txtAssgnShortcut = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.lvShortcuts = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.label3 = new System.Windows.Forms.Label();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.tpEditor = new Crownwood.DotNetMagic.Controls.TabPage();
this.chkConvTabToSpc = new System.Windows.Forms.CheckBox();
this.txtTabSpace = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.chk_Ed_Virtlines = new System.Windows.Forms.CheckBox();
this.chk_Ed_ShowLines = new System.Windows.Forms.CheckBox();
this.chk_Ed_ShowWhitespace = new System.Windows.Forms.CheckBox();
this.chk_Ed_ShowNewline = new System.Windows.Forms.CheckBox();
this.chk_Ed_ShowBrackets = new System.Windows.Forms.CheckBox();
this.chk_Ed_Wordwrap = new System.Windows.Forms.CheckBox();
this.chk_Ed_ShowTabs = new System.Windows.Forms.CheckBox();
this.chk_Ed_Errs = new System.Windows.Forms.CheckBox();
this.chkScrollHint = new System.Windows.Forms.CheckBox();
this.chkAutoColl = new System.Windows.Forms.CheckBox();
this.chk_E_IndentGuides = new System.Windows.Forms.CheckBox();
this.chk_Ed_CodeFold = new System.Windows.Forms.CheckBox();
this.chk_Ed_AutoIndent = new System.Windows.Forms.CheckBox();
this.cmdFlushAuth = new System.Windows.Forms.Button();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.ctxReset = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ctxReset_DefaultClr = new System.Windows.Forms.ToolStripMenuItem();
this.ctxReset_NoolnessDarkClr = new System.Windows.Forms.ToolStripMenuItem();
this.tabMain.SuspendLayout();
this.tpGeneral.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.tpHighlighting.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.tpShortcut.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
this.tpEditor.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.ctxReset.SuspendLayout();
this.SuspendLayout();
//
// tabMain
//
this.tabMain.BackColor = System.Drawing.SystemColors.Control;
this.tabMain.ButtonActiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.tabMain.ButtonInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.tabMain.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World);
this.tabMain.HotTextColor = System.Drawing.SystemColors.ActiveCaption;
this.tabMain.ImageList = null;
this.tabMain.Location = new System.Drawing.Point(8, 8);
this.tabMain.Name = "tabMain";
this.tabMain.OfficeDockSides = false;
this.tabMain.SelectedIndex = 0;
this.tabMain.ShowArrows = true;
this.tabMain.ShowDropSelect = false;
this.tabMain.ShrinkPagesToFit = false;
this.tabMain.Size = new System.Drawing.Size(376, 384);
this.tabMain.Style = Crownwood.DotNetMagic.Common.VisualStyle.IDE2005;
this.tabMain.TabIndex = 1;
this.tabMain.TabPages.AddRange(new Crownwood.DotNetMagic.Controls.TabPage[] {
this.tpGeneral,
this.tpHighlighting,
this.tpShortcut,
this.tpEditor});
this.tabMain.TextColor = System.Drawing.SystemColors.ControlText;
this.tabMain.TextInactiveColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.tabMain.TextTips = true;
//
// tpGeneral
//
this.tpGeneral.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.tpGeneral.Controls.Add(this.optRenderStd);
this.tpGeneral.Controls.Add(this.optRenderPro);
this.tpGeneral.Controls.Add(this.label7);
this.tpGeneral.Controls.Add(this.cmdClearRecent);
this.tpGeneral.Controls.Add(this.groupBox3);
this.tpGeneral.Controls.Add(this.groupBox2);
this.tpGeneral.Controls.Add(this.label1);
this.tpGeneral.Controls.Add(this.pictureBox1);
this.tpGeneral.Controls.Add(this.chkCheckUpdates);
this.tpGeneral.InactiveBackColor = System.Drawing.Color.Empty;
this.tpGeneral.InactiveTextBackColor = System.Drawing.Color.Empty;
this.tpGeneral.InactiveTextColor = System.Drawing.Color.Empty;
this.tpGeneral.Location = new System.Drawing.Point(1, 1);
this.tpGeneral.Name = "tpGeneral";
this.tpGeneral.SelectBackColor = System.Drawing.Color.Empty;
this.tpGeneral.SelectTextBackColor = System.Drawing.Color.Empty;
this.tpGeneral.SelectTextColor = System.Drawing.Color.Empty;
this.tpGeneral.Size = new System.Drawing.Size(374, 357);
this.tpGeneral.TabIndex = 4;
this.tpGeneral.Title = "General Preferences";
this.tpGeneral.ToolTip = "Page";
//
// optRenderStd
//
this.optRenderStd.AutoSize = true;
this.optRenderStd.Enabled = false;
this.optRenderStd.Location = new System.Drawing.Point(191, 283);
this.optRenderStd.Name = "optRenderStd";
this.optRenderStd.Size = new System.Drawing.Size(69, 17);
this.optRenderStd.TabIndex = 8;
this.optRenderStd.TabStop = true;
this.optRenderStd.Text = "Standard";
this.toolTip1.SetToolTip(this.optRenderStd, "Classic Windows environment display.");
this.optRenderStd.UseVisualStyleBackColor = true;
this.optRenderStd.CheckedChanged += new System.EventHandler(this.optRenderStd_CheckedChanged);
//
// optRenderPro
//
this.optRenderPro.AutoSize = true;
this.optRenderPro.Enabled = false;
this.optRenderPro.Location = new System.Drawing.Point(102, 283);
this.optRenderPro.Name = "optRenderPro";
this.optRenderPro.Size = new System.Drawing.Size(83, 17);
this.optRenderPro.TabIndex = 8;
this.optRenderPro.TabStop = true;
this.optRenderPro.Text = "Professional";
this.toolTip1.SetToolTip(this.optRenderPro, "Microsoft Office 2003-style \"blue skin\" display.");
this.optRenderPro.UseVisualStyleBackColor = true;
this.optRenderPro.CheckedChanged += new System.EventHandler(this.optRenderPro_CheckedChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Enabled = false;
this.label7.Location = new System.Drawing.Point(13, 285);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(83, 13);
this.label7.TabIndex = 7;
this.label7.Text = "Display Render:";
//
// cmdClearRecent
//
this.cmdClearRecent.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdClearRecent.Location = new System.Drawing.Point(240, 318);
this.cmdClearRecent.Name = "cmdClearRecent";
this.cmdClearRecent.Size = new System.Drawing.Size(120, 24);
this.cmdClearRecent.TabIndex = 6;
this.cmdClearRecent.Text = "Clear Recent Items";
this.toolTip1.SetToolTip(this.cmdClearRecent, "Cleares recently-opened projects in welcome screen.");
this.cmdClearRecent.Click += new System.EventHandler(this.cmdClearRecent_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.chkAC_Infopop);
this.groupBox3.Controls.Add(this.chkAC_Obj);
this.groupBox3.Controls.Add(this.chkAC_TypeAsYouGo);
this.groupBox3.Controls.Add(this.chkAC_Var);
this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox3.Location = new System.Drawing.Point(16, 152);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(344, 120);
this.groupBox3.TabIndex = 5;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Auto-Complete";
//
// chkAC_Infopop
//
this.chkAC_Infopop.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkAC_Infopop.Location = new System.Drawing.Point(8, 24);
this.chkAC_Infopop.Name = "chkAC_Infopop";
this.chkAC_Infopop.Size = new System.Drawing.Size(200, 16);
this.chkAC_Infopop.TabIndex = 0;
this.chkAC_Infopop.Text = "Enable Automatic Function Infopop";
this.toolTip1.SetToolTip(this.chkAC_Infopop, "Enables function tooltips to be displayed on open parenthese.");
this.chkAC_Infopop.CheckedChanged += new System.EventHandler(this.chkAC_Infopop_CheckedChanged);
//
// chkAC_Obj
//
this.chkAC_Obj.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkAC_Obj.Location = new System.Drawing.Point(8, 48);
this.chkAC_Obj.Name = "chkAC_Obj";
this.chkAC_Obj.Size = new System.Drawing.Size(280, 16);
this.chkAC_Obj.TabIndex = 0;
this.chkAC_Obj.Text = "Enable Automatic Object Memberlist (:: or .)";
this.toolTip1.SetToolTip(this.chkAC_Obj, "Displays object memberlist in dropdown on :: or .");
this.chkAC_Obj.CheckedChanged += new System.EventHandler(this.chkAC_Obj_CheckedChanged);
//
// chkAC_TypeAsYouGo
//
this.chkAC_TypeAsYouGo.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkAC_TypeAsYouGo.Location = new System.Drawing.Point(8, 94);
this.chkAC_TypeAsYouGo.Name = "chkAC_TypeAsYouGo";
this.chkAC_TypeAsYouGo.Size = new System.Drawing.Size(280, 16);
this.chkAC_TypeAsYouGo.TabIndex = 0;
this.chkAC_TypeAsYouGo.Text = "Enable Type-As-You-Go Completion";
this.toolTip1.SetToolTip(this.chkAC_TypeAsYouGo, "Enables display of valid functions and variables as you type them.");
this.chkAC_TypeAsYouGo.CheckedChanged += new System.EventHandler(this.chkAC_TypeAsYouGo_CheckedChanged);
//
// chkAC_Var
//
this.chkAC_Var.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkAC_Var.Location = new System.Drawing.Point(8, 72);
this.chkAC_Var.Name = "chkAC_Var";
this.chkAC_Var.Size = new System.Drawing.Size(280, 16);
this.chkAC_Var.TabIndex = 0;
this.chkAC_Var.Text = "Enable Automatic Variable Memberlist (__decl)";
this.toolTip1.SetToolTip(this.chkAC_Var, "Enables declared variable memberlist on dot-operator.");
this.chkAC_Var.CheckedChanged += new System.EventHandler(this.chkAC_Var_CheckedChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.cmdOnDebugExec);
this.groupBox2.Controls.Add(this.chkDebugSummary);
this.groupBox2.Controls.Add(this.chkErrChkDbg);
this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.groupBox2.Location = new System.Drawing.Point(16, 72);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(344, 72);
this.groupBox2.TabIndex = 4;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Debugger";
//
// cmdOnDebugExec
//
this.cmdOnDebugExec.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdOnDebugExec.Location = new System.Drawing.Point(208, 32);
this.cmdOnDebugExec.Name = "cmdOnDebugExec";
this.cmdOnDebugExec.Size = new System.Drawing.Size(120, 24);
this.cmdOnDebugExec.TabIndex = 2;
this.cmdOnDebugExec.Text = "On Debug Execute";
this.cmdOnDebugExec.Click += new System.EventHandler(this.cmdOnDebugExec_Click);
//
// chkDebugSummary
//
this.chkDebugSummary.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkDebugSummary.Location = new System.Drawing.Point(8, 24);
this.chkDebugSummary.Name = "chkDebugSummary";
this.chkDebugSummary.Size = new System.Drawing.Size(144, 16);
this.chkDebugSummary.TabIndex = 1;
this.chkDebugSummary.Text = "Show Debug Summary";
this.toolTip1.SetToolTip(this.chkDebugSummary, "Displays console output in a browser window when debugging is completed.");
this.chkDebugSummary.CheckedChanged += new System.EventHandler(this.chkDebugSummary_CheckedChanged);
//
// chkErrChkDbg
//
this.chkErrChkDbg.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkErrChkDbg.Location = new System.Drawing.Point(8, 48);
this.chkErrChkDbg.Name = "chkErrChkDbg";
this.chkErrChkDbg.Size = new System.Drawing.Size(192, 16);
this.chkErrChkDbg.TabIndex = 1;
this.chkErrChkDbg.Text = "Check for errors before debugging";
this.toolTip1.SetToolTip(this.chkErrChkDbg, "Scans project for syntax errors before entering debug mode.");
this.chkErrChkDbg.CheckedChanged += new System.EventHandler(this.chkErrChkDbg_CheckedChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(72, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(288, 48);
this.label1.TabIndex = 2;
this.label1.Text = "This page allows you to configure the basic functionality of the TorqueDev develo" +
"pment environment:";
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(16, 8);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(48, 48);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// chkCheckUpdates
//
this.chkCheckUpdates.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkCheckUpdates.Location = new System.Drawing.Point(16, 323);
this.chkCheckUpdates.Name = "chkCheckUpdates";
this.chkCheckUpdates.Size = new System.Drawing.Size(160, 16);
this.chkCheckUpdates.TabIndex = 1;
this.chkCheckUpdates.Text = "Check for Updates Daily";
this.toolTip1.SetToolTip(this.chkCheckUpdates, "Checks for CW updates once per day.");
this.chkCheckUpdates.Visible = false;
this.chkCheckUpdates.CheckedChanged += new System.EventHandler(this.chkCheckUpdates_CheckedChanged);
//
// tpHighlighting
//
this.tpHighlighting.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.tpHighlighting.Controls.Add(this.cmdResetColors);
this.tpHighlighting.Controls.Add(this.cmdAdColor);
this.tpHighlighting.Controls.Add(this.lstColorDefs);
this.tpHighlighting.Controls.Add(this.txtSynEd);
this.tpHighlighting.Controls.Add(this.pictureBox2);
this.tpHighlighting.Controls.Add(this.label2);
this.tpHighlighting.InactiveBackColor = System.Drawing.Color.Empty;
this.tpHighlighting.InactiveTextBackColor = System.Drawing.Color.Empty;
this.tpHighlighting.InactiveTextColor = System.Drawing.Color.Empty;
this.tpHighlighting.Location = new System.Drawing.Point(1, 1);
this.tpHighlighting.Name = "tpHighlighting";
this.tpHighlighting.SelectBackColor = System.Drawing.Color.Empty;
this.tpHighlighting.Selected = false;
this.tpHighlighting.SelectTextBackColor = System.Drawing.Color.Empty;
this.tpHighlighting.SelectTextColor = System.Drawing.Color.Empty;
this.tpHighlighting.Size = new System.Drawing.Size(374, 357);
this.tpHighlighting.TabIndex = 5;
this.tpHighlighting.Title = "Syntax Highlighting";
this.tpHighlighting.ToolTip = "Page";
//
// cmdResetColors
//
this.cmdResetColors.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdResetColors.Location = new System.Drawing.Point(288, 64);
this.cmdResetColors.Name = "cmdResetColors";
this.cmdResetColors.Size = new System.Drawing.Size(72, 24);
this.cmdResetColors.TabIndex = 9;
this.cmdResetColors.Text = "Reset";
this.cmdResetColors.MouseUp += new System.Windows.Forms.MouseEventHandler(this.cmdResetColors_MouseUp);
//
// cmdAdColor
//
this.cmdAdColor.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdAdColor.Location = new System.Drawing.Point(288, 104);
this.cmdAdColor.Name = "cmdAdColor";
this.cmdAdColor.Size = new System.Drawing.Size(72, 24);
this.cmdAdColor.TabIndex = 9;
this.cmdAdColor.Text = "Adjust";
this.cmdAdColor.Click += new System.EventHandler(this.cmdAdColor_Click);
//
// lstColorDefs
//
this.lstColorDefs.Items.AddRange(new object[] {
"Built-In Preprocessors",
"Comment Contents",
"Comment Delimiters",
"Default Font and Colors",
"Engine Functions",
"Global Variables",
"Indent Guidelines",
"Line Numbers",
"Line Number Margin",
"Local Variables",
"Numbers",
"Operators",
"Reserved Words",
"Scope Resolution Operators",
"Special Comment Contents",
"Special Comment Delimiters",
"String Delimiters",
"String Contents",
"Tagged String Delimiters",
"Tagged String Contents",
"Variable Declarations"});
this.lstColorDefs.Location = new System.Drawing.Point(16, 64);
this.lstColorDefs.Name = "lstColorDefs";
this.lstColorDefs.Size = new System.Drawing.Size(264, 69);
this.lstColorDefs.TabIndex = 8;
this.lstColorDefs.DoubleClick += new System.EventHandler(this.lstColorDefs_DoubleClick);
//
// txtSynEd
//
this.txtSynEd.Document = document1;
this.txtSynEd.Location = new System.Drawing.Point(8, 144);
this.txtSynEd.Name = "txtSynEd";
this.txtSynEd.Size = new System.Drawing.Size(352, 200);
this.txtSynEd.SplitType = ActiproSoftware.SyntaxEditor.SyntaxEditorSplitType.None;
this.txtSynEd.TabIndex = 7;
//
// pictureBox2
//
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
this.pictureBox2.Location = new System.Drawing.Point(16, 8);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(48, 48);
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox2.TabIndex = 0;
this.pictureBox2.TabStop = false;
//
// label2
//
this.label2.Location = new System.Drawing.Point(72, 8);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(288, 48);
this.label2.TabIndex = 6;
this.label2.Text = "You may adjust the colors of the syntax editor below.";
//
// tpShortcut
//
this.tpShortcut.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.tpShortcut.Controls.Add(this.tvMenus);
this.tpShortcut.Controls.Add(this.cmdApplyShortcut);
this.tpShortcut.Controls.Add(this.txtAssgnShortcut);
this.tpShortcut.Controls.Add(this.label4);
this.tpShortcut.Controls.Add(this.lvShortcuts);
this.tpShortcut.Controls.Add(this.label3);
this.tpShortcut.Controls.Add(this.pictureBox3);
this.tpShortcut.InactiveBackColor = System.Drawing.Color.Empty;
this.tpShortcut.InactiveTextBackColor = System.Drawing.Color.Empty;
this.tpShortcut.InactiveTextColor = System.Drawing.Color.Empty;
this.tpShortcut.Location = new System.Drawing.Point(1, 1);
this.tpShortcut.Name = "tpShortcut";
this.tpShortcut.SelectBackColor = System.Drawing.Color.Empty;
this.tpShortcut.Selected = false;
this.tpShortcut.SelectTextBackColor = System.Drawing.Color.Empty;
this.tpShortcut.SelectTextColor = System.Drawing.Color.Empty;
this.tpShortcut.Size = new System.Drawing.Size(374, 357);
this.tpShortcut.TabIndex = 6;
this.tpShortcut.Title = "Shortcuts";
this.tpShortcut.ToolTip = "Page";
//
// tvMenus
//
this.tvMenus.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tvMenus.ImageIndex = 0;
this.tvMenus.ImageList = this.imageList1;
this.tvMenus.Location = new System.Drawing.Point(8, 64);
this.tvMenus.Name = "tvMenus";
this.tvMenus.SelectedImageIndex = 0;
this.tvMenus.Size = new System.Drawing.Size(360, 200);
this.tvMenus.TabIndex = 7;
this.tvMenus.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvMenus_AfterSelect);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "folder_closed.png");
this.imageList1.Images.SetKeyName(1, "blank_16x16.png");
//
// cmdApplyShortcut
//
this.cmdApplyShortcut.Enabled = false;
this.cmdApplyShortcut.Location = new System.Drawing.Point(293, 289);
this.cmdApplyShortcut.Name = "cmdApplyShortcut";
this.cmdApplyShortcut.Size = new System.Drawing.Size(75, 23);
this.cmdApplyShortcut.TabIndex = 6;
this.cmdApplyShortcut.Text = "Apply";
this.cmdApplyShortcut.UseVisualStyleBackColor = true;
this.cmdApplyShortcut.Click += new System.EventHandler(this.cmdApplyShortcut_Click);
//
// txtAssgnShortcut
//
this.txtAssgnShortcut.AcceptsReturn = true;
this.txtAssgnShortcut.AcceptsTab = true;
this.txtAssgnShortcut.Location = new System.Drawing.Point(16, 291);
this.txtAssgnShortcut.Name = "txtAssgnShortcut";
this.txtAssgnShortcut.Size = new System.Drawing.Size(271, 21);
this.txtAssgnShortcut.TabIndex = 5;
this.txtAssgnShortcut.Text = "None";
this.txtAssgnShortcut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.txtAssgnShortcut.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAssgnShortcut_KeyDown);
//
// label4
//
this.label4.Location = new System.Drawing.Point(8, 272);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(232, 16);
this.label4.TabIndex = 4;
this.label4.Text = "Assigned shortcut:";
//
// lvShortcuts
//
this.lvShortcuts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.lvShortcuts.FullRowSelect = true;
this.lvShortcuts.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvShortcuts.HideSelection = false;
this.lvShortcuts.Location = new System.Drawing.Point(8, 64);
this.lvShortcuts.MultiSelect = false;
this.lvShortcuts.Name = "lvShortcuts";
this.lvShortcuts.Size = new System.Drawing.Size(360, 200);
this.lvShortcuts.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.lvShortcuts.TabIndex = 2;
this.lvShortcuts.UseCompatibleStateImageBehavior = false;
this.lvShortcuts.View = System.Windows.Forms.View.Details;
this.lvShortcuts.Visible = false;
this.lvShortcuts.SelectedIndexChanged += new System.EventHandler(this.lvShortcuts_SelectedIndexChanged);
this.lvShortcuts.Click += new System.EventHandler(this.lvShortcuts_Click);
//
// columnHeader1
//
this.columnHeader1.Text = "Menu";
this.columnHeader1.Width = 173;
//
// columnHeader2
//
this.columnHeader2.Text = "Shortcut";
this.columnHeader2.Width = 174;
//
// label3
//
this.label3.Location = new System.Drawing.Point(72, 8);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(296, 16);
this.label3.TabIndex = 1;
this.label3.Text = "You can configure the menu shortcut keys below:";
//
// pictureBox3
//
this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
this.pictureBox3.Location = new System.Drawing.Point(16, 8);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(48, 48);
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox3.TabIndex = 0;
this.pictureBox3.TabStop = false;
//
// tpEditor
//
this.tpEditor.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.tpEditor.Controls.Add(this.chkConvTabToSpc);
this.tpEditor.Controls.Add(this.txtTabSpace);
this.tpEditor.Controls.Add(this.label6);
this.tpEditor.Controls.Add(this.label5);
this.tpEditor.Controls.Add(this.pictureBox4);
this.tpEditor.Controls.Add(this.chk_Ed_Virtlines);
this.tpEditor.Controls.Add(this.chk_Ed_ShowLines);
this.tpEditor.Controls.Add(this.chk_Ed_ShowWhitespace);
this.tpEditor.Controls.Add(this.chk_Ed_ShowNewline);
this.tpEditor.Controls.Add(this.chk_Ed_ShowBrackets);
this.tpEditor.Controls.Add(this.chk_Ed_Wordwrap);
this.tpEditor.Controls.Add(this.chk_Ed_ShowTabs);
this.tpEditor.Controls.Add(this.chk_Ed_Errs);
this.tpEditor.Controls.Add(this.chkScrollHint);
this.tpEditor.Controls.Add(this.chkAutoColl);
this.tpEditor.Controls.Add(this.chk_E_IndentGuides);
this.tpEditor.Controls.Add(this.chk_Ed_CodeFold);
this.tpEditor.Controls.Add(this.chk_Ed_AutoIndent);
this.tpEditor.InactiveBackColor = System.Drawing.Color.Empty;
this.tpEditor.InactiveTextBackColor = System.Drawing.Color.Empty;
this.tpEditor.InactiveTextColor = System.Drawing.Color.Empty;
this.tpEditor.Location = new System.Drawing.Point(1, 1);
this.tpEditor.Name = "tpEditor";
this.tpEditor.SelectBackColor = System.Drawing.Color.Empty;
this.tpEditor.Selected = false;
this.tpEditor.SelectTextBackColor = System.Drawing.Color.Empty;
this.tpEditor.SelectTextColor = System.Drawing.Color.Empty;
this.tpEditor.Size = new System.Drawing.Size(374, 357);
this.tpEditor.TabIndex = 7;
this.tpEditor.Title = "Editor";
this.tpEditor.ToolTip = "Page";
//
// chkConvTabToSpc
//
this.chkConvTabToSpc.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkConvTabToSpc.Location = new System.Drawing.Point(152, 72);
this.chkConvTabToSpc.Name = "chkConvTabToSpc";
this.chkConvTabToSpc.Size = new System.Drawing.Size(144, 16);
this.chkConvTabToSpc.TabIndex = 6;
this.chkConvTabToSpc.Text = "Convert tabs to spaces";
this.toolTip1.SetToolTip(this.chkConvTabToSpc, "Converts tabs to spaces upon saving a file.");
this.chkConvTabToSpc.CheckedChanged += new System.EventHandler(this.chkConvTabToSpc_CheckedChanged);
//
// txtTabSpace
//
this.txtTabSpace.Location = new System.Drawing.Point(80, 72);
this.txtTabSpace.MaxLength = 2;
this.txtTabSpace.Name = "txtTabSpace";
this.txtTabSpace.Size = new System.Drawing.Size(56, 21);
this.txtTabSpace.TabIndex = 5;
this.txtTabSpace.TextChanged += new System.EventHandler(this.txtTabSpace_TextChanged);
//
// label6
//
this.label6.Location = new System.Drawing.Point(16, 72);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(64, 16);
this.label6.TabIndex = 4;
this.label6.Text = "Tab space:";
//
// label5
//
this.label5.Location = new System.Drawing.Point(72, 8);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(296, 16);
this.label5.TabIndex = 3;
this.label5.Text = "You can configure basic editor preferences here:";
//
// pictureBox4
//
this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
this.pictureBox4.Location = new System.Drawing.Point(16, 8);
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.Size = new System.Drawing.Size(48, 48);
this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox4.TabIndex = 2;
this.pictureBox4.TabStop = false;
//
// chk_Ed_Virtlines
//
this.chk_Ed_Virtlines.Enabled = false;
this.chk_Ed_Virtlines.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_Virtlines.Location = new System.Drawing.Point(16, 328);
this.chk_Ed_Virtlines.Name = "chk_Ed_Virtlines";
this.chk_Ed_Virtlines.Size = new System.Drawing.Size(144, 16);
this.chk_Ed_Virtlines.TabIndex = 6;
this.chk_Ed_Virtlines.Text = "Virtual Space";
this.toolTip1.SetToolTip(this.chk_Ed_Virtlines, "Enables accessing of \"virtual\" lines past the end of the file. (Feature not avail" +
"able)");
this.chk_Ed_Virtlines.CheckedChanged += new System.EventHandler(this.chk_Ed_Virtlines_CheckedChanged);
//
// chk_Ed_ShowLines
//
this.chk_Ed_ShowLines.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_ShowLines.Location = new System.Drawing.Point(16, 232);
this.chk_Ed_ShowLines.Name = "chk_Ed_ShowLines";
this.chk_Ed_ShowLines.Size = new System.Drawing.Size(144, 16);
this.chk_Ed_ShowLines.TabIndex = 6;
this.chk_Ed_ShowLines.Text = "Show Line Numbers";
this.toolTip1.SetToolTip(this.chk_Ed_ShowLines, "Shows line numbers in the left column.");
this.chk_Ed_ShowLines.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowLines_CheckedChanged);
//
// chk_Ed_ShowWhitespace
//
this.chk_Ed_ShowWhitespace.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_ShowWhitespace.Location = new System.Drawing.Point(16, 304);
this.chk_Ed_ShowWhitespace.Name = "chk_Ed_ShowWhitespace";
this.chk_Ed_ShowWhitespace.Size = new System.Drawing.Size(168, 16);
this.chk_Ed_ShowWhitespace.TabIndex = 6;
this.chk_Ed_ShowWhitespace.Text = "Show Whitespace Glyphs";
this.toolTip1.SetToolTip(this.chk_Ed_ShowWhitespace, "Shows a glyph for every whitespace (space bar) character.");
this.chk_Ed_ShowWhitespace.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowWhitespace_CheckedChanged);
//
// chk_Ed_ShowNewline
//
this.chk_Ed_ShowNewline.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_ShowNewline.Location = new System.Drawing.Point(16, 256);
this.chk_Ed_ShowNewline.Name = "chk_Ed_ShowNewline";
this.chk_Ed_ShowNewline.Size = new System.Drawing.Size(168, 16);
this.chk_Ed_ShowNewline.TabIndex = 6;
this.chk_Ed_ShowNewline.Text = "Show Newline Glyphs";
this.toolTip1.SetToolTip(this.chk_Ed_ShowNewline, "Displays a glyph for every carriage return/line feed combination.");
this.chk_Ed_ShowNewline.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowNewline_CheckedChanged);
//
// chk_Ed_ShowBrackets
//
this.chk_Ed_ShowBrackets.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_ShowBrackets.Location = new System.Drawing.Point(16, 160);
this.chk_Ed_ShowBrackets.Name = "chk_Ed_ShowBrackets";
this.chk_Ed_ShowBrackets.Size = new System.Drawing.Size(168, 16);
this.chk_Ed_ShowBrackets.TabIndex = 6;
this.chk_Ed_ShowBrackets.Text = "Enable Bracket Highlighting";
this.toolTip1.SetToolTip(this.chk_Ed_ShowBrackets, "Automatically highlights matching parentheses, brackets, or braces while the curs" +
"or is adjacent to it.");
this.chk_Ed_ShowBrackets.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowBrackets_CheckedChanged);
//
// chk_Ed_Wordwrap
//
this.chk_Ed_Wordwrap.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_Wordwrap.Location = new System.Drawing.Point(16, 208);
this.chk_Ed_Wordwrap.Name = "chk_Ed_Wordwrap";
this.chk_Ed_Wordwrap.Size = new System.Drawing.Size(168, 16);
this.chk_Ed_Wordwrap.TabIndex = 6;
this.chk_Ed_Wordwrap.Text = "Enable Wordwrap";
this.toolTip1.SetToolTip(this.chk_Ed_Wordwrap, "Wraps text that passes the horizontal boundary of the text editor to the next lin" +
"e.");
this.chk_Ed_Wordwrap.CheckedChanged += new System.EventHandler(this.chk_Ed_Wordwrap_CheckedChanged);
//
// chk_Ed_ShowTabs
//
this.chk_Ed_ShowTabs.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_ShowTabs.Location = new System.Drawing.Point(16, 280);
this.chk_Ed_ShowTabs.Name = "chk_Ed_ShowTabs";
this.chk_Ed_ShowTabs.Size = new System.Drawing.Size(168, 16);
this.chk_Ed_ShowTabs.TabIndex = 6;
this.chk_Ed_ShowTabs.Text = "Show Tab Glyphs";
this.toolTip1.SetToolTip(this.chk_Ed_ShowTabs, "Shows a glyph for all TAB characters.");
this.chk_Ed_ShowTabs.CheckedChanged += new System.EventHandler(this.chk_Ed_ShowTabs_CheckedChanged);
//
// chk_Ed_Errs
//
this.chk_Ed_Errs.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_Errs.Location = new System.Drawing.Point(16, 136);
this.chk_Ed_Errs.Name = "chk_Ed_Errs";
this.chk_Ed_Errs.Size = new System.Drawing.Size(184, 16);
this.chk_Ed_Errs.TabIndex = 6;
this.chk_Ed_Errs.Text = "Check for errors while typing";
this.toolTip1.SetToolTip(this.chk_Ed_Errs, "Underlines detected syntax errors in red while typing.");
this.chk_Ed_Errs.CheckedChanged += new System.EventHandler(this.chk_Ed_Errs_CheckedChanged);
//
// chkScrollHint
//
this.chkScrollHint.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkScrollHint.Location = new System.Drawing.Point(16, 184);
this.chkScrollHint.Name = "chkScrollHint";
this.chkScrollHint.Size = new System.Drawing.Size(112, 16);
this.chkScrollHint.TabIndex = 1;
this.chkScrollHint.Text = "Enable Scroll Hint";
this.toolTip1.SetToolTip(this.chkScrollHint, "Displays passing line numbers in a tooltip while scrolling.");
this.chkScrollHint.CheckedChanged += new System.EventHandler(this.chkScrollHint_CheckedChanged);
//
// chkAutoColl
//
this.chkAutoColl.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chkAutoColl.Location = new System.Drawing.Point(16, 112);
this.chkAutoColl.Name = "chkAutoColl";
this.chkAutoColl.Size = new System.Drawing.Size(136, 16);
this.chkAutoColl.TabIndex = 1;
this.chkAutoColl.Text = "Auto-Collapse Regions";
this.toolTip1.SetToolTip(this.chkAutoColl, "Automatically collapses __REGION and __END blocks when a file is opened.");
this.chkAutoColl.CheckedChanged += new System.EventHandler(this.chkAutoColl_CheckedChanged);
//
// chk_E_IndentGuides
//
this.chk_E_IndentGuides.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_E_IndentGuides.Location = new System.Drawing.Point(216, 180);
this.chk_E_IndentGuides.Name = "chk_E_IndentGuides";
this.chk_E_IndentGuides.Size = new System.Drawing.Size(136, 32);
this.chk_E_IndentGuides.TabIndex = 1;
this.chk_E_IndentGuides.Text = "Enable Indent Guides";
this.toolTip1.SetToolTip(this.chk_E_IndentGuides, "Enables or disables the vertical guidelines displayed on indents.");
this.chk_E_IndentGuides.CheckedChanged += new System.EventHandler(this.chk_E_IndentGuides_CheckedChanged);
//
// chk_Ed_CodeFold
//
this.chk_Ed_CodeFold.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_CodeFold.Location = new System.Drawing.Point(216, 142);
this.chk_Ed_CodeFold.Name = "chk_Ed_CodeFold";
this.chk_Ed_CodeFold.Size = new System.Drawing.Size(136, 32);
this.chk_Ed_CodeFold.TabIndex = 1;
this.chk_Ed_CodeFold.Text = "Enable Automatic Code Folding";
this.toolTip1.SetToolTip(this.chk_Ed_CodeFold, "Enables non-region codeblocks to be collapsed.");
this.chk_Ed_CodeFold.CheckedChanged += new System.EventHandler(this.chk_Ed_CodeFold_CheckedChanged);
//
// chk_Ed_AutoIndent
//
this.chk_Ed_AutoIndent.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.chk_Ed_AutoIndent.Location = new System.Drawing.Point(216, 104);
this.chk_Ed_AutoIndent.Name = "chk_Ed_AutoIndent";
this.chk_Ed_AutoIndent.Size = new System.Drawing.Size(136, 32);
this.chk_Ed_AutoIndent.TabIndex = 1;
this.chk_Ed_AutoIndent.Text = "Auto Indent/Outdent on Brace";
this.toolTip1.SetToolTip(this.chk_Ed_AutoIndent, "Automatically tabs in or untabs on open brace and close brace respectively.");
this.chk_Ed_AutoIndent.CheckedChanged += new System.EventHandler(this.chk_Ed_AutoIndent_CheckedChanged);
//
// cmdFlushAuth
//
this.cmdFlushAuth.Enabled = false;
this.cmdFlushAuth.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdFlushAuth.Location = new System.Drawing.Point(9, 398);
this.cmdFlushAuth.Name = "cmdFlushAuth";
this.cmdFlushAuth.Size = new System.Drawing.Size(152, 24);
this.cmdFlushAuth.TabIndex = 6;
this.cmdFlushAuth.Text = "Flush Authorization Cache";
this.cmdFlushAuth.Visible = false;
this.cmdFlushAuth.Click += new System.EventHandler(this.cmdFlushAuth_Click);
//
// cmdCancel
//
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdCancel.Location = new System.Drawing.Point(304, 400);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(80, 24);
this.cmdCancel.TabIndex = 2;
this.cmdCancel.Text = "Cancel";
this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
//
// cmdOK
//
this.cmdOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cmdOK.Location = new System.Drawing.Point(216, 400);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(80, 24);
this.cmdOK.TabIndex = 2;
this.cmdOK.Text = "OK";
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// ctxReset
//
this.ctxReset.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ctxReset_DefaultClr,
this.ctxReset_NoolnessDarkClr});
this.ctxReset.Name = "ctxReset";
this.ctxReset.Size = new System.Drawing.Size(211, 48);
//
// ctxReset_DefaultClr
//
this.ctxReset_DefaultClr.Name = "ctxReset_DefaultClr";
this.ctxReset_DefaultClr.Size = new System.Drawing.Size(210, 22);
this.ctxReset_DefaultClr.Text = "TorqueDev Default Colors";
this.ctxReset_DefaultClr.Click += new System.EventHandler(this.ctxReset_DefaultClr_Click);
//
// ctxReset_NoolnessDarkClr
//
this.ctxReset_NoolnessDarkClr.Name = "ctxReset_NoolnessDarkClr";
this.ctxReset_NoolnessDarkClr.Size = new System.Drawing.Size(210, 22);
this.ctxReset_NoolnessDarkClr.Text = "Noolness Dark Colors";
this.ctxReset_NoolnessDarkClr.Click += new System.EventHandler(this.ctxReset_NoolnessDarkClr_Click);
//
// frmConfig
//
this.AcceptButton = this.cmdOK;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(394, 431);
this.Controls.Add(this.cmdCancel);
this.Controls.Add(this.tabMain);
this.Controls.Add(this.cmdOK);