home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / BCBViewer / About.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-27  |  1.9 KB  |  59 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //
  5. // Copyright (c) 1998 Colosseum Builders, Inc.
  6. // All rights reserved.
  7. //
  8. // Colosseum Builders, Inc. makes no warranty, expressed or implied
  9. // with regards to this software. It is provided as is.
  10. //
  11. // Permission to use, redistribute, and copy this file is granted
  12. // without a fee so long as as the following conditions are adhered to:
  13. //
  14. // o The user assumes all risk for using this software. The authors of this
  15. //   software shall be liable for no damages of any kind.
  16. //
  17. // o If the source code is distributed then this copyright notice must
  18. //   remain unaltered and any modification must be noted.
  19. //
  20. // o If this code is shipped in binary format the accompanying documentation
  21. //   should state that "this software is based, in part, on the work of
  22. //   Colosseum Builders, Inc."
  23. //
  24.  
  25. //
  26. //  Title:  Sample Image Viewer/Format Conversion Application
  27. //
  28. //  Author:  John M. Miano miano@colosseumbuilders.com
  29. //
  30. //----------------------------------------------------------------------------
  31. #include <ExtCtrls.hpp>
  32. #include <Buttons.hpp>
  33. #include <StdCtrls.hpp>
  34. #include <Controls.hpp>
  35. #include <Forms.hpp>
  36. #include <Graphics.hpp>
  37. #include <Classes.hpp>
  38. #include <Windows.hpp>
  39. #include <System.hpp>
  40. //----------------------------------------------------------------------------
  41. class TAboutBox : public TForm
  42. {
  43. __published:
  44.     TPanel *Panel1;
  45.     TButton *OKButton;
  46.     TImage *ProgramIcon;
  47.     TLabel *ProductName;
  48.     TLabel *Version;
  49.     TLabel *Copyright;
  50.     TLabel *Comments;
  51. private:
  52. public:
  53.     virtual __fastcall TAboutBox(TComponent *Owner);
  54. };
  55. //----------------------------------------------------------------------------
  56. extern TAboutBox *AboutBox;
  57. //----------------------------------------------------------------------------
  58. #endif    
  59.