home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / hra.exe / about.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  41 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef aboutH
  7. #define aboutH
  8. //----------------------------------------------------------------------------
  9. #include <System.hpp>
  10. #include <Windows.hpp>
  11. #include <SysUtils.hpp>
  12. #include <Classes.hpp>
  13. #include <Graphics.hpp>
  14. #include <Forms.hpp>
  15. #include <Controls.hpp>
  16. #include <StdCtrls.hpp>
  17. #include <Buttons.hpp>
  18. #include <ExtCtrls.hpp>
  19. //----------------------------------------------------------------------------
  20. class TAboutBox : public TForm
  21. {
  22. __published:
  23.     TPanel *Panel1;
  24.     TImage *ProgramIcon;
  25.     TLabel *ProductName;
  26.     TLabel *Hits;
  27.     TLabel *Copyright;
  28.     TLabel *Comments;
  29.     TButton *OKButton;
  30.     TLabel *Escape;
  31.     TLabel *Miss;
  32.     TLabel *Label1;
  33. private:
  34. public:
  35.     virtual __fastcall TAboutBox(TComponent* AOwner);
  36. };
  37. //----------------------------------------------------------------------------
  38. extern TAboutBox *AboutBox;
  39. //----------------------------------------------------------------------------
  40. #endif    
  41.