-
Notifications
You must be signed in to change notification settings - Fork 5
/
unit3.lfm
117 lines (117 loc) · 2.18 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
object Form3: TForm3
Left = 239
Height = 185
Top = 118
Width = 320
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Form3'
ClientHeight = 185
ClientWidth = 320
FormStyle = fsStayOnTop
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.1.0.0'
object Label1: TLabel
Left = 16
Height = 15
Top = 16
Width = 43
Caption = 'Activate'
ParentColor = False
end
object CheckBox1: TCheckBox
Left = 112
Height = 19
Top = 16
Width = 20
Checked = True
OnChange = CheckBox1Change
State = cbChecked
TabOrder = 0
end
object TrackBar1: TTrackBar
Left = 112
Height = 25
Top = 40
Width = 200
Max = 25
Min = -20
OnChange = CheckBox1Change
Position = 0
ShowSelRange = False
TickStyle = tsNone
TabOrder = 1
end
object Label2: TLabel
Left = 16
Height = 15
Top = 50
Width = 45
Caption = 'Strength'
ParentColor = False
end
object TrackBar2: TTrackBar
Left = 112
Height = 25
Top = 112
Width = 200
Max = 100
Min = -100
OnChange = CheckBox1Change
Position = 0
ShowSelRange = False
TickStyle = tsNone
TabOrder = 2
end
object Label3: TLabel
Left = 16
Height = 15
Top = 122
Width = 71
Caption = 'Vertical offset'
ParentColor = False
end
object TrackBar3: TTrackBar
Left = 112
Height = 25
Top = 144
Width = 200
Max = 100
Min = -100
OnChange = CheckBox1Change
Position = 0
ShowSelRange = False
TickStyle = tsNone
TabOrder = 3
end
object Label4: TLabel
Left = 16
Height = 15
Top = 154
Width = 88
Caption = 'Horizontal offset'
ParentColor = False
end
object Label5: TLabel
Left = 16
Height = 15
Top = 82
Width = 32
Caption = 'Zoom'
ParentColor = False
end
object TrackBar4: TTrackBar
Left = 112
Height = 25
Top = 72
Width = 200
Max = 200
Min = 10
OnChange = CheckBox1Change
Position = 100
ShowSelRange = False
TickStyle = tsNone
TabOrder = 4
end
end