29 lines
856 B
C++
29 lines
856 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SplashFormUnitH
|
|
#define SplashFormUnitH
|
|
|
|
#include <System.Classes.hpp>
|
|
#include <Vcl.Controls.hpp>
|
|
#include <Vcl.ExtCtrls.hpp>
|
|
#include <Vcl.Graphics.hpp>
|
|
#include <Vcl.StdCtrls.hpp>
|
|
#include <Vcl.Imaging.jpeg.hpp>
|
|
|
|
//---------------------------------------------------------------------------
|
|
class TSplashForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TImage *m_imgBk;
|
|
TLabel *m_lblProgress;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSplashForm(TComponent* Owner);
|
|
|
|
void __fastcall ShowProgress( String strMsg );
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSplashForm *SplashForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|