-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMainForm.dfm
1613 lines (1613 loc) · 47.6 KB
/
MainForm.dfm
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
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'Delphi Code Coverage Wizard'
ClientHeight = 505
ClientWidth = 624
Color = clBtnFace
Constraints.MinHeight = 426
Constraints.MinWidth = 636
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
Position = poDesigned
ShowHint = True
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
TextHeight = 15
object cp_Main: TCardPanel
Left = 0
Top = 0
Width = 624
Height = 505
Align = alClient
ActiveCard = crd_EditSettings
BevelEdges = []
BevelOuter = bvNone
Caption = 'cp_Main'
TabOrder = 0
object crd_Start: TCard
Left = 0
Top = 0
Width = 624
Height = 505
BevelEdges = []
Caption = 'crd_Start'
CardIndex = 0
TabOrder = 0
DesignSize = (
624
505)
object LabelRecentProjectsCaption: TLabel
Left = 128
Top = 16
Width = 84
Height = 15
Caption = 'Recent projects:'
end
object ButtonNew: TButton
Left = 13
Top = 16
Width = 95
Height = 73
Hint = 'Create a new project'
Caption = '&New'
ImageAlignment = iaTop
ImageIndex = 1
ImageName = 'Actions-document-new-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 0
OnClick = ButtonNewClick
end
object ButtonOpen: TButton
Left = 13
Top = 112
Width = 95
Height = 73
Hint = 'Open an existing project for editing'
Caption = '&Open'
ImageAlignment = iaTop
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 1
OnClick = ButtonOpenClick
end
object ButtonRun: TButton
Left = 13
Top = 208
Width = 95
Height = 73
Hint = 'Open an existing project and run it'
Caption = '&Run'
ImageAlignment = iaTop
ImageIndex = 0
ImageName = 'Actions-arrow-right-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 2
OnClick = ButtonRunClick
end
object ButtonAbout: TButton
Left = 13
Top = 304
Width = 95
Height = 73
Hint = 'DIsplay copyright dialog'
Caption = '&About'
ImageAlignment = iaTop
ImageIndex = 4
ImageName = 'Actions-help-about-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 3
OnClick = ButtonAboutClick
end
object ListViewProjects: TListView
Left = 128
Top = 37
Width = 480
Height = 407
Anchors = [akLeft, akTop, akRight, akBottom]
Columns = <
item
Caption = 'Folder'
Width = 250
end
item
Caption = 'Project'
Width = 200
end>
GridLines = True
MultiSelect = True
ReadOnly = True
RowSelect = True
PopupMenu = PopupMenuRecentProjects
TabOrder = 4
ViewStyle = vsReport
OnDblClick = ListViewProjectsDblClick
end
object ButtonOpenRecent: TButton
Left = 128
Top = 452
Width = 158
Height = 42
Hint = 'Open the selected project for editing'
Anchors = [akLeft, akBottom]
Caption = 'O&pen selected'
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 5
OnClick = ButtonOpenRecentClick
end
object ButtonRunRecent: TButton
Left = 289
Top = 452
Width = 158
Height = 42
Hint = 'Open and directly run the selected project'
Anchors = [akLeft, akBottom]
Caption = 'R&un selected'
ImageIndex = 0
ImageName = 'Actions-arrow-right-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 6
OnClick = ButtonRunRecentClick
end
object ButtonDeleteSelected: TButton
Left = 450
Top = 452
Width = 158
Height = 42
Hint = 'Delete the selected project from list only'
Anchors = [akLeft, akBottom]
Caption = 'R&emove selected'
ImageIndex = 5
ImageName = 'Actions-trash-empty-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 7
OnClick = ButtonDeleteSelectedClick
end
end
object crd_EditSettings: TCard
Left = 0
Top = 0
Width = 624
Height = 505
BevelEdges = []
Caption = 'crd_EditSettings'
CardIndex = 1
TabOrder = 1
DesignSize = (
624
505)
object cp_Wizard: TCardPanel
Left = 200
Top = 60
Width = 424
Height = 394
Anchors = [akLeft, akTop, akRight, akBottom]
ActiveCard = crd_MiscSettings
BevelEdges = [beBottom]
BevelOuter = bvNone
Caption = 'cp_Wizard'
TabOrder = 0
object crd_UnitTestExecutable: TCard
Left = 0
Top = 0
Width = 424
Height = 394
BevelEdges = []
Caption = 'crd_UnitTestExecutable'
CardIndex = 0
TabOrder = 0
OnEnter = crd_UnitTestExecutableEnter
object ScrollBoxUnitTestExecutable: TScrollBox
Left = 0
Top = 0
Width = 424
Height = 394
Align = alClient
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
TabOrder = 0
DesignSize = (
424
394)
object Label2: TLabel
Left = 8
Top = 248
Width = 320
Height = 15
Caption = 'Command line parameters passed to the program to run (-a)'
end
object LabelCodeCoveragePath: TLabel
Left = 8
Top = 176
Width = 140
Height = 15
Caption = 'Path to CodeCoverage.exe'
end
object LabelUnitTestExe: TLabel
Left = 8
Top = 24
Width = 212
Height = 15
Caption = 'Executable file of the unit test to analyze'
end
object LabelUnitTestMap: TLabel
Left = 8
Top = 104
Width = 179
Height = 15
Caption = 'Map file of the unit test to analyze'
end
object ButtonOpenCodeCoverage: TButton
Left = 353
Top = 196
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 0
OnClick = ButtonOpenCodeCoverageClick
end
object ButtonOpenExe: TButton
Left = 353
Top = 44
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 1
OnClick = ButtonOpenExeClick
end
object ButtonOpenMap: TButton
Left = 353
Top = 124
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 2
OnClick = ButtonOpenMapClick
end
object CheckBoxUseApplicationWorkingDir: TCheckBox
Left = 8
Top = 320
Width = 385
Height = 17
Caption = 'Use unit test application directory as working directory (-twd)'
TabOrder = 3
OnClick = CheckBoxUseApplicationWorkingDirClick
end
object EditCodeCoverageExe: TEdit
Left = 8
Top = 197
Width = 336
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
OnChange = EditCodeCoverageExeChange
end
object EditCommandLineParams: TEdit
Left = 8
Top = 269
Width = 395
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 5
OnChange = EditCommandLineParamsChange
end
object EditExeFile: TEdit
Left = 8
Top = 45
Width = 336
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 6
OnChange = EditExeFileChange
end
object EditMapFile: TEdit
Left = 8
Top = 125
Width = 336
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 7
OnChange = EditMapFileChange
end
end
end
object crd_Source: TCard
Left = 0
Top = 0
Width = 424
Height = 394
BevelEdges = []
Caption = 'crd_Source'
CardIndex = 1
TabOrder = 1
OnEnter = crd_SourceEnter
DesignSize = (
424
394)
object LabelSourceFilesPath: TLabel
Left = 8
Top = 16
Width = 286
Height = 15
Caption = 'Directory with the source files of the project to analyze'
end
object LabelSourceFilesCaption: TLabel
Left = 8
Top = 107
Width = 116
Height = 15
Caption = 'Source files to analyze'
end
object LabelCodePage: TLabel
Left = 8
Top = 78
Width = 260
Height = 15
Caption = 'Code page (optional, leave empty otherwise, -cp)'
end
object EditSourcePath: TEdit
Left = 8
Top = 37
Width = 352
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = EditSourcePathChange
end
object ButtonSourcePath: TButton
Left = 366
Top = 36
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 1
OnClick = ButtonSourcePathClick
end
object CheckListBoxSource: TCheckListBox
Left = 8
Top = 128
Width = 406
Height = 213
Anchors = [akLeft, akTop, akRight, akBottom]
ItemHeight = 17
TabOrder = 3
OnClickCheck = CheckListBoxSourceClickCheck
end
object b_SelectAll: TButton
Left = -1
Top = 345
Width = 138
Height = 42
Hint = 'Select all source files'
Anchors = [akLeft, akBottom]
Caption = 'Select &all'
ImageIndex = 11
ImageName = 'Actions-edit-select-all-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 4
OnClick = b_SelectAllClick
end
object b_DeselectAll: TButton
Left = 139
Top = 345
Width = 138
Height = 42
Hint = 'deselect all source files'
Anchors = [akLeft, akBottom]
Caption = '&Deselect all'
ImageIndex = 10
ImageName = 'Actions-edit-clear-list-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 5
OnClick = b_DeselectAllClick
end
object b_RefreshSourceFiles: TButton
Left = 280
Top = 345
Width = 138
Height = 42
Hint = 'Refresh file list'
Anchors = [akLeft, akBottom]
Caption = '&Refresh'
ImageIndex = 12
ImageName = 'Actions-view-refresh-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 6
OnClick = b_RefreshSourceFilesClick
end
object EditCodePage: TEdit
Left = 295
Top = 75
Width = 66
Height = 23
NumbersOnly = True
TabOrder = 2
OnChange = EditCodePageChange
end
end
object crd_Output: TCard
Left = 0
Top = 0
Width = 424
Height = 394
BevelEdges = []
Caption = 'crd_Output'
CardIndex = 2
TabOrder = 2
OnEnter = crd_OutputEnter
object ScrollBoxOutputSettings: TScrollBox
Left = 0
Top = 0
Width = 424
Height = 394
HorzScrollBar.Visible = False
Align = alClient
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
TabOrder = 0
DesignSize = (
407
394)
object Bevel1: TBevel
Left = 93
Top = 133
Width = 321
Height = 1
end
object LabelOutputFormatsCaption: TLabel
Left = 5
Top = 125
Width = 82
Height = 15
Caption = 'Output formats'
end
object LabelReportOutputPath: TLabel
Left = 5
Top = 69
Width = 317
Height = 15
Caption = 'Save generated reports (HTML, XML, EMMA...) to this folder:'
end
object LabelScriptOutputPath: TLabel
Left = 5
Top = 5
Width = 350
Height = 15
Caption = 'Batch output folder (files needed to execute DelphiCodeCoverage)'
end
object ButtonReportOutputFolder: TButton
Left = 355
Top = 89
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 0
OnClick = ButtonReportOutputFolderClick
end
object ButtonScriptOutputFolder: TButton
Left = 355
Top = 25
Width = 50
Height = 25
Anchors = [akTop, akRight]
ImageAlignment = iaCenter
ImageIndex = 2
ImageName = 'Actions-document-open-folder-icon'
Images = VirtualImageListButtons16
TabOrder = 1
OnClick = ButtonScriptOutputFolderClick
OnExit = ButtonScriptOutputFolderExit
end
object CheckBoxEMMA: TCheckBox
Left = 8
Top = 148
Width = 297
Height = 17
Caption = 'EMMA coverage output as '#39'coverage.es'#39' (-emma)'
TabOrder = 2
OnClick = CheckBoxEMMAClick
end
object CheckBoxHTML: TCheckBox
Left = 8
Top = 436
Width = 385
Height = 17
Caption = 'HTML coverage output as '#39'CodeCoverage_Summary.html'#39' (-html)'
TabOrder = 3
OnClick = CheckBoxHTMLClick
end
object CheckBoxMeta: TCheckBox
Left = 29
Top = 180
Width = 249
Height = 17
Caption = 'META data and coverage data (-meta)'
Enabled = False
TabOrder = 4
OnClick = CheckBoxMetaClick
end
object CheckBoxXML: TCheckBox
Left = 8
Top = 276
Width = 377
Height = 17
Caption = 'XML coverage output as '#39'CodeCoverage_Summary.xml'#39' (-xml)'
TabOrder = 5
OnClick = CheckBoxXMLClick
end
object EditReportOutputFolder: TEdit
Left = 5
Top = 90
Width = 344
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 6
OnChange = EditReportOutputFolderExit
end
object EditScriptOutputFolder: TEdit
Left = 5
Top = 26
Width = 344
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 7
OnChange = EditScriptOutputFolderExit
OnExit = EditScriptOutputFolderExit
end
object CheckBoxEMMA21: TCheckBox
Left = 8
Top = 212
Width = 393
Height = 17
Caption = 'EMMA 2.1 coverage output as '#39'coverage.es'#39' (-emma21)'
TabOrder = 8
OnClick = CheckBoxEMMA21Click
end
object CheckBoxOpenEMMAFileExtern: TCheckBox
Left = 8
Top = 244
Width = 385
Height = 17
Caption =
'Open generated EMMA file with assiciated application (ShellExecu' +
'te)'
Enabled = False
TabOrder = 9
OnClick = CheckBoxOpenEMMAFileExternClick
end
object CheckBoxOpenXMLFileExtern: TCheckBox
Left = 24
Top = 308
Width = 385
Height = 17
Caption =
'Open generated XML file with assiciated application (ShellExecut' +
'e)'
Enabled = False
TabOrder = 10
OnClick = CheckBoxOpenXMLFileExternClick
end
object CheckBoxOpenHTMLFileExtern: TCheckBox
Left = 24
Top = 468
Width = 385
Height = 17
Caption =
'Open generated HTML file with assiciated application (ShellExecu' +
'te)'
Enabled = False
TabOrder = 11
OnClick = CheckBoxOpenHTMLFileExternClick
end
object CheckBoxXMLLines: TCheckBox
Left = 24
Top = 340
Width = 385
Height = 17
Caption = 'Add source code line information to generated XML file (-lcl)'
Enabled = False
TabOrder = 12
OnClick = CheckBoxXMLLinesClick
end
object CheckBoxXMLCombineMultiple: TCheckBox
Left = 24
Top = 372
Width = 393
Height = 17
Caption =
'XML: combine multiple occurances of the same file (esp. for gene' +
'rics)'
Enabled = False
TabOrder = 13
OnClick = CheckBoxXMLCombineMultipleClick
end
object CheckBoxXMLJacocoFormat: TCheckBox
Left = 24
Top = 404
Width = 393
Height = 17
Caption = 'XML: output in Jacoco format (-jacoco)'
Enabled = False
TabOrder = 14
OnClick = CheckBoxXMLJacocoFormatClick
end
end
end
object crd_MiscSettings: TCard
Tag = -1
Left = 0
Top = 0
Width = 424
Height = 394
BevelEdges = []
Caption = 'crd_MiscSettings'
CardIndex = 3
TabOrder = 3
OnEnter = crd_MiscSettingsEnter
object ScrollBoxMisc: TScrollBox
Left = 0
Top = 0
Width = 424
Height = 394
Align = alClient
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
TabOrder = 0
DesignSize = (
407
394)
object LabelAdditioalParams: TLabel
Left = 8
Top = 48
Width = 117
Height = 15
Caption = 'Additional parameters'
end
object LabelMiscSettingsNote: TLabel
Left = 8
Top = 16
Width = 396
Height = 15
Caption =
'Note: Be sure to have '#39'CodeCoverage.exe'#39' in your path or in the ' +
'script path.'
end
object LabelPath: TLabel
Left = 32
Top = 135
Width = 52
Height = 15
Anchors = [akLeft, akTop, akRight]
Caption = 'LabelPath'
end
object LabelScriptPreviewCaption: TLabel
Left = 32
Top = 155
Width = 109
Height = 15
Caption = 'Script paths preview:'
end
object Label1: TLabel
Left = 8
Top = 272
Width = 103
Height = 15
Caption = 'Log output formats'
end
object Label3AdditionalParamIndex: TLabel
Left = 8
Top = 80
Width = 164
Height = 15
Caption = 'Index of additional parameters:'
end
object Label3: TLabel
Left = 35
Top = 423
Width = 90
Height = 15
Caption = 'Number of times'
end
object CheckBoxRelativePaths: TCheckBox
Left = 6
Top = 112
Width = 385
Height = 17
Caption = 'Make all folders relative to the scripts path'
TabOrder = 2
OnClick = CheckBoxRelativePathsClick
end
object EditAdditionalParameter: TEdit
Left = 200
Top = 46
Width = 190
Height = 23
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = EditAdditionalParameterChange
end
object MemoScriptPreview: TMemo
Left = 32
Top = 176
Width = 358
Height = 83
Anchors = [akLeft, akTop, akRight]
Enabled = False
TabOrder = 3
end
object CheckBoxLogToFile: TCheckBox
Left = 8
Top = 298
Width = 393
Height = 17
Caption = 'Save log messages to file in report output folder (-lt)'
Checked = True
State = cbChecked
TabOrder = 4
OnClick = CheckBoxLogToFileClick
end
object CheckBoxLogPerAPI: TCheckBox
Left = 8
Top = 330
Width = 393
Height = 17
Caption = 'Write log messages via OutputDebugString Windows API (-lapi)'
TabOrder = 5
OnClick = CheckBoxLogPerAPIClick
end
object CheckBoxPassThroughExitCode: TCheckBox
Left = 8
Top = 362
Width = 393
Height = 17
Caption = 'Pass trough exit code of called application (-tec)'
TabOrder = 6
OnClick = CheckBoxPassThroughExitCodeClick
end
object EditAdditionalParamIndex: TEdit
Left = 328
Top = 75
Width = 62
Height = 23
Hint =
'Position of the additional parameters specified within the gener' +
'ated batch file'
Alignment = taRightJustify
Anchors = [akLeft, akTop, akRight]
NumbersOnly = True
TabOrder = 1
Text = '0'
OnChange = EditAdditionalParamIndexChange
end
object CheckBoxLimitNumberOfExecutionTime: TCheckBox
Left = 8
Top = 392
Width = 353
Height = 17
Caption = 'Limit number of times a line is executed (-lcl)'
TabOrder = 7
OnClick = CheckBoxLimitNumberOfExecutionTimeClick
end
object NumberBoxLineExecutionCount: TNumberBox
Left = 152
Top = 420
Width = 121
Height = 23
Decimal = 0
HideSelection = False
MinValue = 1.000000000000000000
MaxValue = 1000.000000000000000000
TabOrder = 8
Value = 1.000000000000000000
SpinButtonOptions.Placement = nbspInline
OnChangeValue = NumberBoxLineExecutionCountChangeValue
end
object CheckBoxIncludeFileExtension: TCheckBox
Left = 6
Top = 456
Width = 353
Height = 17
Caption = 'Include file extension (-ife/-efe)'
TabOrder = 9
OnClick = CheckBoxIncludeFileExtensionClick
end
end
end
object crd_SaveAndRun: TCard
Left = 0
Top = 0
Width = 424
Height = 394
BevelEdges = []
Caption = 'crd_SaveAndRun'
CardIndex = 4
TabOrder = 4
OnEnter = crd_SaveAndRunEnter
object ButtonSave: TButton
Left = 16
Top = 16
Width = 177
Height = 73
Hint =
'Save the existing project and generate all files CodeCoverage.ex' +
'e needs to run it'
Caption = '&Save project && generate files to run it'
ImageAlignment = iaTop
ImageIndex = 3
ImageName = 'Actions-document-save-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 0
WordWrap = True
OnClick = ButtonSaveClick
end
object ButtonWizardRun: TButton
Left = 208
Top = 16
Width = 177
Height = 73
Hint = 'Run the coverage test from the generated files'
Caption = '&Run coverage test'
ImageAlignment = iaTop
ImageIndex = 0
ImageName = 'Actions-arrow-right-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 1
WordWrap = True
OnClick = ButtonWizardRunClick
end
object ButtonHome: TButton
Left = 208
Top = 112
Width = 177
Height = 73
Hint = 'Go back to main/start screen'
Caption = '&Go back to main screen'
ImageAlignment = iaTop
ImageIndex = 13
ImageName = 'Actions-go-home-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 2
WordWrap = True
OnClick = ButtonHomeClick
end
object ButtonSaveAs: TButton
Left = 16
Top = 112
Width = 177
Height = 73
Hint =
'Save the project under a new name and generate all files CodeCov' +
'erage.exe needs to run it'
Caption = 'Save project as &new && generate files to run it'
ImageAlignment = iaTop
ImageIndex = 3
ImageName = 'Actions-document-save-icon'
ImageMargins.Top = 5
Images = VirtualImageListButtons32
TabOrder = 3
WordWrap = True
OnClick = ButtonSaveAsClick
end
end
object crd_ClassPrefixExcludes: TCard
Left = 0
Top = 0
Width = 424
Height = 394
Caption = 'crd_ClassPrefixExcludes'
CardIndex = 5
TabOrder = 5
OnEnter = crd_ClassPrefixExcludesEnter
DesignSize = (
424
394)
object b_SelectAllClassPrefixExcluded: TButton
Left = 0
Top = 352
Width = 138
Height = 42
Hint = 'Select all class prefixes'
Anchors = [akLeft, akBottom]
Caption = 'Select &all'
ImageIndex = 11
ImageName = 'Actions-edit-select-all-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 0
OnClick = b_SelectAllClassPrefixExcludedClick
end
object b_DeselectAllClassPrefixExcluded: TButton
Left = 140
Top = 352
Width = 138
Height = 42
Hint = 'deselect class prefixes'
Anchors = [akLeft, akBottom]
Caption = '&Deselect all'
ImageIndex = 10
ImageName = 'Actions-edit-clear-list-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 1
OnClick = b_DeselectAllClassPrefixExcludedClick
end
object b_DeleteSelectedClassExclusionMasks: TButton
Left = 282
Top = 352
Width = 138
Height = 42
Hint = 'Refresh file list'
Anchors = [akLeft, akBottom]
Caption = 'D&elete'
ImageIndex = 5
ImageName = 'Actions-trash-empty-icon'
ImageMargins.Left = 5
Images = VirtualImageListButtons32
TabOrder = 2
OnClick = b_DeleteSelectedClassExclusionMasksClick
end
object MemoClassPrefixExcluded: TMemo
Left = 6
Top = 6
Width = 415
Height = 340
Anchors = [akLeft, akTop, akRight, akBottom]
TabOrder = 3