1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
//---------------------------------------------------------------------------
#ifndef aboutdlgH
#define aboutdlgH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
//---------------------------------------------------------------------------
class TAboutDialog : public TForm
{
__published:
TLabel *LabelVer;
TLabel *LabelAbout;
TLabel *LabelCopyright;
TImage *Icon4;
TImage *Icon1;
TImage *Icon2;
TImage *Icon3;
TImage *Icon5;
TImage *Icon6;
TImage *Icon7;
TPanel *Panel1;
TButton *BtnOk;
TImage *Icon8;
void __fastcall FormShow(TObject *Sender);
private:
public:
int IconIndex;
AnsiString About;
__fastcall TAboutDialog(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAboutDialog *AboutDialog;
//---------------------------------------------------------------------------
#endif
|