Files
AC_Pro/SplashFormUnit.h
2026-06-13 00:05:19 +08:00

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