home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d3456 / POWERPDF.ZIP / PowerPdf / PowerPdf.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-09-15  |  1.5 KB  |  52 lines

  1. {*
  2.  * << P o w e r P d f >> -- PowerPdf.pas
  3.  *
  4.  * Copyright (c) 1999-2001 Takezou. <takeshi_kanno@est.hi-ho.ne.jp>
  5.  *
  6.  * This library is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU Library General Public License as published
  8.  * by the Free Software Foundation; either version 2 of the License, or any
  9.  * later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful, but WITHOUT
  12.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13.  * FOR A PARTICULAR PURPOSE. See the GNU Library general Public License for more
  14.  * details.
  15.  *
  16.  * You should have received a copy of the GNU Library General Public License
  17.  * along with this library.
  18.  *
  19.  * 2000.07.07 Create.
  20.  *
  21.  *}
  22. unit PowerPdf;
  23.  
  24. interface
  25.  
  26. uses
  27.   Classes, PReport, PRJpegImage, PRAnnotation;
  28.  
  29. procedure Register;
  30.  
  31. implementation
  32.  
  33. { Registoer }
  34.  
  35. procedure Register;
  36. begin
  37.   RegisterComponents('PowerPdf', [TPReport,
  38.                                   TPRPage,
  39.                                   TPRLayoutPanel,
  40.                                   TPRGridPanel,
  41.                                   TPRLabel,
  42.                                   TPRText,
  43.                                   TPRRect,
  44.                                   TPREllipse,
  45.                                   TPRImage,
  46.                                   TPRJpegImage,
  47.                                   TPRAnnotation
  48.                                  ]);
  49. end;
  50.  
  51. end.
  52.