git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
27 lines
839 B
C++
27 lines
839 B
C++
//---------------------------------------------------------------------------
|
|
#ifndef SplashH
|
|
#define SplashH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TfmSplash : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *lblText;
|
|
TBevel *Bevel1;
|
|
TPanel *pnlImageHost;
|
|
TImage *Image1;
|
|
TButton *btnOK;
|
|
void __fastcall FormCreate(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TfmSplash(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
#endif
|