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 255 256
|
object IpHTMLPreview: TIpHTMLPreview
Left = 274
Height = 372
Top = 141
Width = 645
Caption = 'Print preview'
ClientHeight = 372
ClientWidth = 645
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = FormResize
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '0.9.29'
object Panel1: TPanel
Left = 0
Height = 33
Top = 0
Width = 645
Align = alTop
AutoSize = True
BevelOuter = bvNone
ClientHeight = 33
ClientWidth = 645
TabOrder = 0
object Label1: TLabel
AnchorSideLeft.Control = btnPrev
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 398
Height = 14
Top = 9
Width = 29
BorderSpacing.Around = 5
Caption = 'Page:'
ParentColor = False
end
object Label2: TLabel
AnchorSideLeft.Control = edtPage
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 469
Height = 14
Top = 9
Width = 10
BorderSpacing.Around = 5
Caption = 'of'
ParentColor = False
end
object lblMaxPage: TLabel
AnchorSideLeft.Control = Label2
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 484
Height = 1
Top = 16
Width = 1
BorderSpacing.Around = 5
ParentColor = False
end
object Label3: TLabel
AnchorSideLeft.Control = btnSelectPrinter
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 159
Height = 14
Top = 9
Width = 31
BorderSpacing.Around = 5
Caption = 'Zoom:'
ParentColor = False
end
object btnPrint: TButton
Left = 5
Height = 23
Top = 5
Width = 47
AutoSize = True
BorderSpacing.Around = 5
Caption = 'Print'
Default = True
OnClick = btnPrintClick
TabOrder = 0
end
object btnFirst: TButton
AnchorSideLeft.Control = btnClose
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 318
Height = 23
Top = 5
Width = 38
AutoSize = True
BorderSpacing.Around = 5
Caption = '<<'
OnClick = btnFirstClick
TabOrder = 1
end
object btnPrev: TButton
AnchorSideLeft.Control = btnFirst
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 361
Height = 23
Top = 5
Width = 32
AutoSize = True
BorderSpacing.Around = 5
Caption = '<'
OnClick = btnPrevClick
TabOrder = 2
end
object btnNext: TButton
AnchorSideLeft.Control = lblMaxPage
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 490
Height = 23
Top = 5
Width = 32
AutoSize = True
BorderSpacing.Around = 5
Caption = '>'
OnClick = btnNextClick
TabOrder = 4
end
object btnLast: TButton
AnchorSideLeft.Control = btnNext
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 527
Height = 23
Top = 5
Width = 38
AutoSize = True
BorderSpacing.Around = 5
Caption = '>>'
OnClick = btnLastClick
TabOrder = 5
end
object btnClose: TButton
AnchorSideLeft.Control = ZoomCombo
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 261
Height = 23
Top = 5
Width = 52
AutoSize = True
BorderSpacing.Around = 5
Cancel = True
Caption = 'Close'
ModalResult = 2
TabOrder = 6
end
object edtPage: TEdit
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 432
Height = 21
Top = 6
Width = 32
BorderSpacing.Around = 5
OnChange = edtPageChange
TabOrder = 3
Text = '1'
end
object ZoomCombo: TComboBox
AnchorSideLeft.Control = Label3
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 195
Height = 21
Top = 6
Width = 61
BorderSpacing.Around = 5
ItemHeight = 13
Items.Strings = (
'10%'
'25%'
'50%'
'75%'
'100%'
'150%'
'200%'
'300%'
'400%'
)
OnChange = ZoomComboChange
Style = csDropDownList
TabOrder = 7
end
object btnSelectPrinter: TButton
AnchorSideLeft.Control = btnPrint
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrCenter
Left = 57
Height = 23
Top = 5
Width = 97
AutoSize = True
BorderSpacing.Around = 5
Caption = 'Select printer...'
OnClick = btnSelectPrinterClick
TabOrder = 8
end
end
object ScrollBox1: TScrollBox
Left = 0
Height = 339
Top = 33
Width = 645
Align = alClient
ClientHeight = 335
ClientWidth = 641
Color = clBtnFace
ParentColor = False
TabOrder = 1
object PaperPanel: TPanel
Left = 0
Height = 125
Top = 0
Width = 158
BevelOuter = bvNone
ClientHeight = 125
ClientWidth = 158
Color = clWhite
ParentColor = False
TabOrder = 0
object PaintBox1: TPaintBox
AnchorSideLeft.Side = asrCenter
AnchorSideTop.Side = asrCenter
Left = 0
Height = 113
Top = 0
Width = 145
OnPaint = PaintBox1Paint
end
end
end
end
|