home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / Tools.exe / about.h < prev    next >
C/C++ Source or Header  |  1998-02-09  |  1KB  |  43 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 *Version;
  27.     TLabel *Copyright;
  28.     TLabel *Comments;
  29.     TButton *OKButton;
  30.     TLabel *Label1;
  31.     void __fastcall OKButtonClick(TObject *Sender);
  32.     void __fastcall ProgramIconDblClick(TObject *Sender);
  33.     void __fastcall Label1DblClick(TObject *Sender);
  34. private:
  35.     bool option;
  36. public:
  37.     virtual __fastcall TAboutBox(TComponent* AOwner);
  38. };
  39. //----------------------------------------------------------------------------
  40. extern TAboutBox *AboutBox;
  41. //----------------------------------------------------------------------------
  42. #endif    
  43.