-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnitChainEditorMin.dfm
1943 lines (1943 loc) · 56.1 KB
/
UnitChainEditorMin.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 _FormChainEditor: T_FormChainEditor
Left = 324
Top = 165
HelpContext = 20
Caption = 'Chain Solver Min'
ClientHeight = 557
ClientWidth = 787
Color = clBtnFace
Constraints.MinWidth = 375
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
Icon.Data = {
0000010001002020100000000000E80200001600000028000000200000004000
0000010004000000000080020000000000000000000000000000000000000000
000000008000008000000080800080000000800080008080000080808000C0C0
C0000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF000000
0000CCCCC000000000099999000000000000C0000C0000000090000900000000
0000C00000C0000009000009000000000000C000000C00009000000900000000
00000C000000C009000000900000000000000C0000111C900000009000000000
000000C0001119C00000090000000000000000C0AAAA9AAAAAAAA90000000000
000AAAAA01191F10C000AAAAA00000000AA00000C19FF1000C0090000AA06666
A00000000900110000C00000000A600A0000000090000F00000C0000000A6644
A444440090000100FF0C0444440A6E660AA00009000F01100000C0000AA06F66
000AAAA90FF001111888C2AAA4006E66F800F8900000111F1AAAFC8004006F66
FF00FF90FF011FF11FFFFC8004006E660000090000001111000000C004006F66
00000900000009C0000000C004006E66F8009800F800980CF800F80C04006F66
FF009F00FF09FF00CF00FF0C04006E6600009000009000000C00000C04006F66
000090009900000000CC000C04006E66F800F999F800F800F800CCC004006F66
FF00FF00FF00FF00FF00FF0004006E6666666666666666666666666664006F66
08888888888888866666666664006E660FFFFFFFFFFFFF866666666664006F66
08888888888888866666666664006E6600000000000000066666666664006FEF
EFEFEFEFEFEFEFEFEFEFEFEFE40066666666666666666666666666666660FF07
FE0FFF7BFDEFFF7DFBEFFF7EF7EFFFBF6FDFFFBC1FDFFFDC1FBFFFD0003FFE08
0107F9F0007907F000FE002000800020008009E0017900000001011000190112
00190FBF0FD90111111901110109011011090F7DFBE901111009010111190111
111900000001000000010000000100000001000000010000000100000001}
KeyPreview = True
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
OnKeyDown = FormKeyDown
OnKeyUp = FormKeyUp
OnResize = FormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object PageControl: TPageControl
Left = 0
Top = 0
Width = 787
Height = 557
ActivePage = TabSheetChainEditor
Align = alClient
MultiLine = True
TabOrder = 0
OnChange = PageControlChange
OnChanging = PageControlChanging
OnResize = PageControlResize
object TabSheetChainEditor: TTabSheet
HelpContext = 30
Caption = 'C&hain'
object LabelChainFileName: TLabel
Left = 0
Top = 0
Width = 779
Height = 13
Align = alTop
Caption = 'Chain file:'
ExplicitWidth = 46
end
object SplitterHorzChainEdit: TSplitter
Left = 0
Top = 405
Width = 779
Height = 3
Cursor = crVSplit
Align = alBottom
Beveled = True
end
object PanelChainBottom: TPanel
Left = 0
Top = 408
Width = 779
Height = 121
Align = alBottom
BevelInner = bvLowered
TabOrder = 0
OnCanResize = PanelChainBottomCanResize
object StringGridStateLink: TBKStringGrid
Left = 2
Top = 2
Width = 631
Height = 117
Align = alClient
ColCount = 2
DefaultColWidth = 24
DefaultRowHeight = 15
RowCount = 15
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing]
TabOrder = 0
OnKeyDown = StringGridStateLinkKeyDown
OnSelectCell = StringGridStateLinkSelectCell
CaseSensitive = False
SortByFixedCol = False
Filename = 'TBKStringGrid.txt'
BlanksDown = True
Encryption = True
OnUserChangedCell = StringGridStateLinkUserChangedCell
RowHeights = (
15
15
15
15
15
15
15
15
15
15
15
15
15
15
15)
end
object PanelChainRightBottom: TPanel
Left = 633
Top = 2
Width = 144
Height = 117
Align = alRight
BevelInner = bvRaised
BevelOuter = bvLowered
TabOrder = 1
object SpeedButtonInfo: TSpeedButton
Left = 105
Top = 77
Width = 32
Height = 32
Hint = 'Info'
Flat = True
Glyph.Data = {
66010000424D6601000000000000760000002800000014000000140000000100
040000000000F000000000000000000000001000000000000000000000000000
8000008000000080800080000000800080008080000080808000C0C0C0000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00888888888888
8888888800008888888444444888888800008888844444444448888800008888
4446FF644444888800008884444FFFF64444488800008844444FF64844444488
000088444446FF4444444488010184444444FF64444444480833844444446FF4
444444480000844444444FF64444444800008444444846FF4444444800008444
4446FFFF444444480000844444446FF644444448000088444444444444444488
00008844444444664444448800008884444446FF6444488800008888444446FF
6444888800008888844444664448888800008888888444444888888800008888
88888888888888880000}
ParentShowHint = False
ShowHint = True
OnClick = SpeedButtonInfoClick
end
object ButtonLookInOOB: TButton
Left = 54
Top = 4
Width = 75
Height = 25
Hint = 'Look in data file'
Caption = 'I&n file'
Enabled = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
OnClick = ButtonLookInOOBClick
end
object ButtonToChain: TButton
Left = 54
Top = 48
Width = 75
Height = 25
Caption = '&To data'
Enabled = False
TabOrder = 1
OnClick = ButtonToChainClick
end
object ButtonTestChain: TButton
Left = 22
Top = 84
Width = 75
Height = 25
Caption = 'Test'
TabOrder = 2
Visible = False
OnClick = ButtonTestChainClick
end
end
end
object PanelChainEditBig: TPanel
Left = 0
Top = 13
Width = 779
Height = 392
Align = alClient
TabOrder = 1
object ScrollBoxCAD: TScrollBox
Left = 1
Top = 1
Width = 615
Height = 390
Align = alClient
TabOrder = 1
object Image: TImage
Left = 1
Top = 1
Width = 10
Height = 10
PopupMenu = PopupMenuCAD
OnMouseDown = ImageMouseDown
OnMouseUp = ImageMouseUp
end
end
object PanelChainRight: TScrollBox
Left = 616
Top = 1
Width = 162
Height = 390
Align = alRight
BorderStyle = bsNone
Color = clBtnFace
ParentColor = False
TabOrder = 0
object ButtonRepaint: TButton
Left = 44
Top = 364
Width = 75
Height = 25
Caption = 'Repaint'
TabOrder = 2
OnClick = ButtonRepaintClick
end
object ButtonClearChainEditor: TButton
Left = 8
Top = 68
Width = 72
Height = 25
Caption = 'Clear'
TabOrder = 3
OnClick = ButtonClearChainEditorClick
end
object ProgressBarLoad: TProgressBar
Left = 112
Top = 32
Width = 13
Height = 64
Max = 64
Orientation = pbVertical
TabOrder = 5
end
object GroupBoxStates: TGroupBox
Left = 4
Top = 96
Width = 140
Height = 133
Caption = '&States'
TabOrder = 6
object EditState: TEdit
Left = 4
Top = 20
Width = 105
Height = 21
TabOrder = 0
OnKeyUp = EditStateKeyUp
end
object CheckBoxBuildLinks: TCheckBox
Left = 56
Top = 48
Width = 81
Height = 17
Caption = 'Build Links'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = CheckBoxBuildLinksClick
end
object ButtonAddState: TButton
Left = 4
Top = 42
Width = 47
Height = 25
Caption = 'Add'
Enabled = False
TabOrder = 6
OnClick = ButtonAddStateClick
end
object ButtonDeleteState: TButton
Left = 88
Top = 102
Width = 49
Height = 25
Caption = 'Delete'
Enabled = False
TabOrder = 8
OnClick = ButtonDeleteStateClick
end
object ComboBoxStates: TComboBox
Left = 4
Top = 104
Width = 77
Height = 21
Style = csDropDownList
DropDownCount = 13
MaxLength = 13
TabOrder = 9
OnChange = ComboBoxStatesChange
end
object CheckBoxCapture: TCheckBox
Left = 4
Top = 68
Width = 61
Height = 17
Caption = 'Capture'
Checked = True
State = cbChecked
TabOrder = 3
end
object CheckBoxFission: TCheckBox
Left = 4
Top = 84
Width = 57
Height = 17
Caption = 'Fission'
Checked = True
State = cbChecked
TabOrder = 4
end
object CheckBoxDecay: TCheckBox
Left = 68
Top = 68
Width = 68
Height = 17
Caption = 'Decay'
Checked = True
State = cbChecked
TabOrder = 7
end
object CheckBoxThreshold: TCheckBox
Left = 68
Top = 84
Width = 68
Height = 17
Caption = 'Threshold'
Checked = True
State = cbChecked
TabOrder = 5
end
object BitBtnEditAddStatesList: TBitBtn
Left = 112
Top = 20
Width = 24
Height = 21
Hint = 'Edit...'
DoubleBuffered = True
Glyph.Data = {
F6000000424DF600000000000000760000002800000010000000100000000100
0400000000008000000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00777777777777
7777777777777777777777777777777777777770077007700777777007700770
0777777777777777777777777777777777777777777777777777777777777777
7777777777777777777777777777777777777777777777777777777777777777
7777777777777777777777777777777777777777777777777777}
ParentDoubleBuffered = False
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnClick = BitBtnEditAddStatesListClick
end
end
object GroupBoxLinks: TGroupBox
Left = 4
Top = 228
Width = 141
Height = 133
Caption = '&Links'
TabOrder = 7
OnMouseUp = GroupBoxLinksMouseUp
object LabelStart4Link: TLabel
Left = 18
Top = 20
Width = 22
Height = 13
Caption = 'Start'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Transparent = True
end
object LabelEnd4Link: TLabel
Left = 24
Top = 64
Width = 19
Height = 13
Caption = 'End'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
Transparent = True
end
object ButtonAddLink: TButton
Left = 52
Top = 36
Width = 73
Height = 21
Caption = 'Add'
Enabled = False
TabOrder = 2
OnClick = ButtonAddLinkClick
end
object ComboBoxLinks: TComboBox
Left = 4
Top = 84
Width = 129
Height = 21
Style = csDropDownList
DropDownCount = 13
MaxLength = 13
PopupMenu = PopupMenuLink
Sorted = True
TabOrder = 3
OnChange = ComboBoxLinksChange
end
object ButtonDeleteLink: TButton
Left = 48
Top = 104
Width = 43
Height = 25
Caption = 'Delete'
Enabled = False
TabOrder = 4
OnClick = ButtonDeleteLinkClick
end
object EditLinkStart: TComboBox
Left = 48
Top = 12
Width = 88
Height = 21
DropDownCount = 13
MaxLength = 13
TabOrder = 0
OnChange = EditLinkStartEndChange
end
object EditLinkFinish: TComboBox
Left = 48
Top = 60
Width = 88
Height = 21
DropDownCount = 13
MaxLength = 13
TabOrder = 1
OnChange = EditLinkStartEndChange
end
end
object ButtonSaveChain: TButton
Left = 8
Top = 34
Width = 72
Height = 25
Caption = 'Save Chain'
TabOrder = 4
OnClick = ButtonSaveChainClick
end
object ButtonLoadChain: TButton
Left = 8
Top = 4
Width = 72
Height = 25
Caption = 'Loa&d Chain'
TabOrder = 0
OnClick = ButtonLoadChainClick
end
object ButtonLoadDB: TButton
Left = 88
Top = 3
Width = 53
Height = 25
Caption = 'Load D&B'
TabOrder = 1
OnClick = ButtonLoadDBClick
end
end
end
end
object TabSheetConditions: TTabSheet
HelpContext = 40
Caption = 'C&onditions'
ImageIndex = 1
OnShow = TabSheetConditionsShow
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object ScrollBoxConditions: TScrollBox
Left = 0
Top = 0
Width = 779
Height = 529
Align = alClient
TabOrder = 0
object PanelDepressionSSK: TPanel
Left = 409
Top = 0
Width = 366
Height = 525
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object GroupBoxDepression: TGroupBox
Left = 0
Top = 0
Width = 366
Height = 53
Align = alTop
Caption = '&Depression'
TabOrder = 0
object LabelDepressionVolume: TLabel
Left = 80
Top = 8
Width = 76
Height = 13
Caption = 'Volume, cub.cm'
Transparent = True
end
object LabelDeplessionL: TLabel
Left = 248
Top = 8
Width = 34
Height = 13
Caption = '<l>, cm'
Transparent = True
end
object CheckBoxDepression: TCheckBox
Left = 4
Top = 16
Width = 65
Height = 17
Caption = 'Consider'
TabOrder = 0
OnClick = CheckBoxConsiderClick
end
object EditDepressionVolume: TEdit
Left = 68
Top = 20
Width = 125
Height = 21
TabOrder = 1
Text = '1.0'
end
object EditDepressionL: TEdit
Left = 212
Top = 20
Width = 121
Height = 21
TabOrder = 2
Text = '1.0'
end
end
object GroupBoxSSKinitial: TGroupBox
Left = 0
Top = 53
Width = 366
Height = 472
Align = alClient
Caption = '&Self-Shielding'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 1
object GroupBoxRAs: TGroupBox
Left = 2
Top = 128
Width = 362
Height = 165
Align = alClient
Caption = '&Res.absorbers'
TabOrder = 5
object PanelRAs: TPanel
Left = 2
Top = 15
Width = 358
Height = 58
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object LabelRA_V: TLabel
Left = 4
Top = 20
Width = 7
Height = 13
Caption = 'V'
end
object LabelRA_M: TLabel
Left = 68
Top = 20
Width = 9
Height = 13
Caption = 'M'
Visible = False
end
object LabelNperCM3: TLabel
Left = 120
Top = 36
Width = 119
Height = 15
Caption = 'N - nuclei per cub.cm'
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
end
object EditRA_V: TEdit
Left = 12
Top = 16
Width = 52
Height = 21
TabOrder = 0
Text = '20.0'
end
object EditRA_M: TEdit
Left = 80
Top = 16
Width = 52
Height = 21
Color = clMoneyGreen
TabOrder = 1
Text = '0.24e-3'
Visible = False
end
object ButtonLoadResPar: TButton
Left = 136
Top = 12
Width = 68
Height = 24
Caption = 'Load Res'
TabOrder = 2
OnClick = ButtonLoadResParClick
end
object ButtonRA_FillDefaults: TButton
Left = 277
Top = 12
Width = 68
Height = 24
Caption = 'Defaults'
TabOrder = 3
OnClick = ButtonRA_FillDefaultsClick
end
end
object StringGridRA_Rs: TStringGrid
Left = 3
Top = 67
Width = 320
Height = 112
DefaultColWidth = 70
DefaultRowHeight = 16
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goAlwaysShowEditor]
TabOrder = 1
OnDblClick = StringGridRA_RsDblClick
OnSelectCell = StringGridRA_RsSelectCell
OnSetEditText = StringGridRA_RsSetEditText
end
end
object GroupBoxMM: TGroupBox
Left = 2
Top = 293
Width = 362
Height = 92
Align = alBottom
Caption = 'Mi&xed moderators'
TabOrder = 6
object LabelMM_V: TLabel
Left = 272
Top = 20
Width = 7
Height = 13
Caption = 'V'
Color = clMoneyGreen
ParentColor = False
Visible = False
end
object LabelMM_M: TLabel
Left = 272
Top = 48
Width = 9
Height = 13
Caption = 'M'
Color = clMoneyGreen
ParentColor = False
Visible = False
end
object EditMM_V: TEdit
Left = 282
Top = 16
Width = 80
Height = 21
Color = clMoneyGreen
TabOrder = 1
Text = '0'
Visible = False
end
object EditMM_M: TEdit
Left = 282
Top = 44
Width = 80
Height = 21
Color = clMoneyGreen
TabOrder = 2
Text = '0'
Visible = False
end
object ButtonSaveMM: TButton
Left = 280
Top = 60
Width = 80
Height = 24
Caption = 'Save'
TabOrder = 4
OnClick = ButtonSaveMMClick
end
object ButtonLoadMM: TButton
Left = 280
Top = 32
Width = 80
Height = 24
Caption = 'Load'
TabOrder = 3
OnClick = ButtonLoadMMClick
end
object StringGridMM: TBKStringGrid
Left = 2
Top = 15
Width = 251
Height = 75
Align = alLeft
ColCount = 3
DefaultColWidth = 80
DefaultRowHeight = 16
FixedCols = 0
RowCount = 2
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goTabs, goAlwaysShowEditor]
TabOrder = 0
OnKeyUp = StringGridMMKeyUp
CaseSensitive = False
SortByFixedCol = False
Filename = 'TBKStringGrid.txt'
BlanksDown = True
Encryption = True
end
end
object GroupBoxOM: TGroupBox
Left = 2
Top = 385
Width = 362
Height = 85
Align = alBottom
Caption = 'Ou&ter Moderator'
TabOrder = 7
object LabelOM_V: TLabel
Left = 84
Top = 64
Width = 7
Height = 13
Caption = 'V'
Color = clMoneyGreen
ParentColor = False
Visible = False
end
object LabelOM_M: TLabel
Left = 256
Top = 52
Width = 9
Height = 13
Caption = 'M'
Color = clMoneyGreen
ParentColor = False
Visible = False
end
object StringGridOM: TBKStringGrid
Left = 2
Top = 15
Width = 251
Height = 42
ColCount = 3
DefaultColWidth = 80
DefaultRowHeight = 16
FixedCols = 0
RowCount = 2
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goTabs, goAlwaysShowEditor]
TabOrder = 0
CaseSensitive = False
SortByFixedCol = False
Filename = 'TBKStringGrid.txt'
BlanksDown = True
Encryption = True
end
object EditOM_V: TEdit
Left = 98
Top = 59
Width = 80
Height = 21
Color = clMoneyGreen
TabOrder = 1
Text = '30000'
Visible = False
end
object EditOM_M: TEdit
Left = 266
Top = 35
Width = 80
Height = 21
Color = clMoneyGreen
TabOrder = 2
Text = '0'
Visible = False
end
object ButtonLoadOM: TButton
Left = 280
Top = 20
Width = 80
Height = 24
Caption = 'Load'
TabOrder = 3
OnClick = ButtonLoadOMClick
end
object ButtonSaveOM: TButton
Left = 280
Top = 56
Width = 80
Height = 24
Caption = 'Save'
TabOrder = 4
OnClick = ButtonSaveOMClick
end
end
object PaneRA_Top: TPanel
Left = 2
Top = 15
Width = 362
Height = 30
Align = alTop
BevelOuter = bvNone
TabOrder = 8
end
object PanelBlock: TGroupBox
Left = 2
Top = 45
Width = 362
Height = 83
Align = alTop
Caption = '&Block properties'
Color = clBtnFace
ParentColor = False
TabOrder = 4
object LabelVblock: TLabel
Left = 260
Top = 40
Width = 36
Height = 13
Alignment = taRightJustify
Caption = 'V block'
Visible = False
end
object LabelSkin_V: TLabel
Left = 260
Top = 12
Width = 29
Height = 13
Alignment = taRightJustify
Caption = 'V skin'
end
object LabelBlock_M: TLabel
Left = 174
Top = 64
Width = 38
Height = 13
Alignment = taRightJustify
Caption = 'M block'
Visible = False
end
object LabelSkin_M: TLabel
Left = 266
Top = 64
Width = 31
Height = 13
Alignment = taRightJustify
Caption = 'M skin'
Visible = False
end
object LabelLmean4SSK: TLabel
Left = 8
Top = 60
Width = 34
Height = 13
Caption = '<l>, cm'
end
object LabelTemperature4SSK: TLabel
Left = 108
Top = 60
Width = 20
Height = 13
Alignment = taRightJustify
Caption = 'T, K'
end
object LabelUnits_MV: TLabel
Left = 116
Top = 8
Width = 66
Height = 15
Caption = 'V in cub.cm'
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
Transparent = True
end
object RadioGroupCellType: TRadioGroup
Left = 0
Top = 20
Width = 257
Height = 33
Caption = 'Ce&ll'
Columns = 3
ItemIndex = 0
Items.Strings = (
'No'
'Sq'
'Hex')
TabOrder = 0
OnClick = RadioGroupCellTypeClick
end
object EditTemperature: TEdit
Left = 132
Top = 56
Width = 37
Height = 21
TabOrder = 2
Text = '320'
end
object EditBlock_V: TEdit
Left = 296
Top = 36
Width = 48
Height = 21
Color = clMoneyGreen
TabOrder = 5
Text = '250'
Visible = False
end
object EditSkin_V: TEdit
Left = 292
Top = 8
Width = 48
Height = 21
Color = clWhite
TabOrder = 3
Text = '0'
end
object EditBlock_M: TEdit
Left = 212
Top = 60
Width = 48
Height = 21
Color = clMoneyGreen
TabOrder = 4
Text = '270'
Visible = False
end
object EditSkin_M: TEdit
Left = 300
Top = 60
Width = 48
Height = 21
Color = clMoneyGreen
TabOrder = 6
Text = '0,0012345'
Visible = False
end
object Editl_mean: TEdit