/**********************************************************************/
/*                                                                    */
/* File name: DLLAbout.h                                              */
/*                                                                    */
/* Since:     2002/12/03                                              */
/*                                                                    */
/* Version:   1.0                                                     */
/*                                                                    */
/* Author:    MONTAGNE Xavier [XM] {link xavier.montagne@wanadoo.fr}  */
/*                                                                    */
/* Purpose: Display a ABOUT Window showing the name of the DLL and    */
/*          the version number. Also display the main features of the */
/*          selected chip.                                            */
/*                                                                    */
/* Distribution: This file is part of PP18.                           */
/*               PP18 is free software; you can redistribute it       */
/*               and/or modify it under the terms of the GNU General  */
/*               Public License as published by the Free Software     */
/*               Foundation; either version 2, or (at your option)    */
/*               any later version.                                   */
/*                                                                    */
/*               PP18 is distributed in the hope that it will be      */
/*               useful, but WITHOUT ANY WARRANTY; without even the   */
/*               implied warranty of MERCHANTABILITY or FITNESS FOR A */
/*               PARTICULAR PURPOSE.  See the GNU General Public      */
/*               License for more details.                            */
/*                                                                    */
/*               You should have received a copy of the GNU General   */
/*               Public License along with PP18; see the file         */
/*               COPYING.txt. If not, write to the Free Software      */
/*               Foundation, 59 Temple Place - Suite 330,             */
/*               Boston, MA 02111-1307, USA.                          */
/*                                                                    */
/* History:                                                           */
/*      2002/12/03  [XM] Create this file                             */
/*                                                                    */
/**********************************************************************/

#ifndef __DDLABOUT_H__
#define __DDLABOUT_H__

/***********************************************************************
 * INCLUDES
 **********************************************************************/
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>

/***********************************************************************
 * TAboutWindow object definition.
 **********************************************************************/
class TAboutWindow : public TForm
{
__published:
    TButton *Button1;
    TPanel *Panel1;
    TImage *Image1;
    TBitBtn *ButtonOK;
    TStaticText *StaticText2;
    TPanel *Panel2;
    TImage *Image2;
    TStaticText *StaticText1;
    TStaticText *StaticText3;
    TStaticText *StaticText4;
    TStaticText *StaticText5;
    TStaticText *StaticText6;
    TStaticText *StaticText7;
    TStaticText *StaticText8;
    TStaticText *StaticText9;
    void __fastcall ButtonOKClick(TObject *Sender);
private:
public:
    __fastcall TAboutWindow(TComponent* Owner);
};

extern PACKAGE TAboutWindow *AboutWindow;

#endif /* __DLLABOUT_H__ */
