-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplashScreenWelcome.h
31 lines (30 loc) · 1018 Bytes
/
splashScreenWelcome.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//---------------------------------------------------------------------------
#ifndef splashScreenWelcomeH
#define splashScreenWelcomeH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <jpeg.hpp>
//---------------------------------------------------------------------------
class TSplashScreen : public TForm
{
__published: // Composants gérés par l'EDI
TImage *Image1;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TImage *Image2;
TLabel *Label4;
TShape *Shape1;
void __fastcall Label4Click(TObject *Sender);
private: // Déclarations de l'utilisateur
public: // Déclarations de l'utilisateur
__fastcall TSplashScreen(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSplashScreen *SplashScreen;
//---------------------------------------------------------------------------
#endif