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 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
{******************************************************************}
{* IPHTMLPV.PAS - HTML Browser Print Preview *}
{******************************************************************}
(* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is TurboPower Internet Professional
*
* The Initial Developer of the Original Code is
* TurboPower Software
*
* Portions created by the Initial Developer are Copyright (C) 2000-2002
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* ***** END LICENSE BLOCK ***** *)
{ Global defines potentially affecting this unit }
{$I IPDEFINE.INC}
unit IpHtmlPv;
interface
uses
{$IFDEF IP_LAZARUS}
LCLType,
GraphType,
LCLIntf,
Buttons,
{$ELSE}
Windows,
{$ENDIF}
Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, IpHtml;
resourcestring
rsIpHTMLPreviewPrintPreview = 'Print preview';
rsIpHTMLPreviewPrint = 'Print';
rsIpHTMLPreviewZoom = 'Zoom:';
rsIpHTMLPreviewClose = 'Close';
rsIpHTMLPreviewPage = 'Page:';
rsIpHTMLPreviewOf = 'of';
rsIpHTMLPreviewSelectPrinter = 'Select printer ...';
type
{ TIpHTMLPreview }
TIpHTMLPreview = class(TForm)
btnSelectPrinter: TButton;
Label3: TLabel;
ZoomCombo: TComboBox;
PaperPanel: TPanel;
PaintBox1: TPaintBox;
procedure btnNextClick(Sender: TObject);
procedure btnLastClick(Sender: TObject);
procedure btnSelectPrinterClick(Sender: TObject);
procedure edtPageChange(Sender: TObject);
procedure btnPrintClick(Sender: TObject);
procedure PaintBox1Paint(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure ZoomComboChange(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormResize(Sender: TObject);
published
Panel1: TPanel;
btnPrint: TButton;
btnFirst: TButton;
btnPrev: TButton;
btnNext: TButton;
btnLast: TButton;
btnClose: TButton;
edtPage: TEdit;
Label1: TLabel;
Label2: TLabel;
lblMaxPage: TLabel;
ScrollBox1: TScrollBox;
procedure FormShow(Sender: TObject);
procedure btnFirstClick(Sender: TObject);
procedure btnPrevClick(Sender: TObject);
procedure SetCurPage(const Value: Integer);
protected
FClipRect, SourceRect: TRect;
Scratch: TBitmap;
FScale: double;
FZoom: Integer;
procedure SetZoom(const Value: Integer);
procedure ResizeCanvas;
procedure ScaleSourceRect;
procedure AlignPaintBox;
procedure Render;
public
FCurPage: Integer;
HTML : TIpHtml;
PageRect: TRect;
OwnerPanel: TIpHtmlInternalPanel;
property ClipRect: TRect read FClipRect write FClipRect;
property CurPage: Integer read FCurPage write SetCurPage;
procedure RenderPage(PageNo: Integer);
property Zoom: Integer read FZoom write SetZoom;
property Scale: double read FScale;
end;
implementation
uses
Printers;
{$IFNDEF IP_LAZARUS}
{$R *.DFM}
{$ELSE}
{$R *.lfm}
{$ENDIF}
const
SCRATCH_WIDTH = 800; //640;
SCRATCH_HEIGHT = 600; //480;
procedure TIpHTMLPreview.FormShow(Sender: TObject);
begin
Zoom := 100;
RenderPage(CurPage);
end;
procedure TIpHTMLPreview.RenderPage(PageNo: Integer);
var
CR : TRect;
begin
CR := Rect(0, 0, OwnerPanel.PrintWidth, 0);
CR.Top := (PageNo - 1) * OwnerPanel.PrintHeight;
CR.Bottom := Cr.Top + OwnerPanel.PrintHeight;
PageRect := CR;
PaintBox1.Invalidate;
end;
procedure TIpHTMLPreview.btnFirstClick(Sender: TObject);
begin
CurPage := 1;
end;
procedure TIpHTMLPreview.btnPrevClick(Sender: TObject);
begin
CurPage := CurPage - 1;
end;
procedure TIpHTMLPreview.SetCurPage(const Value: Integer);
begin
if (Value <> FCurPage)
and (Value >= 1)
and (Value <= OwnerPanel.PageCount) then begin
FCurPage := Value;
RenderPage(Value);
edtPage.Text := IntToStr(CurPage);
end;
end;
procedure TIpHTMLPreview.btnNextClick(Sender: TObject);
begin
CurPage := CurPage + 1;
end;
procedure TIpHTMLPreview.btnLastClick(Sender: TObject);
begin
CurPage := OwnerPanel.PageCount;
end;
procedure TIpHTMLPreview.btnSelectPrinterClick(Sender: TObject);
begin
if OwnerPanel <> nil then
if OwnerPanel.SelectPrinterDlg then
SetZoom(Zoom); {force recalc of preview sizes}
end;
procedure TIpHTMLPreview.edtPageChange(Sender: TObject);
begin
CurPage := StrToInt(edtPage.Text);
end;
procedure TIpHTMLPreview.btnPrintClick(Sender: TObject);
begin
Screen.Cursor := crHourglass;
ScaleFonts := False;
try
OwnerPanel.PrintPages(1, OwnerPanel.PageCount);
finally
ScaleFonts := True;
Screen.Cursor := crDefault;
Close;
end;
end;
procedure TIpHTMLPreview.ScaleSourceRect;
begin
SourceRect.Left := round(SourceRect.Left / Scale);
SourceRect.Top := round(SourceRect.Top / Scale);
SourceRect.Right := round(SourceRect.Right / Scale);
SourceRect.Bottom := round(SourceRect.Bottom / Scale);
end;
procedure TIpHTMLPreview.Render;
var
TTop, TLeft,
WindowTop, WindowLeft: Integer;
R: TRect;
begin
{GDI won't let us create a bitmap for a whole page
since it would become too big for large resolutions,
so we have to do banding by hand}
Screen.Cursor := crHourglass;
try
PaintBox1.Canvas.Brush.Color := clWhite;
PaintBox1.Canvas.FillRect(PaintBox1.Canvas.ClipRect);
WindowTop := SourceRect.Top;
TTop := 0;
while WindowTop < SourceRect.Bottom do begin
WindowLeft := SourceRect.Left;
TLeft := 0;
while WindowLeft < SourceRect.Right do begin
R.Left := WindowLeft;
R.Top := WindowTop;
R.Right := R.Left + SCRATCH_WIDTH + 1;
R.Bottom := R.Top + SCRATCH_HEIGHT + 1;
HTML.Render(Scratch.Canvas, R, False, Point(0, 0));
R.Left := PaintBox1.Canvas.ClipRect.Left + round(TLeft * Scale);
R.Top := PaintBox1.Canvas.ClipRect.Top + round(TTop * Scale);
R.Right := R.Left + round(SCRATCH_WIDTH * Scale) + 1;
R.Bottom := R.Top + round(SCRATCH_HEIGHT * Scale) + 1;
PaintBox1.Canvas.StretchDraw(R, Scratch);
inc(WindowLeft, SCRATCH_WIDTH);
inc(TLeft, SCRATCH_WIDTH);
end;
inc(WindowTop, SCRATCH_HEIGHT);
inc(TTop, SCRATCH_HEIGHT);
end;
finally
Screen.Cursor := crDefault;
end;
end;
procedure TIpHTMLPreview.PaintBox1Paint(Sender: TObject);
begin
SourceRect := PaintBox1.Canvas.ClipRect;
ScaleSourceRect;
ClipRect := SourceRect;
OffsetRect(SourceRect, 0, PageRect.Top);
Render;
end;
procedure TIpHTMLPreview.FormDestroy(Sender: TObject);
begin
Scratch.Free;
end;
procedure TIpHTMLPreview.ZoomComboChange(Sender: TObject);
var
S: string;
begin
with ZoomCombo do
S := Items[ItemIndex];
Zoom := StrToInt(copy(S, 1, length(S) - 1));
end;
procedure TIpHTMLPreview.FormCreate(Sender: TObject);
begin
ZoomCombo.ItemIndex := 4;
FZoom := 100;
Scratch := TBitmap.Create;
Scratch.Width := SCRATCH_WIDTH;
Scratch.Height := SCRATCH_HEIGHT;
// localization
Self.Caption := rsIpHTMLPreviewPrintPreview;
btnPrint.Caption := rsIpHTMLPreviewPrint;
Label3.Caption := rsIpHTMLPreviewZoom;
btnClose.Caption := rsIpHTMLPreviewClose;
Label1.Caption := rsIpHTMLPreviewPage;
Label2.Caption := rsIpHTMLPreviewOf;
btnSelectPrinter.Caption := rsIpHTMLPreviewSelectPrinter
end;
procedure TIpHTMLPreview.SetZoom(const Value: Integer);
var
Scale1, Scale2, Scale0: double;
{$IFDEF IP_LAZARUS}
ClientHeightDbl, ClientWidthDbl: double;
{$ENDIF}
begin
FZoom := Value;
{$IFDEF IP_LAZARUS}
ClientHeightDbl := ClientHeight;
ClientWidthDbl := ClientWidth;
if Printer.PageHeight>0 then
Scale1 := ClientHeightDbl/Printer.PageHeight
else
Scale1 := ClientHeightDbl/500;
if Printer.PageWidth>0 then
Scale2 := ClientWidthDbl/ Printer.PageWidth
else
Scale2 := ClientWidthDbl/ 500;
{$ELSE}
Scale1 := ClientHeight/ Printer.PageHeight; //JMN
Scale2 := ClientWidth/ Printer.PageWidth; //JMN
{$ENDIF}
if Scale1 < Scale2 then
Scale0 := Scale1
else
Scale0 := Scale2;
FScale := Scale0 * FZoom / 100;
ResizeCanvas;
AlignPaintBox;
end;
procedure TIpHTMLPreview.ResizeCanvas;
begin
ScrollBox1.HorzScrollBar.Position := 0;
ScrollBox1.VertScrollBar.Position := 0;
{$IFDEF IP_LAZARUS}
if Printer.PageHeight>0 then
PaperPanel.Height := round(Printer.PageHeight * Scale)
else
PaperPanel.Height := round(500 * Scale);
if Printer.PageWidth>0 then
PaperPanel.Width := round(Printer.PageWidth * Scale)
else
PaperPanel.Width := round(500 * Scale);
{$ELSE}
PaperPanel.Width := round(Printer.PageWidth * Scale);
PaperPanel.Height := round(Printer.PageHeight * Scale);
{$ENDIF}
PaintBox1.Width := round(OwnerPanel.PrintWidth * Scale);
PaintBox1.Height := round(OwnerPanel.PrintHeight * Scale);
PaintBox1.Left := round(OwnerPanel.PrintTopLeft.x * Scale);
PaintBox1.Top := round(OwnerPanel.PrintTopLeft.y * Scale);
AlignPaintBox;
end;
procedure TIpHTMLPreview.AlignPaintBox;
begin
if PaperPanel.Width < ClientWidth then
PaperPanel.Left := ClientWidth div 2 - (PaperPanel.Width div 2)
else
PaperPanel.Left := 0;
if PaperPanel.Height < ClientHeight then
PaperPanel.Top := ClientHeight div 2 - (PaperPanel.Height div 2)
else
PaperPanel.Top := 0;
end;
procedure TIpHTMLPreview.FormResize(Sender: TObject);
begin
if OwnerPanel<>nil then
SetZoom(Zoom); {force recalc of preview sizes}
end;
end.
|