forked from neurolabusc/MRIcroGL10_OLD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mosaicprefs.dfm
executable file
·151 lines (151 loc) · 2.86 KB
/
mosaicprefs.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
object MosaicPrefsForm: TMosaicPrefsForm
Tag = 3
Left = 520
Top = 102
BorderStyle = bsDialog
Caption = 'Mosaic Settings'
ClientHeight = 210
ClientWidth = 327
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 24
Width = 40
Height = 13
Caption = 'Columns'
end
object Label2: TLabel
Left = 16
Top = 48
Width = 27
Height = 13
Caption = 'Rows'
end
object Label3: TLabel
Left = 16
Top = 84
Width = 51
Height = 13
Caption = 'Orientation'
end
object Label4: TLabel
Left = 8
Top = 148
Width = 77
Height = 13
Caption = 'Script Command'
end
object CopyScript: TSpeedButton
Left = 104
Top = 144
Width = 73
Height = 22
Caption = 'Copy Script'
OnClick = CopyScriptClick
end
object RunScript: TSpeedButton
Left = 184
Top = 144
Width = 73
Height = 22
Caption = 'Run Script'
OnClick = RunScriptClick
end
object ColOverlap: TTrackBar
Left = 176
Top = 12
Width = 150
Height = 32
Max = 9
Min = -9
Position = -1
TabOrder = 0
TickMarks = tmTopLeft
OnChange = UpdateMosaic
end
object RowOverlap: TTrackBar
Left = 176
Top = 44
Width = 150
Height = 32
Max = 9
Min = -9
Position = -3
TabOrder = 1
OnChange = UpdateMosaic
end
object ColEdit: TSpinEdit
Left = 80
Top = 16
Width = 97
Height = 22
MaxValue = 20
MinValue = 1
TabOrder = 2
Value = 3
OnChange = UpdateMosaic
end
object RowEdit: TSpinEdit
Left = 80
Top = 48
Width = 97
Height = 22
MaxValue = 20
MinValue = 1
TabOrder = 3
Value = 2
OnChange = UpdateMosaic
end
object OrientDrop: TComboBox
Left = 88
Top = 80
Width = 145
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
TabOrder = 4
OnChange = UpdateMosaic
Items.Strings = (
'Axial'
'Coronal'
'Sagittal+'
'Sagittal-')
end
object CrossCheck: TCheckBox
Left = 16
Top = 112
Width = 137
Height = 17
Alignment = taLeftJustify
Caption = 'Show cross slice'
TabOrder = 5
OnClick = UpdateMosaic
end
object LabelCheck: TCheckBox
Left = 184
Top = 112
Width = 137
Height = 17
Alignment = taLeftJustify
Caption = 'Label slice number'
TabOrder = 6
OnClick = UpdateMosaic
end
object MosaicText: TMemo
Left = 8
Top = 176
Width = 313
Height = 25
TabOrder = 7
end
end