-
Notifications
You must be signed in to change notification settings - Fork 8
/
dlgDocPage.lfm
221 lines (221 loc) · 4.19 KB
/
dlgDocPage.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
214
215
216
217
218
219
220
221
object frmDocPage: TfrmDocPage
Left = 468
Height = 345
Top = 300
Width = 321
BorderStyle = bsToolWindow
ClientHeight = 345
ClientWidth = 321
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.1'
object lSize: TLabel
Left = 8
Height = 1
Top = 12
Width = 1
ParentColor = False
end
object lCR: TLabel
Left = 8
Height = 1
Top = 220
Width = 1
ParentColor = False
end
object bOK: TButton
Left = 152
Height = 25
Top = 312
Width = 75
Default = True
ModalResult = 1
TabOrder = 6
end
object bCancel: TButton
Left = 240
Height = 25
Top = 312
Width = 75
Cancel = True
ModalResult = 2
TabOrder = 7
end
object cbCreateFrom: TCheckBox
Left = 8
Height = 19
Top = 192
Width = 20
Checked = True
State = cbChecked
TabOrder = 3
end
object gbWhenResizing: TGroupBox
Left = 8
Height = 57
Top = 248
Width = 305
ClientHeight = 39
ClientWidth = 301
TabOrder = 5
object iaCrop: TImageAnchors
Left = 272
Height = 26
Top = 4
Width = 26
ParentShowHint = False
ShowHint = True
AnchorHoriz = iahLeft
AnchorVert = iavTop
OnClick = iaCropClick
end
object rbStretch: TRadioButton
Left = 8
Height = 19
Top = 8
Width = 20
Checked = True
TabOrder = 0
TabStop = True
end
object rbCrop: TRadioButton
Left = 128
Height = 19
Top = 8
Width = 20
TabOrder = 1
end
end
object gbCustomSize: TGroupBox
Left = 8
Height = 73
Top = 32
Width = 305
ClientHeight = 55
ClientWidth = 301
TabOrder = 1
object alWidth: TAdjustLabel
Left = 8
Height = 1
Top = 4
Width = 1
ParentColor = False
AttachedEdit = neWidth
end
object alHeight: TAdjustLabel
Left = 8
Height = 1
Top = 28
Width = 1
ParentColor = False
AttachedEdit = neHeight
end
object neWidth: TNumberEdit
Left = 80
Height = 21
Top = 0
Width = 73
OnChange = neWidthChange
TabOrder = 0
Text = '0'
Min = 1
Max = 0
Increment = 1
end
object neHeight: TNumberEdit
Left = 80
Height = 21
Top = 24
Width = 73
OnChange = neHeightChange
TabOrder = 1
Text = '0'
Min = 1
Max = 0
Increment = 1
end
object cbSquare: TCheckBox
Left = 160
Height = 19
Top = 16
Width = 20
Checked = True
OnClick = cbSquareClick
State = cbChecked
TabOrder = 2
end
end
object cbSize: TComboBox
Left = 144
Height = 21
Top = 8
Width = 169
DropDownCount = 20
ItemHeight = 13
OnChange = cbSizeChange
Style = csDropDownList
TabOrder = 0
end
object cbCR: TComboBox
Left = 144
Height = 21
Top = 216
Width = 169
DropDownCount = 20
ItemHeight = 13
Style = csDropDownList
TabOrder = 4
end
object gbOther: TGroupBox
Left = 8
Height = 73
Top = 112
Width = 305
ClientHeight = 55
ClientWidth = 301
TabOrder = 2
object alFrameRate: TAdjustLabel
Left = 8
Height = 1
Top = 4
Width = 1
ParentColor = False
AttachedEdit = neFrameRate
end
object neFrameRate: TNumberEdit
Left = 232
Height = 21
Top = 0
Width = 65
TabOrder = 0
Text = '0'
Min = 0
Max = 60000
Increment = 1
end
object neDPI: TNumberEdit
Left = 232
Height = 21
Top = 28
Width = 65
TabOrder = 1
Text = '0'
Min = 0
Max = 65535
Increment = 1
end
object alDPI: TAdjustLabel
Left = 8
Height = 13
Top = 32
Width = 3
Caption = ' '
ParentColor = False
AttachedEdit = neDPI
end
end
end