-
Notifications
You must be signed in to change notification settings - Fork 5
/
unit3.lfm
213 lines (213 loc) · 3.76 KB
/
unit3.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
object Form3: TForm3
Left = 238
Height = 281
Top = 122
Width = 249
Caption = 'Form3'
ClientHeight = 281
ClientWidth = 249
OnClose = FormClose
OnCreate = FormCreate
LCLVersion = '0.9.31'
object ComboBox1: TComboBox
Left = 104
Height = 29
Top = 8
Width = 122
ItemHeight = 0
Items.Strings = (
'Single axis'
'Dual axis'
)
OnChange = ComboBox1Change
Style = csDropDownList
TabOrder = 0
end
object Label1: TLabel
Left = 24
Height = 18
Top = 16
Width = 70
Caption = 'Trailer type'
ParentColor = False
end
object Label2: TLabel
Left = 25
Height = 18
Top = 49
Width = 19
Caption = 'H1'
ParentColor = False
end
object ScrollBar2: TScrollBar
Left = 105
Height = 16
Top = 48
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 1
OnChange = ScrollBar2Change
end
object Label3: TLabel
Left = 25
Height = 18
Top = 70
Width = 19
Caption = 'H2'
ParentColor = False
end
object ScrollBar3: TScrollBar
Left = 105
Height = 16
Top = 69
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 2
OnChange = ScrollBar3Change
end
object Label4: TLabel
Left = 25
Height = 18
Top = 94
Width = 19
Caption = 'H3'
ParentColor = False
end
object ScrollBar4: TScrollBar
Left = 105
Height = 16
Top = 93
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 3
OnChange = ScrollBar4Change
end
object Label5: TLabel
Left = 24
Height = 18
Top = 161
Width = 20
Caption = 'W1'
ParentColor = False
end
object ScrollBar5: TScrollBar
Left = 105
Height = 16
Top = 160
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 4
OnChange = ScrollBar5Change
end
object Label6: TLabel
Left = 23
Height = 18
Top = 185
Width = 20
Caption = 'W2'
ParentColor = False
end
object ScrollBar6: TScrollBar
Left = 105
Height = 16
Top = 184
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 5
OnChange = ScrollBar6Change
end
object Label7: TLabel
Left = 25
Height = 18
Top = 115
Width = 19
Caption = 'H4'
ParentColor = False
end
object ScrollBar7: TScrollBar
Left = 105
Height = 16
Top = 115
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 6
OnChange = ScrollBar7Change
end
object Button2: TButton
Left = 8
Height = 25
Top = 246
Width = 231
Caption = '&OK'
OnClick = Button2Click
TabOrder = 7
end
object Button3: TButton
Left = 8
Height = 25
Top = 209
Width = 105
Caption = '&Load Trailer'
OnClick = Button3Click
TabOrder = 8
end
object Button4: TButton
Left = 134
Height = 25
Top = 208
Width = 105
Caption = '&Save Trailer'
OnClick = Button4Click
TabOrder = 9
end
object Label8: TLabel
Left = 25
Height = 18
Top = 136
Width = 19
Caption = 'H5'
ParentColor = False
end
object ScrollBar8: TScrollBar
Left = 105
Height = 16
Top = 138
Width = 121
Max = 200
PageSize = 0
ParentShowHint = False
ShowHint = True
TabOrder = 10
OnChange = ScrollBar8Change
end
object OpenDialog1: TOpenDialog
DefaultExt = '.trl'
Filter = 'Trailer|*.trl|All|*.*'
left = 24
top = 216
end
object SaveDialog1: TSaveDialog
DefaultExt = '.trl'
Filter = 'Trailer|*.trl|All|*.*'
left = 160
top = 216
end
end