-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.dfm
254 lines (254 loc) · 4.73 KB
/
Unit1.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
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 527
ClientWidth = 698
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDesktopCenter
OnCreate = FormCreate
OnMouseWheelDown = FormMouseWheelDown
OnMouseWheelUp = FormMouseWheelUp
PixelsPerInch = 96
TextHeight = 13
object Image: TImage
Left = 9
Top = 8
Width = 510
Height = 510
OnMouseDown = ImageMouseDown
OnMouseMove = ImageMouseMove
OnMouseUp = ImageMouseUp
end
object Panel1: TPanel
Left = 536
Top = 0
Width = 162
Height = 527
Align = alRight
BevelOuter = bvNone
TabOrder = 0
object DownButton: TSpeedButton
Left = 45
Top = 412
Width = 23
Height = 22
AllowAllUp = True
GroupIndex = 3
OnClick = DownButtonClick
end
object Label1: TLabel
Left = 0
Top = 3
Width = 22
Height = 13
Caption = 'Xmin'
end
object Label2: TLabel
Left = 0
Top = 57
Width = 26
Height = 13
Caption = 'Xmax'
end
object Label3: TLabel
Left = 0
Top = 101
Width = 22
Height = 13
Caption = 'Ymin'
end
object Label4: TLabel
Left = 0
Top = 155
Width = 26
Height = 13
Caption = 'Ymax'
end
object Label5: TLabel
Left = 0
Top = 200
Width = 22
Height = 13
Caption = 'Vmin'
end
object Label6: TLabel
Left = 0
Top = 227
Width = 26
Height = 13
Caption = 'Vmax'
end
object Label7: TLabel
Left = 0
Top = 30
Width = 12
Height = 13
Caption = 'X2'
end
object Label8: TLabel
Left = 0
Top = 128
Width = 12
Height = 13
Caption = 'Y2'
end
object LeftButton: TSpeedButton
Left = 24
Top = 392
Width = 23
Height = 22
AllowAllUp = True
GroupIndex = 2
OnClick = LeftButtonClick
end
object RightButton: TSpeedButton
Left = 66
Top = 392
Width = 23
Height = 22
AllowAllUp = True
GroupIndex = 4
OnClick = RightButtonClick
end
object TimeLabel: TLabel
Left = 4
Top = 448
Width = 153
Height = 34
AutoSize = False
Caption = 'TimeLabel'
WordWrap = True
end
object UpButton: TSpeedButton
Left = 45
Top = 370
Width = 23
Height = 22
AllowAllUp = True
GroupIndex = 1
OnClick = UpButtonClick
end
object ColorBWRadio: TRadioButton
Left = 4
Top = 273
Width = 113
Height = 17
Caption = '0/1'
TabOrder = 0
OnClick = ColorChanged
end
object ColorManRadio: TRadioButton
Left = 4
Top = 296
Width = 113
Height = 17
Caption = 'Manual'
Checked = True
TabOrder = 1
TabStop = True
OnClick = ColorChanged
end
object ColorStatRadio: TRadioButton
Left = 4
Top = 343
Width = 113
Height = 17
Caption = 'Statistics'
TabOrder = 2
OnClick = ColorChanged
end
object ColorTrack: TTrackBar
Left = 16
Top = 319
Width = 135
Height = 26
LineSize = 16
Max = 256
Min = -256
PageSize = 64
Frequency = 32
ShowSelRange = False
TabOrder = 3
OnChange = ColorChanged
end
object TimeButton: TButton
Left = 4
Top = 488
Width = 75
Height = 25
Caption = 'Time'
TabOrder = 4
OnClick = TimeButtonClick
end
object VmaxEdit: TEdit
Left = 32
Top = 224
Width = 107
Height = 21
TabOrder = 5
end
object VminEdit: TEdit
Left = 32
Top = 197
Width = 107
Height = 21
TabOrder = 6
end
object X2Edit: TEdit
Left = 32
Top = 27
Width = 107
Height = 21
TabOrder = 7
end
object XmaxEdit: TEdit
Left = 32
Top = 54
Width = 107
Height = 21
TabOrder = 8
end
object XminEdit: TEdit
Left = 32
Top = 0
Width = 107
Height = 21
TabOrder = 9
end
object Y2Edit: TEdit
Left = 32
Top = 125
Width = 107
Height = 21
TabOrder = 10
end
object YmaxEdit: TEdit
Left = 32
Top = 152
Width = 107
Height = 21
TabOrder = 11
end
object YminEdit: TEdit
Left = 32
Top = 98
Width = 107
Height = 21
TabOrder = 12
end
end
object ScrollTimer: TTimer
Enabled = False
Interval = 30
OnTimer = ScrollTimerTimer
Left = 640
Top = 416
end
end