-
Notifications
You must be signed in to change notification settings - Fork 3
/
dlg_resize.lfm
205 lines (205 loc) · 3.9 KB
/
dlg_resize.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
object ResizeDlg: TResizeDlg
Left = 396
Height = 242
Top = 205
Width = 470
Caption = 'Resize'
ClientHeight = 242
ClientWidth = 470
LCLVersion = '3.0.0.3'
object Button1: TButton
Left = 373
Height = 25
Top = 32
Width = 75
Caption = 'OK'
TabOrder = 0
OnClick = Button1Click
end
object GroupBox1: TGroupBox
Left = 120
Height = 97
Top = 16
Width = 237
ClientHeight = 77
ClientWidth = 233
TabOrder = 1
object Label5: TLabel
Left = 16
Height = 15
Top = 8
Width = 32
Caption = 'Width'
end
object Label6: TLabel
Left = 16
Height = 15
Top = 40
Width = 36
Caption = 'Height'
end
object Edit3: TEdit
Left = 71
Height = 23
Top = 8
Width = 80
TabOrder = 0
Text = '200'
end
object Edit4: TEdit
Left = 71
Height = 23
Top = 40
Width = 80
TabOrder = 1
Text = '200'
end
object UpDown3: TUpDown
Left = 151
Height = 23
Top = 8
Width = 17
Associate = Edit3
Max = 16000
Min = 0
Position = 200
TabOrder = 2
end
object UpDown4: TUpDown
Left = 151
Height = 23
Top = 40
Width = 17
Associate = Edit4
Max = 16000
Min = 0
Position = 200
TabOrder = 3
end
object Label7: TLabel
Left = 176
Height = 15
Top = 8
Width = 13
Caption = 'px'
end
object Label8: TLabel
Left = 176
Height = 15
Top = 40
Width = 13
Caption = 'px'
end
end
object GroupBox2: TGroupBox
Left = 120
Height = 97
Top = 128
Width = 237
ClientHeight = 77
ClientWidth = 233
TabOrder = 2
object Label9: TLabel
Left = 16
Height = 15
Top = 8
Width = 32
Caption = 'Width'
end
object Label10: TLabel
Left = 16
Height = 15
Top = 40
Width = 36
Caption = 'Height'
end
object Edit5: TEdit
Left = 71
Height = 23
Top = 8
Width = 80
TabOrder = 0
Text = '100'
end
object Edit6: TEdit
Left = 71
Height = 23
Top = 40
Width = 80
TabOrder = 1
Text = '100'
end
object UpDown5: TUpDown
Left = 151
Height = 23
Top = 8
Width = 17
Associate = Edit5
Max = 800
Min = 0
Position = 100
TabOrder = 2
end
object UpDown6: TUpDown
Left = 151
Height = 23
Top = 40
Width = 17
Associate = Edit6
Max = 800
Min = 0
Position = 100
TabOrder = 3
end
object Label11: TLabel
Left = 176
Height = 15
Top = 8
Width = 10
Caption = '%'
end
object Label12: TLabel
Left = 176
Height = 15
Top = 40
Width = 10
Caption = '%'
end
end
object Button2: TButton
Left = 373
Height = 25
Top = 144
Width = 75
Caption = 'OK'
TabOrder = 3
OnClick = Button2Click
end
object RG: TRadioGroup
Left = 24
Height = 209
Top = 16
Width = 88
AutoFill = True
Caption = 'Method'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 189
ClientWidth = 84
ItemIndex = 3
Items.Strings = (
'System'
'Bell'
'Hermite'
'Lanczos'
'Mitchel'
'Spline'
)
TabOrder = 4
end
end