home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //----------------------------------------------------------------------------
- #ifndef aboutH
- #define aboutH
- //----------------------------------------------------------------------------
- #include <System.hpp>
- #include <Windows.hpp>
- #include <SysUtils.hpp>
- #include <Classes.hpp>
- #include <Graphics.hpp>
- #include <Forms.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Buttons.hpp>
- #include <ExtCtrls.hpp>
- //----------------------------------------------------------------------------
- class TAboutBox : public TForm
- {
- __published:
- TPanel *Panel1;
- TImage *ProgramIcon;
- TLabel *ProductName;
- TLabel *Version;
- TLabel *Copyright;
- TLabel *Comments;
- TButton *OKButton;
- TLabel *Label1;
- void __fastcall OKButtonClick(TObject *Sender);
- void __fastcall ProgramIconDblClick(TObject *Sender);
- void __fastcall Label1DblClick(TObject *Sender);
- private:
- bool option;
- public:
- virtual __fastcall TAboutBox(TComponent* AOwner);
- };
- //----------------------------------------------------------------------------
- extern TAboutBox *AboutBox;
- //----------------------------------------------------------------------------
- #endif
-