source: PrintPreview/PrintPreview.pas

Last change on this file was 455, checked in by chronos, 11 years ago
  • Modified: PrintPreview should use TVectorCanvas instead of raster TCanvas dependent on DPI of printer. But some font function as TextWidth and TextHeight cannot be easily implemented without use of OS API.
File size: 412 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit PrintPreview;
6
7interface
8
9uses
10 UPrintPreview, UVectorCanvas, LazarusPackageIntf;
11
12implementation
13
14procedure Register;
15begin
16 RegisterUnit('UPrintPreview', @UPrintPreview.Register);
17end;
18
19initialization
20 RegisterPackage('PrintPreview', @Register);
21end.
Note: See TracBrowser for help on using the repository browser.