forked from kegge13/BistroMath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwellform.lfm
4315 lines (4315 loc) · 124 KB
/
wellform.lfm
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 AnalyseForm: TAnalyseForm
Left = 319
Height = 565
Top = 134
Width = 1000
AllowDropFiles = True
AlphaBlendValue = 0
Caption = 'AnalyseForm'
ClientHeight = 565
ClientWidth = 1000
Color = clScrollBar
Constraints.MinHeight = 565
Constraints.MinWidth = 1000
DefaultMonitor = dmMainForm
Menu = MainMenu
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = ReadDroppedFiles
OnKeyDown = FormKeyDown
OnKeyPress = FormKeyPress
OnKeyUp = FormKeyUp
OnResize = FormResize
LCLVersion = '3.2.0.0'
object StatusBar: TStatusBar
Left = 0
Height = 23
Top = 542
Width = 1000
HelpContext = 21
Panels = <
item
Width = 50
end
item
Width = 65
end
item
Width = 40
end>
SimplePanel = False
end
object PageControl: TPageControl
Left = 0
Height = 542
Top = 0
Width = 1000
HelpContext = 1
ActivePage = AnalysisTab
Align = alClient
ParentFont = False
TabIndex = 0
TabOrder = 1
OnChange = PageControlChange
OnChanging = PageControlRequestChange
OnExit = SettingsTabExit
Options = [nboDoChangeOnSetIndex]
object AnalysisTab: TTabSheet
AnchorSideBottom.Side = asrBottom
HelpContext = 1
Caption = 'Analysis'
ClientHeight = 514
ClientWidth = 992
object ResultsPanel: TPanel
Left = 0
Height = 93
Top = 421
Width = 992
HelpContext = 11
Align = alBottom
Alignment = taLeftJustify
Anchors = []
ClientHeight = 93
ClientWidth = 992
Color = clBtnFace
ParentBackground = False
ParentColor = False
TabOrder = 0
OnMouseEnter = AdjustHelpContext
object PositionLabel: TLabel
Left = 525
Height = 15
Top = 73
Width = 46
Alignment = taRightJustify
AutoSize = False
Caption = 'Position:'
ParentColor = False
end
object PositionValue: TLabel
Left = 900
Height = 15
Top = 79
Width = 22
Alignment = taRightJustify
AutoSize = False
Caption = '0'
ParentColor = False
end
object MeasNormAdjustEdit: TFloatSpinEditEx
Left = 937
Height = 17
Top = 1
Width = 52
AutoSize = False
Anchors = [akTop, akRight]
MaxLength = 0
TabOrder = 0
OnEditingDone = OnDataRead
OnExit = OnDataRead
DecimalPlaces = 1
MaxValue = 300
MinValue = 2
Value = 100
end
end
object DataPlot: TChart
Left = 0
Height = 421
Top = 0
Width = 992
HelpContext = 9
AutoFocus = True
AxisList = <
item
Grid.Color = clMedGray
Intervals.Count = 10
Intervals.Options = [aipUseCount, aipUseMaxLength, aipUseMinLength, aipUseNiceSteps]
Marks.LabelBrush.Style = bsClear
Minors = <>
Range.UseMin = True
Title.LabelFont.Orientation = 900
Title.LabelBrush.Style = bsClear
Transformations = L_AxisTransforms
end
item
Grid.Color = clMedGray
Intervals.MinLength = 0
Intervals.Options = [aipUseCount, aipUseMinLength, aipUseNiceSteps]
Alignment = calBottom
AxisPen.Color = clMedGray
AxisPen.Width = 2
AxisPen.Visible = True
Marks.LabelBrush.Style = bsClear
Minors = <
item
Grid.Visible = False
Intervals.Count = 9
Intervals.MinLength = 0
Intervals.Options = [aipUseCount, aipUseNiceSteps]
TickColor = clMedGray
TickInnerLength = 2
TickLength = 3
Marks.Frame.Cosmetic = False
Marks.Frame.Visible = False
Marks.LabelBrush.Style = bsClear
end>
Title.Alignment = taCenter
Title.LabelFont.Pitch = fpVariable
Title.LabelFont.Quality = fqCleartype
Title.LabelFont.Style = [fsBold]
Title.Visible = True
Title.Caption = 'empty title'
Title.LabelBrush.Color = clBtnFace
end
item
Grid.Visible = False
Intervals.Count = 10
Intervals.Options = [aipUseCount, aipUseNiceSteps]
Alignment = calRight
Marks.Alignment = taRightJustify
Marks.LabelFont.Color = clBlue
Marks.Format = '%5.1f'
Marks.LabelBrush.Style = bsClear
Marks.Style = smsCustom
Minors = <>
Title.LabelFont.Orientation = 2700
Title.LabelBrush.Style = bsClear
Transformations = R_AxisTransforms
end>
BackColor = clInactiveBorder
Foot.Brush.Color = clBtnFace
Foot.Font.Color = clBlue
Margins.Left = 0
Margins.Top = 2
Margins.Right = 0
Margins.Bottom = 0
Title.Brush.Color = clBtnFace
Title.Font.Color = clBlue
Title.Text.Strings = (
'TAChart'
)
OnExtentChanged = DataPlotExtentChanged
Align = alClient
Color = clInactiveBorder
object ErrorSeries: TLineSeries
Active = False
AxisIndexX = 1
AxisIndexY = 2
LinePen.Style = psClear
LinePen.Width = 0
LineType = ltNone
Marks.AutoMargins = False
Pointer.Brush.Color = clMedGray
Pointer.HorizSize = 1
Pointer.Pen.Color = clSkyBlue
Pointer.Pen.Cosmetic = False
Pointer.Pen.Style = psClear
Pointer.Pen.Visible = False
Pointer.VertSize = 1
Pointer.Visible = True
ShowPoints = True
end
object TopModelSeries: TFuncSeries
Active = False
ZPosition = 2
AxisIndexX = 1
AxisIndexY = 0
Pen.Color = clActiveCaption
Pen.Width = 2
OnCalculate = TopModelFunction
end
end
end
object HistogramTab: TTabSheet
HelpContext = 17
Caption = 'Histogram'
ClientHeight = 514
ClientWidth = 992
object HistogramPlot: TChart
Left = 0
Height = 514
Top = 0
Width = 992
HelpContext = 17
AutoFocus = True
AxisList = <
item
MarginsForMarks = False
Marks.LabelBrush.Style = bsClear
Marks.Range.UseMin = True
Minors = <>
Title.LabelFont.Orientation = 900
Title.Visible = True
Title.LabelBrush.Style = bsClear
end
item
Intervals.Count = 9
Intervals.MinLength = 0
Intervals.Options = [aipUseCount, aipUseNiceSteps]
Alignment = calBottom
Marks.LabelBrush.Style = bsClear
Minors = <
item
Grid.Visible = False
Intervals.MinLength = 5
Intervals.Options = [aipUseCount, aipUseMinLength]
TickLength = 3
Marks.LabelBrush.Style = bsClear
end>
Range.UseMax = True
Range.UseMin = True
Title.LabelFont.Height = -20
Title.LabelFont.Style = [fsBold]
Title.Visible = True
Title.LabelBrush.Style = bsClear
end>
BackColor = clWhite
Foot.Brush.Color = clScrollBar
Foot.Font.Color = clBlue
Margins.Left = 0
Margins.Top = 5
Margins.Right = 0
Margins.Bottom = 0
Title.Brush.Color = clScrollBar
Title.Font.Color = clBlue
Title.Text.Strings = (
'TDBChart'
)
Align = alClient
object Histogram: TBarSeries
Title = 'Histogram'
BarBrush.Color = clRed
BarWidthPercent = 100
MarkPositionCentered = True
Marks.Visible = False
end
end
end
object FocusPositionTab: TTabSheet
HelpContext = 225
Caption = 'Focus Position'
ClientHeight = 514
ClientWidth = 992
object FocusPositionPanel: TPanel
Left = 0
Height = 514
Top = 0
Width = 992
HelpContext = 225
Align = alClient
ClientHeight = 514
ClientWidth = 992
Color = 15466223
ParentBackground = False
ParentColor = False
TabOrder = 0
UseDockManager = False
OnPaint = FocusPositionPanelPaint
object FocusPositionSetupGroupBox: TGroupBox
Left = 3
Height = 127
Top = 0
Width = 981
HelpContext = 225
Caption = 'Setup'
ClientHeight = 107
ClientWidth = 977
ParentBackground = False
TabOrder = 0
object FocusPositionMappingLabel: TLabel
Left = 10
Height = 15
Top = -1
Width = 57
Caption = 'First angle:'
ParentColor = False
end
object FocusPosition_mapping_Box: TComboBox
Left = 72
Height = 23
Top = -5
Width = 51
HelpContext = 225
AutoComplete = True
AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending]
AutoDropDown = True
ItemHeight = 15
ReadOnly = True
TabOrder = 0
Text = 'FocusPosition_mapping_Box'
OnChange = FocusPositionPanelPaint
end
object FocusPositionIECLabel: TLabel
Left = 212
Height = 15
Top = -1
Width = 65
Caption = 'Convention:'
ParentColor = False
end
object FocusPosition_IEC_Convention: TComboBox
Left = 286
Height = 23
Top = -5
Width = 72
HelpContext = 225
AutoComplete = True
AutoCompleteText = [cbactEnabled, cbactEndOfLineComplete, cbactSearchAscending]
AutoDropDown = True
ItemHeight = 15
ReadOnly = True
TabOrder = 1
Text = 'FocusPosition_IEC_Convention'
OnChange = FocusPositionPanelPaint
end
object FocusPositionDetectorRotates: TCheckBox
Left = 112
Height = 19
Hint = 'The detector is attached on the treatment head'
Top = 85
Width = 185
Alignment = taLeftJustify
Caption = 'Detector rotates with collimator'
TabOrder = 2
OnChange = FocusPositionStateUpdate
end
object FocusPositionUpperLabel: TLabel
Left = 218
Height = 15
Top = 29
Width = 59
Caption = 'Upper BLD:'
ParentColor = False
end
object FocusPosition_UpperBLD_ident: TComboBox
Left = 286
Height = 23
Top = 25
Width = 48
HelpContext = 225
AutoCompleteText = []
AutoDropDown = True
AutoSize = False
ItemHeight = 15
ReadOnly = True
TabOrder = 3
Text = 'Y'
OnChange = FocusPositionChange_mm
end
object FocusPositionDetSurfaceIsoc: TRadioButton
Left = 687
Height = 19
Top = 80
Width = 155
Caption = 'Surface of detector in Isoc'
TabOrder = 5
OnChange = FocusPositionChange_mm
end
object FocusPositionDetectorInIsoc: TRadioButton
Left = 687
Height = 19
Top = 60
Width = 100
Caption = 'Detector in Isoc'
TabOrder = 4
OnChange = FocusPositionChange_mm
end
object FocusPositionDetectorOther: TRadioButton
Left = 687
Height = 19
Top = 20
Width = 130
Caption = 'Specify detector level'
Checked = True
TabOrder = 6
TabStop = True
OnChange = FocusPositionChange_mm
end
object FocusPositionDetAutoSet: TRadioButton
Left = 687
Height = 19
Top = 40
Width = 116
Caption = 'Set level from data'
TabOrder = 7
OnChange = FocusPositionChange_mm
end
object FocusPositionFullScaleLabel: TLabel
Left = 146
Height = 15
Top = 57
Width = 131
HelpContext = 127
Align = alCustom
Alignment = taRightJustify
Caption = 'Graphics full scale (mm):'
Color = 15466223
ParentColor = False
Transparent = False
end
object FocusPositionFullScale_mm: TFloatSpinEditEx
Left = 286
Height = 21
Top = 55
Width = 47
HelpContext = 225
AutoSize = False
MaxLength = 0
TabOrder = 8
OnChange = FocusPositionPanelPaint
DecimalPlaces = 1
MaxValue = 30
MinValue = 0.5
NullValue = 1
Value = 1
end
end
object FocusPositionInputGroupBox: TGroupBox
Left = 3
Height = 80
Top = 136
Width = 981
HelpContext = 225
Caption = 'Data Input'
ClientHeight = 60
ClientWidth = 977
ParentBackground = False
TabOrder = 1
object FocusPositionCollimFromName: TCheckBox
Left = 12
Height = 19
Top = 25
Width = 214
Caption = 'Collimator angle in file name prevails'
TabOrder = 0
OnChange = UpdateSettings
end
object FocusPositionUseCollimInfo: TCheckBox
Left = 12
Height = 19
Top = -5
Width = 186
Caption = 'Apply collimator angle from file'
Checked = True
State = cbChecked
TabOrder = 1
OnChange = UpdateSettings
end
object FocusPositionNamePatternEdit: TLabeledEdit
Left = 372
Height = 23
Top = 23
Width = 100
EditLabel.Height = 15
EditLabel.Width = 127
EditLabel.Caption = 'File name angle pattern:'
EditLabel.ParentColor = False
LabelPosition = lpLeft
TabOrder = 2
Text = '~ %d BEA'
end
object FocusPositionZeroRotButton: TButton
Left = 783
Height = 25
Top = 27
Width = 113
Caption = 'Zero rotation axis'
Enabled = False
TabOrder = 3
OnClick = FocusPositionZeroClick
end
object FocusPositionResetButton: TButton
Left = 632
Height = 25
Top = -5
Width = 113
Caption = 'Reset data'
TabOrder = 4
OnClick = FocusPositionResetClick
end
object FocusPositionZeroFPButton: TButton
Left = 783
Height = 25
Top = -5
Width = 113
Caption = 'Zero Focal point'
Enabled = False
TabOrder = 5
OnClick = FocusPositionZeroClick
end
object FocusPositionStructuredData: TStaticText
Left = 243
Height = 16
Top = -3
Width = 202
AutoSize = True
Caption = 'Structured multiple data set processed'
Font.Color = clSilver
ParentFont = False
TabOrder = 6
end
end
object FocusPositionResultGroupBox: TGroupBox
Left = 3
Height = 104
Top = 222
Width = 981
Caption = 'Results'
ParentBackground = False
TabOrder = 2
end
end
end
object PDDFitResultsTab: TTabSheet
HelpContext = 20
Caption = 'PDD Fit Results'
ClientHeight = 514
ClientWidth = 992
object PDDFitResultsPanel: TPanel
Left = 0
Height = 514
Top = 0
Width = 992
HelpContext = 220
Align = alClient
ClientHeight = 514
ClientWidth = 992
Color = clBtnFace
ParentBackground = False
ParentColor = False
TabOrder = 0
object PDDFitResultsGrid: TStringGrid
Left = 1
Height = 313
Hint = 'Click on column for copy to clipboard'
Top = 1
Width = 990
HelpContext = 220
Align = alTop
ColCount = 2
DefaultColWidth = 100
DefaultRowHeight = 20
FixedColor = clSkyBlue
FixedCols = 0
RowCount = 2
TabOrder = 0
OnClick = PDDFitResultsGridClick
end
object PDDFitresultsLabel: TLabel
Left = 32
Height = 13
Top = 331
Width = 116
Caption = 'Data normalised to dmax'
Font.Color = clWindowText
Font.Height = -8
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object PDDFitResultsAllCheckBox: TCheckBox
Left = 33
Height = 19
Top = 355
Width = 87
AllowGrayed = True
Caption = 'Copy all data'
TabOrder = 1
end
object PDDFitResultsHeaderCheckBox: TCheckBox
Left = 33
Height = 19
Top = 379
Width = 96
Caption = 'Include header'
Checked = True
State = cbChecked
TabOrder = 2
end
object PDDFitResultsLabelsCheckBox: TCheckBox
Left = 33
Height = 19
Top = 403
Width = 90
Caption = 'Include labels'
TabOrder = 3
end
end
end
object AliasTab: TTabSheet
HelpContext = 20
Caption = 'Alias'
ClientHeight = 514
ClientWidth = 992
OnExit = AliasTabExit
object AliasListEditor: TValueListEditor
Left = 0
Height = 514
Top = 0
Width = 992
HelpContext = 20
Align = alClient
FixedCols = 0
ParentFont = False
PopupMenu = AliasPopupMenu
RowCount = 2
TabOrder = 0
OnEnter = EditEnter
OnExit = UImodeChange
OnPrepareCanvas = AliasListPrepareCanvas
KeyOptions = [keyEdit, keyAdd, keyDelete, keyUnique]
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goEditing, goAutoAddRows, goAlwaysShowEditor, goThumbTracking]
ColWidths = (
150
821
)
end
end
object FieldTypesTab: TTabSheet
HelpContext = 23
Caption = 'Field Types'
ClientHeight = 514
ClientWidth = 992
OnExit = SetWellhoferValues
object FieldTypesPanel: TPanel
Left = 0
Height = 514
Top = 0
Width = 992
HelpContext = 23
Align = alClient
ClientHeight = 514
ClientWidth = 992
Color = clBtnFace
ParentBackground = False
ParentColor = False
TabOrder = 0
object Ft_EdgePrimaryLabel: TLabel
Left = 9
Height = 15
Top = 160
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Primary border/edge definition'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_EdgeFallBackLabel: TLabel
Left = 9
Height = 15
Top = 190
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Fallback border/edge definition'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_MeasSymCorrLabel: TLabel
Left = 9
Height = 15
Top = 80
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Measurement symmetry correction'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_RefSymCorrLabel: TLabel
Left = 9
Height = 15
Top = 105
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Reference symmetry correction'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_CoFLabel: TLabel
Left = 9
Height = 15
Top = 220
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Center of field definition'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_NormLabel: TLabel
Left = 9
Height = 15
Top = 250
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Normalisation definition'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_DetectLabel: TLabel
Left = 9
Height = 15
Top = 30
Width = 195
HelpContext = 23
Align = alCustom
AutoSize = False
Caption = 'Detect'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object Ft_EdgeDetectionGroupBox: TGroupBox
Left = 316
Height = 144
Top = 344
Width = 605
HelpContext = 23
Caption = 'Edge detection and related parameters'
ClientHeight = 124
ClientWidth = 601
ParentBackground = False
TabOrder = 0
object EdgeDetectionCheckBox: TCheckBox
Left = 9
Height = 19
Hint = 'Use edge detection value when difference too large'
Top = 5
Width = 124
HelpContext = 130
Caption = 'Edge fallback (mm):'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = UpdateSettings
end
object EdgeSigmoidRadiusLabel: TLabel
Left = 383
Height = 15
Top = 8
Width = 110
HelpContext = 130
Align = alCustom
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Sigmoid radius (cm):'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object EdgeSigmoidRadius_cm: TFloatSpinEditEx
Left = 496
Height = 21
Hint = 'Range for taken data points'
Top = 5
Width = 90
HelpContext = 130
AutoSize = False
Anchors = [akTop, akRight]
MaxLength = 0
TabOrder = 1
DecimalPlaces = 1
Increment = 0.1
MaxValue = 3
MinValue = 0.5
NullValue = 1
NullValueBehaviour = nvbInitialValue
Value = 3
end
object EdgeDetectionError_mm: TFloatSpinEditEx
Left = 136
Height = 21
Hint = 'Maximum allowed distance of 50% level'
Top = 5
Width = 90
HelpContext = 130
AutoSize = False
MaxLength = 0
TabOrder = 2
DecimalPlaces = 1
MaxValue = 30
Value = 2
end
object EdgeSmallFieldWidthLabel: TLabel
Left = 374
Height = 15
Top = 38
Width = 119
HelpContext = 130
Align = alCustom
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Small field width (cm):'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object EdgeSmallFieldWidth_cm: TFloatSpinEditEx
Left = 496
Height = 21
Hint = 'Limit for small field detection'
Top = 35
Width = 90
HelpContext = 130
AutoSize = False
Anchors = [akTop, akRight]
MaxLength = 0
TabOrder = 4
DecimalPlaces = 1
Increment = 0.1
MaxValue = 5
Value = 2.5
end
object EdgeWedge90ShiftLabel: TLabel
Left = 341
Height = 15
Top = 68
Width = 152
HelpContext = 130
Align = alCustom
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Wedge 90% level shift factor:'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object EdgeWedge90ShiftFactor: TFloatSpinEditEx
Left = 496
Height = 21
Hint = 'Factor*L90% > (L50%+R50%) or Factor*R90% < (L50%+R50%)'
Top = 65
Width = 90
HelpContext = 130
AutoSize = False
Anchors = [akTop, akRight]
MaxLength = 0
TabOrder = 3
DecimalPlaces = 1
Increment = 0.1
MaxValue = 2
MinValue = -2
NullValue = 1
NullValueBehaviour = nvbInitialValue
Value = 1
end
object EdgeMRlinacTUcsvList: TLabeledEdit
Left = 496
Height = 23
Top = 95
Width = 90
Anchors = [akTop, akRight]
AutoSize = False
EditLabel.Height = 15
EditLabel.Width = 130
EditLabel.Caption = 'MRlinac treatment units:'
EditLabel.ParentColor = False
LabelPosition = lpLeft
TabOrder = 5
Text = 'comma separated list'
OnMouseEnter = EditEnter
end
end
object Ft_FFFDetectionGroupBox: TGroupBox
Left = 8
Height = 144
Top = 344
Width = 292
HelpContext = 23
Caption = 'FFF detection and analysis'
ClientHeight = 124
ClientWidth = 288
ParentBackground = False
TabOrder = 1
object FFFMinDoseDifLabel: TLabel
Left = 7
Height = 15
Top = 37
Width = 167
HelpContext = 23
Align = alCustom
Alignment = taRightJustify
Caption = 'Minimal In-Field dose drop (%):'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object FFFMinEdgeDifLabel: TLabel
Left = 7
Height = 15
Top = 67
Width = 165
HelpContext = 23
Align = alCustom
Alignment = taRightJustify
Caption = 'Minimal edge difference (mm):'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object FFFInFieldExtLabel: TLabel
Left = 7
Height = 15
Top = 97
Width = 150
HelpContext = 23
Align = alCustom
Alignment = taRightJustify
Caption = 'In-Field area extension (cm):'
Color = clBtnFace
ParentColor = False
Transparent = False
end
object FFFMinDoseDif_perc: TFloatSpinEditEx
Left = 193
Height = 21
Top = 35
Width = 59
HelpContext = 23
AutoSize = False
MaxLength = 0
TabOrder = 3
DecimalPlaces = 1
Increment = 0.01
MaxValue = 50
Value = 10
end
object FFFMinEdgeDif_mm: TFloatSpinEditEx
Left = 193
Height = 21
Top = 65
Width = 59
HelpContext = 23
AutoSize = False