forked from chuongmep/CadPythonShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPromptTestForm.cs
More file actions
3216 lines (3082 loc) · 169 KB
/
PromptTestForm.cs
File metadata and controls
3216 lines (3082 loc) · 169 KB
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
// $Header: //Desktop/Source/TestTools/MgdDbg/Prompts/PromptTestForm.cs#1 $
// $Author: fergusja $ $DateTime: 2007/03/16 08:08:08 $ $Change: 68854 $
//
// (C) Copyright 2004 by Autodesk, Inc.
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
//
// Use, duplication, or disclosure by the U.S. Government is subject to
// restrictions set forth in FAR 52.227-19 (Commercial Computer
// Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
// (Rights in Technical Data and Computer Software), as applicable.
//
using Autodesk.AutoCAD.EditorInput;
using Autodesk.AutoCAD.Geometry;
using System.Diagnostics;
using System.Windows.Forms;
namespace MgdDbg.Prompts
{
/// <summary>
/// Summary description for PromptTestForm.
/// </summary>
public class PromptTestForm : System.Windows.Forms.Form
{
// Tab page for each type of prompt
private System.Windows.Forms.TabControl m_tcMain;
private System.Windows.Forms.TabPage m_tpInteger;
private System.Windows.Forms.TabPage m_tpDouble;
private System.Windows.Forms.TabPage m_tpDistance;
private System.Windows.Forms.TabPage m_tpAngle;
private System.Windows.Forms.TabPage m_tpCorner;
private System.Windows.Forms.TabPage m_tpPoint;
private System.Windows.Forms.TabPage m_tpString;
private System.Windows.Forms.TabPage m_tpKeyword;
private System.Windows.Forms.TabPage m_tpEntity;
private System.Windows.Forms.TabPage m_tpNested;
// controls for each page
private System.Windows.Forms.GroupBox m_gbOptionsInt;
private System.Windows.Forms.Label m_txtMessage;
private System.Windows.Forms.CheckBox m_cbIntAllowArbitraryInput;
private System.Windows.Forms.CheckBox m_cbIntAllowNone;
private System.Windows.Forms.CheckBox m_cbIntAllowZero;
private System.Windows.Forms.CheckBox m_cbIntAllowNegative;
private System.Windows.Forms.TextBox m_ebIntMessage;
private System.Windows.Forms.CheckBox m_cbIntUseDefault;
private System.Windows.Forms.TextBox m_ebIntDefault;
private System.Windows.Forms.Label m_txtIntDefault;
private System.Windows.Forms.Button m_bnRunTest;
private System.Windows.Forms.Button m_bnCancel;
private System.Windows.Forms.GroupBox m_gbKeywords;
private System.Windows.Forms.ListView m_lvIntKeywords;
private System.Windows.Forms.ColumnHeader m_lvColKwordGlobal;
private System.Windows.Forms.ColumnHeader m_lvColKwordLocal;
private System.Windows.Forms.ColumnHeader m_lvColKwordDisplay;
private System.Windows.Forms.ColumnHeader m_lvColKwordEnabled;
private System.Windows.Forms.ColumnHeader m_lvColKwordVisible;
private System.Windows.Forms.Button m_bnIntKwordHardwire;
private System.Windows.Forms.Button m_bnIntKwordAdd;
private System.Windows.Forms.Button m_bnIntKwordEdit;
private System.Windows.Forms.Button m_bnIntKwordClear;
private System.Windows.Forms.Label m_txtIntKwordDef;
private System.Windows.Forms.TextBox m_ebIntKwordDef;
private System.Windows.Forms.GroupBox m_gbDblOpts;
private System.Windows.Forms.TextBox m_ebDblDefault;
private System.Windows.Forms.Label m_txtDblDefault;
private System.Windows.Forms.CheckBox m_cbDblUseDefault;
private System.Windows.Forms.CheckBox m_cbDblAllowNegative;
private System.Windows.Forms.CheckBox m_cbDblAllowZero;
private System.Windows.Forms.CheckBox m_cbDblAllowNone;
private System.Windows.Forms.CheckBox m_cbDblAllowArbitraryInput;
private System.Windows.Forms.Label m_txtDblMessage;
private System.Windows.Forms.TextBox m_ebDblMessage;
private System.Windows.Forms.GroupBox m_gbDblKwords;
private System.Windows.Forms.Button m_bnDblKwordClear;
private System.Windows.Forms.Button m_bnDblKwordEdit;
private System.Windows.Forms.Button m_bnDblKwordAdd;
private System.Windows.Forms.ListView m_lvDblKwords;
private System.Windows.Forms.ColumnHeader m_lvColDblGlobal;
private System.Windows.Forms.ColumnHeader m_lvColDblLocal;
private System.Windows.Forms.ColumnHeader m_lvColDblDisplay;
private System.Windows.Forms.ColumnHeader m_lvColDblEnabled;
private System.Windows.Forms.ColumnHeader m_lvColDblVisible;
private System.Windows.Forms.TextBox m_ebDblKwordDef;
private System.Windows.Forms.Label m_txtDblKwordDef;
private System.Windows.Forms.Button m_bnDblKwordHardwire;
private System.Windows.Forms.GroupBox m_gbDistKwords;
private System.Windows.Forms.Button m_bnDistKwordClear;
private System.Windows.Forms.Button m_bnDistKwordEdit;
private System.Windows.Forms.Button m_bnDistKwordAdd;
private System.Windows.Forms.ListView m_lvDistKwords;
private System.Windows.Forms.ColumnHeader m_lvColDistGlobal;
private System.Windows.Forms.ColumnHeader m_lvColDistLocal;
private System.Windows.Forms.ColumnHeader m_lvColDistDisplay;
private System.Windows.Forms.ColumnHeader m_lvColDistEnabled;
private System.Windows.Forms.ColumnHeader m_lvColDistVisible;
private System.Windows.Forms.GroupBox m_gbDistOptions;
private System.Windows.Forms.TextBox m_ebDistDefault;
private System.Windows.Forms.Label m_txtDistDefault;
private System.Windows.Forms.CheckBox m_cbDistUseDefault;
private System.Windows.Forms.CheckBox m_cbDistAllowNegative;
private System.Windows.Forms.CheckBox m_cbDistAllowZero;
private System.Windows.Forms.CheckBox m_cbDistAllowNone;
private System.Windows.Forms.CheckBox m_cbDistAllowArbitraryInput;
private System.Windows.Forms.CheckBox m_cbDistUseDashedLine;
private System.Windows.Forms.CheckBox m_cbDistUseBasePt;
private System.Windows.Forms.CheckBox m_cbDistOnly2d;
private System.Windows.Forms.Label m_txtDistMessage;
private System.Windows.Forms.TextBox m_ebDistMessage;
private System.Windows.Forms.Button m_bnDistKwordHardwire;
private System.Windows.Forms.TextBox m_ebDistKwordDef;
private System.Windows.Forms.Label m_txtDistKwordDef;
private System.Windows.Forms.Label m_txtAngMessage;
private System.Windows.Forms.TextBox m_ebAngMessage;
private System.Windows.Forms.GroupBox m_gbAngOptions;
private System.Windows.Forms.ColumnHeader m_lvColAngGlobal;
private System.Windows.Forms.ColumnHeader m_lvColAngLocal;
private System.Windows.Forms.ColumnHeader m_lvColAngDisplay;
private System.Windows.Forms.ColumnHeader m_lvColAngEnabled;
private System.Windows.Forms.ColumnHeader m_lvColAngVisible;
private System.Windows.Forms.GroupBox m_gbAngKwords;
private System.Windows.Forms.Button m_bnAngKwordClear;
private System.Windows.Forms.Button m_bnAngKwordEdit;
private System.Windows.Forms.Button m_bnAngKwordAdd;
private System.Windows.Forms.ListView m_lvAngKwords;
private System.Windows.Forms.CheckBox m_cbAngUseBasePt;
private System.Windows.Forms.CheckBox m_cbAngAllowZero;
private System.Windows.Forms.CheckBox m_cbAngAllowNone;
private System.Windows.Forms.CheckBox m_cbAngAllowArbitraryInput;
private System.Windows.Forms.TextBox m_ebAngDefault;
private System.Windows.Forms.Label m_txtAngDefault;
private System.Windows.Forms.CheckBox m_cbAngUseDashedLine;
private System.Windows.Forms.CheckBox m_cbAngUseDefault;
private System.Windows.Forms.Button m_bnAngKwordHardwire;
private System.Windows.Forms.TextBox m_ebAngKwordDef;
private System.Windows.Forms.Label m_txtAngKwordDef;
private System.Windows.Forms.GroupBox m_gbCrnOptions;
private System.Windows.Forms.CheckBox m_cbCrnUseDashedLine;
private System.Windows.Forms.CheckBox m_cbCrnAllowNone;
private System.Windows.Forms.CheckBox m_cbCrnAllowArbitraryInput;
private System.Windows.Forms.ColumnHeader m_lvColCrnGlobal;
private System.Windows.Forms.ColumnHeader m_lvColCrnLocal;
private System.Windows.Forms.ColumnHeader m_lvColCrnDisplay;
private System.Windows.Forms.ColumnHeader m_lvColCrnEnabled;
private System.Windows.Forms.ColumnHeader m_lvColCrnVisible;
private System.Windows.Forms.GroupBox m_gbCrnKwords;
private System.Windows.Forms.Button m_bnCrnKwordClear;
private System.Windows.Forms.Button m_bnCrnKwordEdit;
private System.Windows.Forms.Button m_bnCrnKwordAdd;
private System.Windows.Forms.ListView m_lvCrnKwords;
private System.Windows.Forms.TextBox m_ebCrnMessage;
private System.Windows.Forms.Label m_txtCrnMessage;
private System.Windows.Forms.CheckBox m_cbCrnLimitsChecked;
private System.Windows.Forms.Button m_bnCrnKwordHardwire;
private System.Windows.Forms.TextBox m_ebCrnKwordDef;
private System.Windows.Forms.Label m_txtCrnKwordDef;
private System.Windows.Forms.GroupBox m_gbPtOptions;
private System.Windows.Forms.CheckBox m_cbPtUseDashedLine;
private System.Windows.Forms.CheckBox m_cbPtLimitsChecked;
private System.Windows.Forms.CheckBox m_cbPtAllowNone;
private System.Windows.Forms.CheckBox m_cbPtAllowArbitraryInput;
private System.Windows.Forms.GroupBox m_gbPtKwords;
private System.Windows.Forms.Button m_bnPtKwordClear;
private System.Windows.Forms.Button m_bnPtKwordEdit;
private System.Windows.Forms.Button m_bnPtKwordAdd;
private System.Windows.Forms.ListView m_lvPtKwords;
private System.Windows.Forms.ColumnHeader m_lvColPtGlobal;
private System.Windows.Forms.ColumnHeader m_lvColPtLocal;
private System.Windows.Forms.ColumnHeader m_lvColPtDisplay;
private System.Windows.Forms.ColumnHeader m_lvColPtEnabled;
private System.Windows.Forms.ColumnHeader m_lvColPtVisible;
private System.Windows.Forms.TextBox m_ebPtMessage;
private System.Windows.Forms.Label m_txtPtMessage;
private System.Windows.Forms.CheckBox m_cbPtUseBasePt;
private System.Windows.Forms.Button m_bnPtKwordHardwire;
private System.Windows.Forms.TextBox m_ebPtKwordDef;
private System.Windows.Forms.Label m_txtPtKwordDef;
private System.Windows.Forms.GroupBox m_gbStrOptions;
private System.Windows.Forms.CheckBox m_cbStrAllowSpaces;
private System.Windows.Forms.TextBox m_ebStrMessage;
private System.Windows.Forms.Label m_txtStrMessage;
private System.Windows.Forms.GroupBox m_gbKwdOptions;
private System.Windows.Forms.CheckBox m_cbKwdAllowArbitraryInput;
private System.Windows.Forms.CheckBox m_cbKwdAllowNone;
private System.Windows.Forms.GroupBox m_gbKwdKwords;
private System.Windows.Forms.Button m_bnKwdKwordClear;
private System.Windows.Forms.Button m_bnKwdKwordEdit;
private System.Windows.Forms.Button m_bnKwdKwordAdd;
private System.Windows.Forms.ListView m_lvKwdKwords;
private System.Windows.Forms.ColumnHeader m_lvColKwdGlobal;
private System.Windows.Forms.ColumnHeader m_lvColKwdLocal;
private System.Windows.Forms.ColumnHeader m_lvColKwdDisplay;
private System.Windows.Forms.ColumnHeader m_lvColKwdEnabled;
private System.Windows.Forms.ColumnHeader m_lvColKwdVisible;
private System.Windows.Forms.TextBox m_ebKwdMessage;
private System.Windows.Forms.Label m_txtKwdMessage;
private System.Windows.Forms.Button m_bnKwdKwordHardwire;
private System.Windows.Forms.TextBox m_ebKwdKwordDef;
private System.Windows.Forms.Label m_txtKwdKwordDef;
private System.Windows.Forms.GroupBox m_gbEntOptions;
private System.Windows.Forms.CheckBox m_cbEntAllowNone;
private System.Windows.Forms.TextBox m_ebEntMessage;
private System.Windows.Forms.Label m_txtEntMessage;
private System.Windows.Forms.GroupBox m_gbEntKwords;
private System.Windows.Forms.Button m_bnEntKwordClear;
private System.Windows.Forms.Button m_bnEntKwordEdit;
private System.Windows.Forms.Button m_bnEntKwordAdd;
private System.Windows.Forms.ListView m_lvEntKwords;
private System.Windows.Forms.ColumnHeader m_lvColEntKwordGlobal;
private System.Windows.Forms.ColumnHeader m_lvColEntKwordLocal;
private System.Windows.Forms.ColumnHeader m_lvColEntKwordDisplay;
private System.Windows.Forms.ColumnHeader m_lvColEntKwordEnabled;
private System.Windows.Forms.ColumnHeader m_lvColEntKwordVisible;
private System.Windows.Forms.Button m_bnEntKwordHardwire;
private System.Windows.Forms.TextBox m_ebEntKwordDef;
private System.Windows.Forms.Label m_txtEntKwordDef;
private System.Windows.Forms.GroupBox m_gbEntFilterClasses;
private System.Windows.Forms.CheckBox m_ebEntDoIsATest;
private System.Windows.Forms.CheckBox m_cbEntAllowCircles;
private System.Windows.Forms.CheckBox m_cbEntAllowLines;
private System.Windows.Forms.TextBox m_ebEntRejectMessage;
private System.Windows.Forms.Label m_txtEntRejectMessage;
private System.Windows.Forms.Label m_txtEntSampleFilter;
private System.Windows.Forms.CheckBox m_cbEntAllowCurves;
private System.Windows.Forms.CheckBox m_cbEntAllowLockedLayer;
private System.Windows.Forms.GroupBox m_gbNentKwords;
private System.Windows.Forms.Button m_bnNentKwordHardwire;
private System.Windows.Forms.TextBox m_ebNentKwordDef;
private System.Windows.Forms.Label m_txtNentKwordDef;
private System.Windows.Forms.Button m_bnNentKwordClear;
private System.Windows.Forms.Button m_bnNentKwordEdit;
private System.Windows.Forms.Button m_bnNentKwordAdd;
private System.Windows.Forms.ListView m_lvNentKwords;
private System.Windows.Forms.ColumnHeader m_lvColNentKwordsGlobal;
private System.Windows.Forms.ColumnHeader m_lvColNentKwordsLocal;
private System.Windows.Forms.ColumnHeader m_lvColNentKwordsDisplay;
private System.Windows.Forms.ColumnHeader m_lvColNentKwordsEnabled;
private System.Windows.Forms.ColumnHeader m_lvColNentKwordsVisible;
private System.Windows.Forms.GroupBox m_gbNentOptions;
private System.Windows.Forms.CheckBox m_cbNentAllowNone;
private System.Windows.Forms.TextBox m_ebNentMessage;
private System.Windows.Forms.Label m_txtNentMessage;
private System.Windows.Forms.CheckBox m_cbNentNonInterPickPt;
private System.ComponentModel.Container components = null;
// we're keeping a separate keyword collection for each page.
// Not sure I had to, but I wanted each prompt to be easy and
// quick to test.
private KeywordCollection m_kwordsInt = new KeywordCollection();
private KeywordCollection m_kwordsDbl = new KeywordCollection();
private KeywordCollection m_kwordsDist = new KeywordCollection();
private KeywordCollection m_kwordsAng = new KeywordCollection();
private KeywordCollection m_kwordsCrn = new KeywordCollection();
private KeywordCollection m_kwordsPt = new KeywordCollection();
private KeywordCollection m_kwordsKwd = new KeywordCollection();
private KeywordCollection m_kwordsEnt = new KeywordCollection();
private KeywordCollection m_kwordsNent = new KeywordCollection();
public
PromptTestForm()
{
InitializeComponent();
// hook up the backing data with controls so that we
// can deal with them generically later when we get
// event notification for the keywords on each page.
m_lvIntKeywords.Tag = m_kwordsInt;
m_bnIntKwordAdd.Tag = m_lvIntKeywords;
m_bnIntKwordEdit.Tag = m_lvIntKeywords;
m_bnIntKwordClear.Tag = m_lvIntKeywords;
m_bnIntKwordHardwire.Tag = m_lvIntKeywords;
m_lvDblKwords.Tag = m_kwordsDbl;
m_bnDblKwordAdd.Tag = m_lvDblKwords;
m_bnDblKwordEdit.Tag = m_lvDblKwords;
m_bnDblKwordClear.Tag = m_lvDblKwords;
m_bnDblKwordHardwire.Tag = m_lvDblKwords;
m_lvDistKwords.Tag = m_kwordsDist;
m_bnDistKwordAdd.Tag = m_lvDistKwords;
m_bnDistKwordEdit.Tag = m_lvDistKwords;
m_bnDistKwordClear.Tag = m_lvDistKwords;
m_bnDistKwordHardwire.Tag = m_lvDistKwords;
m_lvAngKwords.Tag = m_kwordsAng;
m_bnAngKwordAdd.Tag = m_lvAngKwords;
m_bnAngKwordEdit.Tag = m_lvAngKwords;
m_bnAngKwordClear.Tag = m_lvAngKwords;
m_bnAngKwordHardwire.Tag = m_lvAngKwords;
m_lvCrnKwords.Tag = m_kwordsCrn;
m_bnCrnKwordAdd.Tag = m_lvCrnKwords;
m_bnCrnKwordEdit.Tag = m_lvCrnKwords;
m_bnCrnKwordClear.Tag = m_lvCrnKwords;
m_bnCrnKwordHardwire.Tag = m_lvCrnKwords;
m_lvPtKwords.Tag = m_kwordsPt;
m_bnPtKwordAdd.Tag = m_lvPtKwords;
m_bnPtKwordEdit.Tag = m_lvPtKwords;
m_bnPtKwordClear.Tag = m_lvPtKwords;
m_bnPtKwordHardwire.Tag = m_lvPtKwords;
m_lvKwdKwords.Tag = m_kwordsKwd;
m_bnKwdKwordAdd.Tag = m_lvKwdKwords;
m_bnKwdKwordEdit.Tag = m_lvKwdKwords;
m_bnKwdKwordClear.Tag = m_lvKwdKwords;
m_bnKwdKwordHardwire.Tag = m_lvKwdKwords;
m_lvEntKwords.Tag = m_kwordsEnt;
m_bnEntKwordAdd.Tag = m_lvEntKwords;
m_bnEntKwordEdit.Tag = m_lvEntKwords;
m_bnEntKwordClear.Tag = m_lvEntKwords;
m_bnEntKwordHardwire.Tag = m_lvEntKwords;
m_lvNentKwords.Tag = m_kwordsNent;
m_bnNentKwordAdd.Tag = m_lvNentKwords;
m_bnNentKwordEdit.Tag = m_lvNentKwords;
m_bnNentKwordClear.Tag = m_lvNentKwords;
m_bnNentKwordHardwire.Tag = m_lvNentKwords;
// allocate a new PromptOptions and set the initial dialog
// state to these values. This way, we can see what the defaults
// are if you don't change any of the standard settings.
// PromptInteger
PromptIntegerOptions prOptInt = new PromptIntegerOptions("");
m_cbIntAllowArbitraryInput.Checked = prOptInt.AllowArbitraryInput;
m_cbIntAllowNone.Checked = prOptInt.AllowNone;
m_cbIntAllowZero.Checked = prOptInt.AllowZero;
m_cbIntAllowNegative.Checked = prOptInt.AllowNegative;
m_cbIntUseDefault.Checked = prOptInt.UseDefaultValue;
m_ebIntDefault.Enabled = prOptInt.UseDefaultValue;
m_ebIntDefault.Text = 0.ToString();
// PromptDouble
PromptDoubleOptions prOptDbl = new PromptDoubleOptions("");
m_cbDblAllowArbitraryInput.Checked = prOptDbl.AllowArbitraryInput;
m_cbDblAllowNone.Checked = prOptDbl.AllowNone;
m_cbDblAllowZero.Checked = prOptDbl.AllowZero;
m_cbDblAllowNegative.Checked = prOptDbl.AllowNegative;
m_cbDblUseDefault.Checked = prOptDbl.UseDefaultValue;
m_ebDblDefault.Enabled = prOptDbl.UseDefaultValue;
m_ebDblDefault.Text = 0.0.ToString();
// PromptDistance
PromptDistanceOptions prOptDist = new PromptDistanceOptions("");
m_cbDistAllowArbitraryInput.Checked = prOptDist.AllowArbitraryInput;
m_cbDistAllowNone.Checked = prOptDist.AllowNone;
m_cbDistAllowZero.Checked = prOptDist.AllowZero;
m_cbDistAllowNegative.Checked = prOptDist.AllowNegative;
m_cbDistUseBasePt.Checked = prOptDist.UseBasePoint;
m_cbDistUseDashedLine.Checked = prOptDist.UseDashedLine;
m_cbDistOnly2d.Checked = prOptDist.Only2d;
m_cbDistUseDefault.Checked = prOptDist.UseDefaultValue;
m_ebDistDefault.Enabled = prOptDist.UseDefaultValue;
m_ebDistDefault.Text = 0.0.ToString();
// PromptAngle
PromptAngleOptions prOptAng = new PromptAngleOptions("");
m_cbAngAllowArbitraryInput.Checked = prOptAng.AllowArbitraryInput;
m_cbAngAllowNone.Checked = prOptAng.AllowNone;
m_cbAngAllowZero.Checked = prOptAng.AllowZero;
m_cbAngUseBasePt.Checked = prOptAng.UseBasePoint;
m_cbAngUseDashedLine.Checked = prOptAng.UseDashedLine;
m_cbAngUseDefault.Checked = prOptAng.UseDefaultValue;
m_ebAngDefault.Enabled = prOptAng.UseDefaultValue;
m_ebAngDefault.Text = 0.0.ToString();
// PromptCorner
PromptCornerOptions prOptCrn = new PromptCornerOptions("", new Point3d(0.0, 0.0, 0.0));
m_cbCrnAllowArbitraryInput.Checked = prOptCrn.AllowArbitraryInput;
m_cbCrnAllowNone.Checked = prOptCrn.AllowNone;
m_cbCrnLimitsChecked.Checked = prOptCrn.LimitsChecked;
m_cbCrnUseDashedLine.Checked = prOptCrn.UseDashedLine;
// PromptPoint
PromptPointOptions prOptPt = new PromptPointOptions("");
m_cbPtAllowArbitraryInput.Checked = prOptPt.AllowArbitraryInput;
m_cbPtAllowNone.Checked = prOptPt.AllowNone;
m_cbPtLimitsChecked.Checked = prOptPt.LimitsChecked;
m_cbPtUseDashedLine.Checked = prOptPt.UseDashedLine;
m_cbPtUseBasePt.Checked = prOptPt.UseBasePoint;
// PromptString
PromptStringOptions prOptStr = new PromptStringOptions("");
m_cbStrAllowSpaces.Checked = prOptStr.AllowSpaces;
// PromptKeyword
PromptKeywordOptions prOptKwd = new PromptKeywordOptions("");
m_cbKwdAllowArbitraryInput.Checked = prOptKwd.AllowArbitraryInput;
m_cbKwdAllowNone.Checked = prOptKwd.AllowNone;
// PromptEntity
PromptEntityOptions prOptEnt = new PromptEntityOptions("");
m_cbEntAllowNone.Checked = prOptEnt.AllowNone;
// PromptNestedEntity
PromptNestedEntityOptions prOptNent = new PromptNestedEntityOptions("");
m_cbNentAllowNone.Checked = prOptNent.AllowNone;
m_cbNentNonInterPickPt.Checked = prOptNent.UseNonInteractivePickPoint;
}
/// <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.m_tcMain = new System.Windows.Forms.TabControl();
this.m_tpInteger = new System.Windows.Forms.TabPage();
this.m_gbKeywords = new System.Windows.Forms.GroupBox();
this.m_ebIntKwordDef = new System.Windows.Forms.TextBox();
this.m_txtIntKwordDef = new System.Windows.Forms.Label();
this.m_bnIntKwordHardwire = new System.Windows.Forms.Button();
this.m_bnIntKwordClear = new System.Windows.Forms.Button();
this.m_bnIntKwordEdit = new System.Windows.Forms.Button();
this.m_bnIntKwordAdd = new System.Windows.Forms.Button();
this.m_lvIntKeywords = new System.Windows.Forms.ListView();
this.m_lvColKwordGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwordLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwordDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwordEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwordVisible = new System.Windows.Forms.ColumnHeader();
this.m_gbOptionsInt = new System.Windows.Forms.GroupBox();
this.m_ebIntDefault = new System.Windows.Forms.TextBox();
this.m_txtIntDefault = new System.Windows.Forms.Label();
this.m_cbIntUseDefault = new System.Windows.Forms.CheckBox();
this.m_cbIntAllowNegative = new System.Windows.Forms.CheckBox();
this.m_cbIntAllowZero = new System.Windows.Forms.CheckBox();
this.m_cbIntAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbIntAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_txtMessage = new System.Windows.Forms.Label();
this.m_ebIntMessage = new System.Windows.Forms.TextBox();
this.m_tpDouble = new System.Windows.Forms.TabPage();
this.m_gbDblKwords = new System.Windows.Forms.GroupBox();
this.m_bnDblKwordHardwire = new System.Windows.Forms.Button();
this.m_ebDblKwordDef = new System.Windows.Forms.TextBox();
this.m_txtDblKwordDef = new System.Windows.Forms.Label();
this.m_bnDblKwordClear = new System.Windows.Forms.Button();
this.m_bnDblKwordEdit = new System.Windows.Forms.Button();
this.m_bnDblKwordAdd = new System.Windows.Forms.Button();
this.m_lvDblKwords = new System.Windows.Forms.ListView();
this.m_lvColDblGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColDblLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColDblDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColDblEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColDblVisible = new System.Windows.Forms.ColumnHeader();
this.m_gbDblOpts = new System.Windows.Forms.GroupBox();
this.m_ebDblDefault = new System.Windows.Forms.TextBox();
this.m_txtDblDefault = new System.Windows.Forms.Label();
this.m_cbDblUseDefault = new System.Windows.Forms.CheckBox();
this.m_cbDblAllowNegative = new System.Windows.Forms.CheckBox();
this.m_cbDblAllowZero = new System.Windows.Forms.CheckBox();
this.m_cbDblAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbDblAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_txtDblMessage = new System.Windows.Forms.Label();
this.m_ebDblMessage = new System.Windows.Forms.TextBox();
this.m_tpDistance = new System.Windows.Forms.TabPage();
this.m_gbDistKwords = new System.Windows.Forms.GroupBox();
this.m_bnDistKwordHardwire = new System.Windows.Forms.Button();
this.m_ebDistKwordDef = new System.Windows.Forms.TextBox();
this.m_txtDistKwordDef = new System.Windows.Forms.Label();
this.m_bnDistKwordClear = new System.Windows.Forms.Button();
this.m_bnDistKwordEdit = new System.Windows.Forms.Button();
this.m_bnDistKwordAdd = new System.Windows.Forms.Button();
this.m_lvDistKwords = new System.Windows.Forms.ListView();
this.m_lvColDistGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColDistLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColDistDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColDistEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColDistVisible = new System.Windows.Forms.ColumnHeader();
this.m_gbDistOptions = new System.Windows.Forms.GroupBox();
this.m_cbDistOnly2d = new System.Windows.Forms.CheckBox();
this.m_cbDistUseDashedLine = new System.Windows.Forms.CheckBox();
this.m_cbDistUseBasePt = new System.Windows.Forms.CheckBox();
this.m_ebDistDefault = new System.Windows.Forms.TextBox();
this.m_txtDistDefault = new System.Windows.Forms.Label();
this.m_cbDistUseDefault = new System.Windows.Forms.CheckBox();
this.m_cbDistAllowNegative = new System.Windows.Forms.CheckBox();
this.m_cbDistAllowZero = new System.Windows.Forms.CheckBox();
this.m_cbDistAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbDistAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_txtDistMessage = new System.Windows.Forms.Label();
this.m_ebDistMessage = new System.Windows.Forms.TextBox();
this.m_tpAngle = new System.Windows.Forms.TabPage();
this.m_txtAngMessage = new System.Windows.Forms.Label();
this.m_ebAngMessage = new System.Windows.Forms.TextBox();
this.m_gbAngOptions = new System.Windows.Forms.GroupBox();
this.m_cbAngUseDefault = new System.Windows.Forms.CheckBox();
this.m_cbAngUseDashedLine = new System.Windows.Forms.CheckBox();
this.m_ebAngDefault = new System.Windows.Forms.TextBox();
this.m_txtAngDefault = new System.Windows.Forms.Label();
this.m_cbAngUseBasePt = new System.Windows.Forms.CheckBox();
this.m_cbAngAllowZero = new System.Windows.Forms.CheckBox();
this.m_cbAngAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbAngAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_gbAngKwords = new System.Windows.Forms.GroupBox();
this.m_bnAngKwordHardwire = new System.Windows.Forms.Button();
this.m_ebAngKwordDef = new System.Windows.Forms.TextBox();
this.m_txtAngKwordDef = new System.Windows.Forms.Label();
this.m_bnAngKwordClear = new System.Windows.Forms.Button();
this.m_bnAngKwordEdit = new System.Windows.Forms.Button();
this.m_bnAngKwordAdd = new System.Windows.Forms.Button();
this.m_lvAngKwords = new System.Windows.Forms.ListView();
this.m_lvColAngGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColAngLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColAngDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColAngEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColAngVisible = new System.Windows.Forms.ColumnHeader();
this.m_tpCorner = new System.Windows.Forms.TabPage();
this.m_gbCrnOptions = new System.Windows.Forms.GroupBox();
this.m_cbCrnUseDashedLine = new System.Windows.Forms.CheckBox();
this.m_cbCrnLimitsChecked = new System.Windows.Forms.CheckBox();
this.m_cbCrnAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbCrnAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_gbCrnKwords = new System.Windows.Forms.GroupBox();
this.m_bnCrnKwordHardwire = new System.Windows.Forms.Button();
this.m_ebCrnKwordDef = new System.Windows.Forms.TextBox();
this.m_txtCrnKwordDef = new System.Windows.Forms.Label();
this.m_bnCrnKwordClear = new System.Windows.Forms.Button();
this.m_bnCrnKwordEdit = new System.Windows.Forms.Button();
this.m_bnCrnKwordAdd = new System.Windows.Forms.Button();
this.m_lvCrnKwords = new System.Windows.Forms.ListView();
this.m_lvColCrnGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColCrnLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColCrnDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColCrnEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColCrnVisible = new System.Windows.Forms.ColumnHeader();
this.m_ebCrnMessage = new System.Windows.Forms.TextBox();
this.m_txtCrnMessage = new System.Windows.Forms.Label();
this.m_tpPoint = new System.Windows.Forms.TabPage();
this.m_gbPtOptions = new System.Windows.Forms.GroupBox();
this.m_cbPtUseBasePt = new System.Windows.Forms.CheckBox();
this.m_cbPtUseDashedLine = new System.Windows.Forms.CheckBox();
this.m_cbPtLimitsChecked = new System.Windows.Forms.CheckBox();
this.m_cbPtAllowNone = new System.Windows.Forms.CheckBox();
this.m_cbPtAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_gbPtKwords = new System.Windows.Forms.GroupBox();
this.m_bnPtKwordHardwire = new System.Windows.Forms.Button();
this.m_ebPtKwordDef = new System.Windows.Forms.TextBox();
this.m_txtPtKwordDef = new System.Windows.Forms.Label();
this.m_bnPtKwordClear = new System.Windows.Forms.Button();
this.m_bnPtKwordEdit = new System.Windows.Forms.Button();
this.m_bnPtKwordAdd = new System.Windows.Forms.Button();
this.m_lvPtKwords = new System.Windows.Forms.ListView();
this.m_lvColPtGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColPtLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColPtDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColPtEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColPtVisible = new System.Windows.Forms.ColumnHeader();
this.m_ebPtMessage = new System.Windows.Forms.TextBox();
this.m_txtPtMessage = new System.Windows.Forms.Label();
this.m_tpString = new System.Windows.Forms.TabPage();
this.m_gbStrOptions = new System.Windows.Forms.GroupBox();
this.m_cbStrAllowSpaces = new System.Windows.Forms.CheckBox();
this.m_ebStrMessage = new System.Windows.Forms.TextBox();
this.m_txtStrMessage = new System.Windows.Forms.Label();
this.m_tpKeyword = new System.Windows.Forms.TabPage();
this.m_gbKwdOptions = new System.Windows.Forms.GroupBox();
this.m_cbKwdAllowArbitraryInput = new System.Windows.Forms.CheckBox();
this.m_cbKwdAllowNone = new System.Windows.Forms.CheckBox();
this.m_gbKwdKwords = new System.Windows.Forms.GroupBox();
this.m_bnKwdKwordHardwire = new System.Windows.Forms.Button();
this.m_ebKwdKwordDef = new System.Windows.Forms.TextBox();
this.m_txtKwdKwordDef = new System.Windows.Forms.Label();
this.m_bnKwdKwordClear = new System.Windows.Forms.Button();
this.m_bnKwdKwordEdit = new System.Windows.Forms.Button();
this.m_bnKwdKwordAdd = new System.Windows.Forms.Button();
this.m_lvKwdKwords = new System.Windows.Forms.ListView();
this.m_lvColKwdGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwdLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwdDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwdEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColKwdVisible = new System.Windows.Forms.ColumnHeader();
this.m_ebKwdMessage = new System.Windows.Forms.TextBox();
this.m_txtKwdMessage = new System.Windows.Forms.Label();
this.m_tpEntity = new System.Windows.Forms.TabPage();
this.m_gbEntFilterClasses = new System.Windows.Forms.GroupBox();
this.m_cbEntAllowCurves = new System.Windows.Forms.CheckBox();
this.m_txtEntSampleFilter = new System.Windows.Forms.Label();
this.m_ebEntDoIsATest = new System.Windows.Forms.CheckBox();
this.m_cbEntAllowCircles = new System.Windows.Forms.CheckBox();
this.m_cbEntAllowLines = new System.Windows.Forms.CheckBox();
this.m_ebEntRejectMessage = new System.Windows.Forms.TextBox();
this.m_txtEntRejectMessage = new System.Windows.Forms.Label();
this.m_gbEntKwords = new System.Windows.Forms.GroupBox();
this.m_bnEntKwordHardwire = new System.Windows.Forms.Button();
this.m_ebEntKwordDef = new System.Windows.Forms.TextBox();
this.m_txtEntKwordDef = new System.Windows.Forms.Label();
this.m_bnEntKwordClear = new System.Windows.Forms.Button();
this.m_bnEntKwordEdit = new System.Windows.Forms.Button();
this.m_bnEntKwordAdd = new System.Windows.Forms.Button();
this.m_lvEntKwords = new System.Windows.Forms.ListView();
this.m_lvColEntKwordGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColEntKwordLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColEntKwordDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColEntKwordEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColEntKwordVisible = new System.Windows.Forms.ColumnHeader();
this.m_gbEntOptions = new System.Windows.Forms.GroupBox();
this.m_cbEntAllowLockedLayer = new System.Windows.Forms.CheckBox();
this.m_cbEntAllowNone = new System.Windows.Forms.CheckBox();
this.m_ebEntMessage = new System.Windows.Forms.TextBox();
this.m_txtEntMessage = new System.Windows.Forms.Label();
this.m_tpNested = new System.Windows.Forms.TabPage();
this.m_gbNentKwords = new System.Windows.Forms.GroupBox();
this.m_bnNentKwordHardwire = new System.Windows.Forms.Button();
this.m_ebNentKwordDef = new System.Windows.Forms.TextBox();
this.m_txtNentKwordDef = new System.Windows.Forms.Label();
this.m_bnNentKwordClear = new System.Windows.Forms.Button();
this.m_bnNentKwordEdit = new System.Windows.Forms.Button();
this.m_bnNentKwordAdd = new System.Windows.Forms.Button();
this.m_lvNentKwords = new System.Windows.Forms.ListView();
this.m_lvColNentKwordsGlobal = new System.Windows.Forms.ColumnHeader();
this.m_lvColNentKwordsLocal = new System.Windows.Forms.ColumnHeader();
this.m_lvColNentKwordsDisplay = new System.Windows.Forms.ColumnHeader();
this.m_lvColNentKwordsEnabled = new System.Windows.Forms.ColumnHeader();
this.m_lvColNentKwordsVisible = new System.Windows.Forms.ColumnHeader();
this.m_gbNentOptions = new System.Windows.Forms.GroupBox();
this.m_cbNentNonInterPickPt = new System.Windows.Forms.CheckBox();
this.m_cbNentAllowNone = new System.Windows.Forms.CheckBox();
this.m_ebNentMessage = new System.Windows.Forms.TextBox();
this.m_txtNentMessage = new System.Windows.Forms.Label();
this.m_bnRunTest = new System.Windows.Forms.Button();
this.m_bnCancel = new System.Windows.Forms.Button();
this.m_tcMain.SuspendLayout();
this.m_tpInteger.SuspendLayout();
this.m_gbKeywords.SuspendLayout();
this.m_gbOptionsInt.SuspendLayout();
this.m_tpDouble.SuspendLayout();
this.m_gbDblKwords.SuspendLayout();
this.m_gbDblOpts.SuspendLayout();
this.m_tpDistance.SuspendLayout();
this.m_gbDistKwords.SuspendLayout();
this.m_gbDistOptions.SuspendLayout();
this.m_tpAngle.SuspendLayout();
this.m_gbAngOptions.SuspendLayout();
this.m_gbAngKwords.SuspendLayout();
this.m_tpCorner.SuspendLayout();
this.m_gbCrnOptions.SuspendLayout();
this.m_gbCrnKwords.SuspendLayout();
this.m_tpPoint.SuspendLayout();
this.m_gbPtOptions.SuspendLayout();
this.m_gbPtKwords.SuspendLayout();
this.m_tpString.SuspendLayout();
this.m_gbStrOptions.SuspendLayout();
this.m_tpKeyword.SuspendLayout();
this.m_gbKwdOptions.SuspendLayout();
this.m_gbKwdKwords.SuspendLayout();
this.m_tpEntity.SuspendLayout();
this.m_gbEntFilterClasses.SuspendLayout();
this.m_gbEntKwords.SuspendLayout();
this.m_gbEntOptions.SuspendLayout();
this.m_tpNested.SuspendLayout();
this.m_gbNentKwords.SuspendLayout();
this.m_gbNentOptions.SuspendLayout();
this.SuspendLayout();
//
// m_tcMain
//
this.m_tcMain.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_tpInteger,
this.m_tpDouble,
this.m_tpDistance,
this.m_tpAngle,
this.m_tpCorner,
this.m_tpPoint,
this.m_tpString,
this.m_tpKeyword,
this.m_tpEntity,
this.m_tpNested});
this.m_tcMain.Location = new System.Drawing.Point(16, 16);
this.m_tcMain.Name = "m_tcMain";
this.m_tcMain.SelectedIndex = 0;
this.m_tcMain.Size = new System.Drawing.Size(616, 344);
this.m_tcMain.TabIndex = 0;
this.m_tcMain.Click += new System.EventHandler(this.OnEntAllowLines);
//
// m_tpInteger
//
this.m_tpInteger.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_gbKeywords,
this.m_gbOptionsInt,
this.m_txtMessage,
this.m_ebIntMessage});
this.m_tpInteger.Location = new System.Drawing.Point(4, 22);
this.m_tpInteger.Name = "m_tpInteger";
this.m_tpInteger.Size = new System.Drawing.Size(608, 318);
this.m_tpInteger.TabIndex = 0;
this.m_tpInteger.Text = "Integer";
//
// m_gbKeywords
//
this.m_gbKeywords.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_ebIntKwordDef,
this.m_txtIntKwordDef,
this.m_bnIntKwordHardwire,
this.m_bnIntKwordClear,
this.m_bnIntKwordEdit,
this.m_bnIntKwordAdd,
this.m_lvIntKeywords});
this.m_gbKeywords.Location = new System.Drawing.Point(200, 48);
this.m_gbKeywords.Name = "m_gbKeywords";
this.m_gbKeywords.Size = new System.Drawing.Size(392, 264);
this.m_gbKeywords.TabIndex = 2;
this.m_gbKeywords.TabStop = false;
this.m_gbKeywords.Text = "Key Words";
//
// m_ebIntKwordDef
//
this.m_ebIntKwordDef.Location = new System.Drawing.Point(272, 232);
this.m_ebIntKwordDef.Name = "m_ebIntKwordDef";
this.m_ebIntKwordDef.Size = new System.Drawing.Size(96, 20);
this.m_ebIntKwordDef.TabIndex = 6;
this.m_ebIntKwordDef.Text = "";
//
// m_txtIntKwordDef
//
this.m_txtIntKwordDef.Location = new System.Drawing.Point(216, 232);
this.m_txtIntKwordDef.Name = "m_txtIntKwordDef";
this.m_txtIntKwordDef.Size = new System.Drawing.Size(48, 23);
this.m_txtIntKwordDef.TabIndex = 5;
this.m_txtIntKwordDef.Text = "Default";
//
// m_bnIntKwordHardwire
//
this.m_bnIntKwordHardwire.Location = new System.Drawing.Point(24, 200);
this.m_bnIntKwordHardwire.Name = "m_bnIntKwordHardwire";
this.m_bnIntKwordHardwire.Size = new System.Drawing.Size(88, 23);
this.m_bnIntKwordHardwire.TabIndex = 4;
this.m_bnIntKwordHardwire.Text = "Hardwire";
this.m_bnIntKwordHardwire.Click += new System.EventHandler(this.OnKwordHardwire);
//
// m_bnIntKwordClear
//
this.m_bnIntKwordClear.Location = new System.Drawing.Point(296, 200);
this.m_bnIntKwordClear.Name = "m_bnIntKwordClear";
this.m_bnIntKwordClear.TabIndex = 3;
this.m_bnIntKwordClear.Text = "Clear";
this.m_bnIntKwordClear.Click += new System.EventHandler(this.OnKwordClear);
//
// m_bnIntKwordEdit
//
this.m_bnIntKwordEdit.Location = new System.Drawing.Point(208, 200);
this.m_bnIntKwordEdit.Name = "m_bnIntKwordEdit";
this.m_bnIntKwordEdit.TabIndex = 2;
this.m_bnIntKwordEdit.Text = "Edit...";
this.m_bnIntKwordEdit.Click += new System.EventHandler(this.OnKwordEdit);
//
// m_bnIntKwordAdd
//
this.m_bnIntKwordAdd.Location = new System.Drawing.Point(120, 200);
this.m_bnIntKwordAdd.Name = "m_bnIntKwordAdd";
this.m_bnIntKwordAdd.TabIndex = 1;
this.m_bnIntKwordAdd.Text = "Add...";
this.m_bnIntKwordAdd.Click += new System.EventHandler(this.OnKwordAdd);
//
// m_lvIntKeywords
//
this.m_lvIntKeywords.CausesValidation = false;
this.m_lvIntKeywords.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.m_lvColKwordGlobal,
this.m_lvColKwordLocal,
this.m_lvColKwordDisplay,
this.m_lvColKwordEnabled,
this.m_lvColKwordVisible});
this.m_lvIntKeywords.FullRowSelect = true;
this.m_lvIntKeywords.GridLines = true;
this.m_lvIntKeywords.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.m_lvIntKeywords.HideSelection = false;
this.m_lvIntKeywords.Location = new System.Drawing.Point(16, 24);
this.m_lvIntKeywords.MultiSelect = false;
this.m_lvIntKeywords.Name = "m_lvIntKeywords";
this.m_lvIntKeywords.Size = new System.Drawing.Size(360, 168);
this.m_lvIntKeywords.TabIndex = 0;
this.m_lvIntKeywords.View = System.Windows.Forms.View.Details;
//
// m_lvColKwordGlobal
//
this.m_lvColKwordGlobal.Text = "Global";
this.m_lvColKwordGlobal.Width = 80;
//
// m_lvColKwordLocal
//
this.m_lvColKwordLocal.Text = "Local";
this.m_lvColKwordLocal.Width = 80;
//
// m_lvColKwordDisplay
//
this.m_lvColKwordDisplay.Text = "Display";
this.m_lvColKwordDisplay.Width = 80;
//
// m_lvColKwordEnabled
//
this.m_lvColKwordEnabled.Text = "Enabled";
//
// m_lvColKwordVisible
//
this.m_lvColKwordVisible.Text = "Visible";
//
// m_gbOptionsInt
//
this.m_gbOptionsInt.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_ebIntDefault,
this.m_txtIntDefault,
this.m_cbIntUseDefault,
this.m_cbIntAllowNegative,
this.m_cbIntAllowZero,
this.m_cbIntAllowNone,
this.m_cbIntAllowArbitraryInput});
this.m_gbOptionsInt.Location = new System.Drawing.Point(16, 48);
this.m_gbOptionsInt.Name = "m_gbOptionsInt";
this.m_gbOptionsInt.Size = new System.Drawing.Size(168, 264);
this.m_gbOptionsInt.TabIndex = 0;
this.m_gbOptionsInt.TabStop = false;
this.m_gbOptionsInt.Text = "Options";
//
// m_ebIntDefault
//
this.m_ebIntDefault.Location = new System.Drawing.Point(64, 152);
this.m_ebIntDefault.Name = "m_ebIntDefault";
this.m_ebIntDefault.Size = new System.Drawing.Size(88, 20);
this.m_ebIntDefault.TabIndex = 6;
this.m_ebIntDefault.Text = "";
//
// m_txtIntDefault
//
this.m_txtIntDefault.Location = new System.Drawing.Point(8, 152);
this.m_txtIntDefault.Name = "m_txtIntDefault";
this.m_txtIntDefault.Size = new System.Drawing.Size(56, 23);
this.m_txtIntDefault.TabIndex = 5;
this.m_txtIntDefault.Text = "Default";
//
// m_cbIntUseDefault
//
this.m_cbIntUseDefault.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.m_cbIntUseDefault.Location = new System.Drawing.Point(8, 120);
this.m_cbIntUseDefault.Name = "m_cbIntUseDefault";
this.m_cbIntUseDefault.Size = new System.Drawing.Size(144, 24);
this.m_cbIntUseDefault.TabIndex = 4;
this.m_cbIntUseDefault.Text = "Use Default Value";
this.m_cbIntUseDefault.Click += new System.EventHandler(this.OnIntUseDefaultValue);
//
// m_cbIntAllowNegative
//
this.m_cbIntAllowNegative.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.m_cbIntAllowNegative.Location = new System.Drawing.Point(8, 96);
this.m_cbIntAllowNegative.Name = "m_cbIntAllowNegative";
this.m_cbIntAllowNegative.TabIndex = 3;
this.m_cbIntAllowNegative.Text = "Allow Negative";
//
// m_cbIntAllowZero
//
this.m_cbIntAllowZero.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.m_cbIntAllowZero.Location = new System.Drawing.Point(8, 72);
this.m_cbIntAllowZero.Name = "m_cbIntAllowZero";
this.m_cbIntAllowZero.TabIndex = 2;
this.m_cbIntAllowZero.Text = "Allow Zero";
//
// m_cbIntAllowNone
//
this.m_cbIntAllowNone.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.m_cbIntAllowNone.Location = new System.Drawing.Point(8, 48);
this.m_cbIntAllowNone.Name = "m_cbIntAllowNone";
this.m_cbIntAllowNone.Size = new System.Drawing.Size(128, 24);
this.m_cbIntAllowNone.TabIndex = 1;
this.m_cbIntAllowNone.Text = "Allow None";
//
// m_cbIntAllowArbitraryInput
//
this.m_cbIntAllowArbitraryInput.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.m_cbIntAllowArbitraryInput.Location = new System.Drawing.Point(8, 24);
this.m_cbIntAllowArbitraryInput.Name = "m_cbIntAllowArbitraryInput";
this.m_cbIntAllowArbitraryInput.Size = new System.Drawing.Size(136, 24);
this.m_cbIntAllowArbitraryInput.TabIndex = 0;
this.m_cbIntAllowArbitraryInput.Text = "Allow Arbitrary Input";
//
// m_txtMessage
//
this.m_txtMessage.Location = new System.Drawing.Point(16, 16);
this.m_txtMessage.Name = "m_txtMessage";
this.m_txtMessage.Size = new System.Drawing.Size(56, 23);
this.m_txtMessage.TabIndex = 1;
this.m_txtMessage.Text = "Message";
//
// m_ebIntMessage
//
this.m_ebIntMessage.Location = new System.Drawing.Point(88, 16);
this.m_ebIntMessage.Name = "m_ebIntMessage";
this.m_ebIntMessage.Size = new System.Drawing.Size(504, 20);
this.m_ebIntMessage.TabIndex = 0;
this.m_ebIntMessage.Text = "Enter an integer";
//
// m_tpDouble
//
this.m_tpDouble.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_gbDblKwords,
this.m_gbDblOpts,
this.m_txtDblMessage,
this.m_ebDblMessage});
this.m_tpDouble.Location = new System.Drawing.Point(4, 22);
this.m_tpDouble.Name = "m_tpDouble";
this.m_tpDouble.Size = new System.Drawing.Size(608, 318);
this.m_tpDouble.TabIndex = 1;
this.m_tpDouble.Text = "Double";
//
// m_gbDblKwords
//
this.m_gbDblKwords.Controls.AddRange(new System.Windows.Forms.Control[] {
this.m_bnDblKwordHardwire,
this.m_ebDblKwordDef,
this.m_txtDblKwordDef,
this.m_bnDblKwordClear,
this.m_bnDblKwordEdit,
this.m_bnDblKwordAdd,
this.m_lvDblKwords});
this.m_gbDblKwords.Location = new System.Drawing.Point(200, 48);
this.m_gbDblKwords.Name = "m_gbDblKwords";
this.m_gbDblKwords.Size = new System.Drawing.Size(392, 264);
this.m_gbDblKwords.TabIndex = 5;
this.m_gbDblKwords.TabStop = false;
this.m_gbDblKwords.Text = "Key Words";
//
// m_bnDblKwordHardwire
//
this.m_bnDblKwordHardwire.Location = new System.Drawing.Point(24, 200);
this.m_bnDblKwordHardwire.Name = "m_bnDblKwordHardwire";
this.m_bnDblKwordHardwire.Size = new System.Drawing.Size(88, 23);
this.m_bnDblKwordHardwire.TabIndex = 9;
this.m_bnDblKwordHardwire.Text = "Hardwire";
this.m_bnDblKwordHardwire.Click += new System.EventHandler(this.OnKwordHardwire);
//
// m_ebDblKwordDef
//
this.m_ebDblKwordDef.Location = new System.Drawing.Point(272, 232);
this.m_ebDblKwordDef.Name = "m_ebDblKwordDef";
this.m_ebDblKwordDef.Size = new System.Drawing.Size(96, 20);
this.m_ebDblKwordDef.TabIndex = 8;
this.m_ebDblKwordDef.Text = "";
//
// m_txtDblKwordDef
//
this.m_txtDblKwordDef.Location = new System.Drawing.Point(216, 232);
this.m_txtDblKwordDef.Name = "m_txtDblKwordDef";
this.m_txtDblKwordDef.Size = new System.Drawing.Size(48, 23);
this.m_txtDblKwordDef.TabIndex = 7;
this.m_txtDblKwordDef.Text = "Default";
//
// m_bnDblKwordClear
//
this.m_bnDblKwordClear.Location = new System.Drawing.Point(296, 200);
this.m_bnDblKwordClear.Name = "m_bnDblKwordClear";
this.m_bnDblKwordClear.TabIndex = 3;
this.m_bnDblKwordClear.Text = "Clear";
this.m_bnDblKwordClear.Click += new System.EventHandler(this.OnKwordClear);
//
// m_bnDblKwordEdit
//