home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 October / Chip_2001-10_cd1.bin / zkuste / delphi / kompon / d123456 / CHEMPLOT.ZIP / Misc / Misc_Reg.pas < prev    next >
Pascal/Delphi Source File  |  2001-07-13  |  2KB  |  84 lines

  1. unit Misc_Reg;
  2.  
  3. {$I Misc.inc}
  4.  
  5. {-----------------------------------------------------------------------------
  6. 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
  7.  
  8. http://www.mozilla.org/MPL/MPL-1.1.html
  9.  
  10. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for the specific language governing rights and limitations under the License.
  11.  
  12.  
  13. The Original Code is: PlotMisc.pas, released 1 July 2000.
  14.  
  15. The Initial Developer of the Original Code is Mat Ballard.
  16. Portions created by Mat Ballard are Copyright (C) 1999 Mat Ballard.
  17. Portions created by Microsoft are Copyright (C) 1998, 1999 Microsoft Corp.
  18. All Rights Reserved.
  19.  
  20. Contributor(s): Mat Ballard                 e-mail: mat.ballard@chemware.hypermart.net.
  21.  
  22. Last Modified: 02/25/2001
  23. Current Version: 2.00
  24.  
  25. You may retrieve the latest version of this file from:
  26.  
  27.         http://Chemware.hypermart.net/
  28.  
  29. This work was created with the Project JEDI VCL guidelines:
  30.  
  31.         http://www.delphi-jedi.org/Jedi:VCLVCL
  32.  
  33. in mind. 
  34.  
  35.  
  36. Purpose:
  37. Registration unit for the Misc package of components.
  38.  
  39. Known Issues:
  40. -----------------------------------------------------------------------------}
  41.  
  42. interface
  43.  
  44. uses
  45.   Classes,
  46.  
  47. {$IFDEF MSWINDOWS}
  48.   Mlabel, {does not translate: no Paint to override}
  49. {$ENDIF}
  50.   Aboutdlg, Checkgrp, Coloredt, Fileinfo,
  51.   Nedit, Vedit, Optnsdlg, Shapeex, Slidebar, Splshdlg;
  52.  
  53. procedure Register;
  54.  
  55. implementation
  56.  
  57. {$IFDEF DELPHI1}
  58.   {$R Misc16.dcr}
  59. {$ELSE}
  60.   {$R Misc32.dcr}
  61. {$ENDIF}
  62.  
  63. {type}
  64.  
  65. procedure Register;
  66. begin
  67.   RegisterComponents('Samples', [TAboutDlg]);
  68.   RegisterComponents('Samples', [TCheckGroup]);
  69.   RegisterComponents('Samples', [TColorEdit]);
  70.   RegisterComponents('Samples', [TFileVersionInfo]);
  71. {$IFDEF MSWINDOWS}
  72.   RegisterComponents('Samples', [TMultiLabel]);
  73. {$ENDIF}
  74.   RegisterComponents('Samples', [TNEdit]);
  75.   RegisterComponents('Samples', [TVEdit]);
  76.   RegisterComponents('Samples', [TOptionsDlg]);
  77.   RegisterComponents('Samples', [TShapeEx]);
  78.   RegisterComponents('Samples', [TSplashDlg]);
  79.   RegisterComponents('Samples', [TSlideBar]);
  80. end;
  81.  
  82.  
  83. end.
  84.