Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2265 kivins 1
//---------------------------------------------------------------------------
2
 
3
#ifndef AboutH
4
#define AboutH
5
//---------------------------------------------------------------------------
6
#include <Classes.hpp>
7
#include <Controls.hpp>
8
#include <StdCtrls.hpp>
9
#include <Forms.hpp>
10
#include <ExtCtrls.hpp>
11
#include <Graphics.hpp>
12
//---------------------------------------------------------------------------
13
class TAboutForm : public TForm
14
{
15
__published:	// IDE-managed Components
16
    TImage *Image1;
17
    TMemo *CopyrightNotice;
18
    TLabel *VersionLabel;
19
    TLabel *Label1;
20
    void __fastcall FormShow(TObject *Sender);
21
private:	// User declarations
22
public:		// User declarations
23
    __fastcall TAboutForm(TComponent* Owner);
24
};
25
//---------------------------------------------------------------------------
26
extern PACKAGE TAboutForm *AboutForm;
27
//---------------------------------------------------------------------------
28
#endif