-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnitChainEditorMin.frm
2641 lines (2641 loc) · 80 KB
/
UnitChainEditorMin.frm
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 _FormChainEditor: T_FormChainEditor
Left = 350
Height = 601
Top = 147
Width = 839
HelpContext = 20
ClientHeight = 601
ClientWidth = 839
Color = clBtnFace
Constraints.MinWidth = 375
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
KeyPreview = True
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
OnResize = FormResize
OnShow = FormShow
Position = poDesktopCenter
LCLVersion = '7.4'
object PageControl: TPageControl
Left = 0
Height = 601
Top = 0
Width = 839
ActivePage = TabSheetChainEditor
Align = alClient
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
MultiLine = True
ParentFont = False
TabIndex = 0
TabOrder = 0
OnChange = PageControlChange
OnChanging = PageControlChanging
OnResize = PageControlResize
Options = [nboMultiLine]
object TabSheetChainEditor: TTabSheet
HelpContext = 30
Caption = 'C&hain'
ClientHeight = 575
ClientWidth = 831
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
object LabelChainFileName: TLabel
Left = 0
Height = 13
Top = 0
Width = 831
Align = alTop
Caption = 'Chain file:'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object SplitterHorzChainEdit: TSplitter
Cursor = crVSplit
Left = 0
Height = 3
Top = 451
Width = 831
Align = alBottom
Beveled = True
ResizeAnchor = akBottom
end
object PanelChainBottom: TPanel
Left = 0
Height = 121
Top = 454
Width = 831
Align = alBottom
BevelInner = bvLowered
ClientHeight = 121
ClientWidth = 831
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
object StringGridStateLink: TBKStringGrid
Left = 2
Height = 117
Top = 2
Width = 683
Align = alClient
ColCount = 2
DefaultColWidth = 24
DefaultRowHeight = 15
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing]
ParentFont = False
RowCount = 15
TabOrder = 0
OnKeyDown = StringGridStateLinkKeyDown
OnSelectCell = StringGridStateLinkSelectCell
CaseSensitive = False
SortByFixedCol = False
Filename = 'TBKStringGrid.txt'
BlanksDown = True
Encryption = True
OnUserChangedCell = StringGridStateLinkUserChangedCell
end
object PanelChainRightBottom: TPanel
Left = 685
Height = 117
Top = 2
Width = 144
Align = alRight
BevelInner = bvRaised
BevelOuter = bvLowered
ClientHeight = 117
ClientWidth = 144
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
object SpeedButtonInfo: TSpeedButton
Left = 101
Height = 32
Hint = 'Info'
Top = 73
Width = 32
Flat = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Glyph.Data = {
66010000424D6601000000000000760000002800000014000000140000000100
040000000000F000000000000000000000001000000000000000000000000000
8000008000000080800080000000800080008080000080808000C0C0C0000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00888888888888
8888888800008888888444444888888800008888844444444448888800008888
4446FF644444888800008884444FFFF64444488800008844444FF64844444488
000088444446FF4444444488010184444444FF64444444480833844444446FF4
444444480000844444444FF64444444800008444444846FF4444444800008444
4446FFFF444444480000844444446FF644444448000088444444444444444488
00008844444444664444448800008884444446FF6444488800008888444446FF
6444888800008888844444664448888800008888888444444888888800008888
88888888888888880000
}
OnClick = SpeedButtonInfoClick
ShowHint = True
ParentFont = False
ParentShowHint = False
end
object ButtonLookInOOB: TButton
Left = 50
Height = 25
Hint = 'Look in data file'
Top = 0
Width = 75
Caption = 'I&n file'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonLookInOOBClick
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
end
object ButtonToChain: TButton
Left = 50
Height = 25
Top = 44
Width = 75
Caption = '&To data'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonToChainClick
ParentFont = False
TabOrder = 1
end
object ButtonTestChain: TButton
Left = 18
Height = 25
Top = 80
Width = 75
Caption = 'Test'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonTestChainClick
ParentFont = False
TabOrder = 2
Visible = False
end
end
end
object PanelChainEditBig: TPanel
Left = 0
Height = 438
Top = 13
Width = 831
Align = alClient
ClientHeight = 438
ClientWidth = 831
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
object ScrollBoxCAD: TScrollBox
Left = 1
Height = 436
Top = 1
Width = 667
HorzScrollBar.Page = 11
VertScrollBar.Page = 11
Align = alClient
ClientHeight = 432
ClientWidth = 663
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
object Image: TImage
Left = 1
Height = 10
Top = 1
Width = 10
OnMouseDown = ImageMouseDown
OnMouseUp = ImageMouseUp
end
end
object PanelChainRight: TScrollBox
Left = 668
Height = 436
Top = 1
Width = 162
HorzScrollBar.Page = 156
VertScrollBar.Page = 425
Align = alRight
BorderStyle = bsNone
ClientHeight = 436
ClientWidth = 162
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
TabOrder = 0
object ButtonRepaint: TButton
Left = 39
Height = 25
Top = 400
Width = 75
Caption = 'Repaint'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonRepaintClick
ParentFont = False
TabOrder = 2
end
object ButtonClearChainEditor: TButton
Left = 8
Height = 25
Top = 64
Width = 72
Caption = 'Clear'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonClearChainEditorClick
ParentFont = False
TabOrder = 3
end
object ProgressBarLoad: TProgressBar
Left = 112
Height = 57
Top = 32
Width = 13
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Max = 64
Orientation = pbVertical
ParentFont = False
TabOrder = 5
end
object GroupBoxStates: TGroupBox
Left = 2
Height = 144
Top = 92
Width = 152
Caption = '&States'
ClientHeight = 126
ClientWidth = 148
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 6
object EditState: TEdit
Left = 0
Height = 21
Top = 0
Width = 105
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnKeyUp = EditStateKeyUp
ParentFont = False
TabOrder = 0
end
object CheckBoxBuildLinks: TCheckBox
Left = 53
Height = 17
Top = 38
Width = 71
Caption = 'Build Links'
Checked = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = CheckBoxBuildLinksClick
ParentFont = False
State = cbChecked
TabOrder = 2
end
object ButtonAddState: TButton
Left = 1
Height = 25
Top = 24
Width = 47
Caption = 'Add'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonAddStateClick
ParentFont = False
TabOrder = 6
end
object ButtonDeleteState: TButton
Left = 85
Height = 25
Top = 92
Width = 49
Caption = 'Delete'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonDeleteStateClick
ParentFont = False
TabOrder = 8
end
object ComboBoxStates: TComboBox
Left = 1
Height = 21
Top = 94
Width = 77
DropDownCount = 13
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ItemHeight = 13
OnChange = ComboBoxStatesChange
ParentFont = False
Style = csDropDownList
TabOrder = 9
end
object CheckBoxCapture: TCheckBox
Left = 1
Height = 17
Top = 58
Width = 57
Caption = 'Capture'
Checked = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
State = cbChecked
TabOrder = 3
end
object CheckBoxFission: TCheckBox
Left = 1
Height = 17
Top = 74
Width = 52
Caption = 'Fission'
Checked = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
State = cbChecked
TabOrder = 4
end
object CheckBoxDecay: TCheckBox
Left = 65
Height = 17
Top = 58
Width = 51
Caption = 'Decay'
Checked = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
State = cbChecked
TabOrder = 7
end
object CheckBoxThreshold: TCheckBox
Left = 65
Height = 17
Top = 74
Width = 67
Caption = 'Threshold'
Checked = True
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
State = cbChecked
TabOrder = 5
end
object BitBtnEditAddStatesList: TBitBtn
Left = 108
Height = 21
Hint = 'Edit...'
Top = 0
Width = 24
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
0400000000008000000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00777777777777
7777777777777777777777777777777777777770077007700777777007700770
0777777777777777777777777777777777777777777777777777777777777777
7777777777777777777777777777777777777777777777777777777777777777
7777777777777777777777777777777777777777777777777777
}
OnClick = BitBtnEditAddStatesListClick
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
end
object GroupBoxLinks: TGroupBox
Left = 4
Height = 157
Top = 240
Width = 152
Caption = '&Links'
ClientHeight = 139
ClientWidth = 148
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 7
OnMouseUp = GroupBoxLinksMouseUp
object LabelStart4Link: TLabel
Left = 20
Height = 13
Top = 8
Width = 22
Caption = 'Start'
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object LabelEnd4Link: TLabel
Left = 20
Height = 13
Top = 24
Width = 19
Caption = 'End'
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object ButtonAddLink: TButton
Left = 32
Height = 21
Top = 48
Width = 73
Caption = 'Add'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonAddLinkClick
ParentFont = False
TabOrder = 2
end
object ComboBoxLinks: TComboBox
Left = 8
Height = 21
Top = 76
Width = 129
DropDownCount = 13
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ItemHeight = 13
OnChange = ComboBoxLinksChange
ParentFont = False
Sorted = True
Style = csDropDownList
TabOrder = 3
end
object ButtonDeleteLink: TButton
Left = 52
Height = 25
Top = 96
Width = 43
Caption = 'Delete'
Enabled = False
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonDeleteLinkClick
ParentFont = False
TabOrder = 4
end
object EditLinkStart: TComboBox
Left = 51
Height = 21
Top = 0
Width = 88
DropDownCount = 13
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ItemHeight = 13
MaxLength = 13
OnChange = EditLinkStartEndChange
ParentFont = False
TabOrder = 0
end
object EditLinkFinish: TComboBox
Left = 51
Height = 21
Top = 20
Width = 88
DropDownCount = 13
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ItemHeight = 13
MaxLength = 13
OnChange = EditLinkStartEndChange
ParentFont = False
TabOrder = 1
end
end
object ButtonSaveChain: TButton
Left = 8
Height = 25
Top = 34
Width = 72
Caption = 'Save Chain'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonSaveChainClick
ParentFont = False
TabOrder = 4
end
object ButtonLoadChain: TButton
Left = 8
Height = 25
Top = 4
Width = 72
Caption = 'Loa&d Chain'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonLoadChainClick
ParentFont = False
TabOrder = 0
end
object ButtonLoadDB: TButton
Left = 88
Height = 25
Top = 3
Width = 53
Caption = 'Load D&B'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonLoadDBClick
ParentFont = False
TabOrder = 1
end
end
end
end
object TabSheetConditions: TTabSheet
HelpContext = 40
Caption = 'C&onditions'
ClientHeight = 575
ClientWidth = 831
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ImageIndex = 1
OnShow = TabSheetConditionsShow
ParentFont = False
object ScrollBoxConditions: TScrollBox
Left = 0
Height = 575
Top = 0
Width = 831
HorzScrollBar.Page = 825
VertScrollBar.Page = 518
Align = alClient
ClientHeight = 571
ClientWidth = 827
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
object PanelDepressionSSK: TPanel
Left = 409
Height = 571
Top = 0
Width = 418
Align = alClient
BevelOuter = bvNone
ClientHeight = 571
ClientWidth = 418
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
object GroupBoxDepression: TGroupBox
Left = 0
Height = 53
Top = 0
Width = 418
Align = alTop
Caption = '&Depression'
ClientHeight = 35
ClientWidth = 414
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
object LabelDepressionVolume: TLabel
Left = 76
Height = 13
Top = 0
Width = 76
Caption = 'Volume, cub.cm'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object LabelDeplessionL: TLabel
Left = 244
Height = 13
Top = 0
Width = 34
Caption = '<l>, cm'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object CheckBoxDepression: TCheckBox
Left = 0
Height = 17
Top = 0
Width = 61
Caption = 'Consider'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = CheckBoxConsiderClick
ParentFont = False
TabOrder = 0
end
object EditDepressionVolume: TEdit
Left = 64
Height = 21
Top = 0
Width = 125
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
Text = '1.0'
end
object EditDepressionL: TEdit
Left = 208
Height = 21
Top = 0
Width = 121
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 2
Text = '1.0'
end
end
object GroupBoxSSKinitial: TGroupBox
Left = 0
Height = 518
Top = 53
Width = 418
Align = alClient
Caption = '&Self-Shielding'
ClientHeight = 500
ClientWidth = 414
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
object GroupBoxRAs: TGroupBox
Left = 0
Height = 184
Top = 124
Width = 414
Align = alClient
Caption = '&Res.absorbers'
ClientHeight = 166
ClientWidth = 410
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 4
object PanelRAs: TPanel
Left = 0
Height = 42
Top = 0
Width = 410
Align = alTop
BevelOuter = bvNone
ClientHeight = 42
ClientWidth = 410
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
object LabelRA_V: TLabel
Left = 6
Height = 13
Top = 0
Width = 7
Caption = 'V'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
end
object LabelRA_M: TLabel
Left = 84
Height = 13
Top = 16
Width = 9
Caption = 'M'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
Visible = False
end
object LabelNperCM3: TLabel
Left = 158
Height = 15
Top = 22
Width = 119
Caption = 'N - nuclei per cub.cm'
Font.CharSet = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object EditRA_V: TEdit
Left = 24
Height = 21
Top = 0
Width = 52
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 0
Text = '20.0'
end
object EditRA_M: TEdit
Left = 100
Height = 21
Top = 11
Width = 52
Color = clMoneyGreen
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
Text = '0.24e-3'
Visible = False
end
object ButtonLoadResPar: TButton
Left = 172
Height = 24
Top = 0
Width = 68
Caption = 'Load Res'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonLoadResParClick
ParentFont = False
TabOrder = 2
end
object ButtonRA_FillDefaults: TButton
Left = 332
Height = 24
Top = 0
Width = 68
Caption = 'Defaults'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonRA_FillDefaultsClick
ParentFont = False
TabOrder = 3
end
end
object StringGridRA_Rs: TStringGrid
Left = 0
Height = 124
Top = 42
Width = 410
Align = alClient
DefaultColWidth = 70
DefaultRowHeight = 16
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing]
ParentFont = False
TabOrder = 1
OnDblClick = StringGridRA_RsDblClick
OnSelectCell = StringGridRA_RsSelectCell
OnSetEditText = StringGridRA_RsSetEditText
end
end
object GroupBoxMM: TGroupBox
Left = 0
Height = 103
Top = 308
Width = 414
Align = alBottom
Caption = 'Mi&xed moderators'
ClientHeight = 85
ClientWidth = 410
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 5
object LabelMM_V: TLabel
Left = 268
Height = 13
Top = 0
Width = 7
Caption = 'V'
Color = clMoneyGreen
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
Transparent = False
Visible = False
end
object LabelMM_M: TLabel
Left = 268
Height = 13
Top = 20
Width = 9
Caption = 'M'
Color = clMoneyGreen
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentColor = False
ParentFont = False
Transparent = False
Visible = False
end
object EditMM_V: TEdit
Left = 278
Height = 21
Top = 0
Width = 80
Color = clMoneyGreen
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 1
Text = '0'
Visible = False
end
object EditMM_M: TEdit
Left = 278
Height = 21
Top = 16
Width = 80
Color = clMoneyGreen
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ParentFont = False
TabOrder = 2
Text = '0'
Visible = False
end
object ButtonSaveMM: TButton
Left = 294
Height = 24
Top = 32
Width = 80
Caption = 'Save'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonSaveMMClick
ParentFont = False
TabOrder = 4
end
object ButtonLoadMM: TButton
Left = 292
Height = 24
Top = 0
Width = 80
Caption = 'Load'
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClick = ButtonLoadMMClick
ParentFont = False
TabOrder = 3
end
object StringGridMM: TBKStringGrid
Left = 0
Height = 85
Top = 0
Width = 251
Align = alLeft
ColCount = 3
DefaultColWidth = 80
DefaultRowHeight = 16
FixedCols = 0
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goTabs, goAlwaysShowEditor]
ParentFont = False
RowCount = 2
TabOrder = 0