1 |
//---------------------------------------------------------------------------
|
2 |
#ifndef departH
|
3 |
#define departH
|
4 |
//---------------------------------------------------------------------------
|
5 |
#include <vcl\Classes.hpp>
|
6 |
#include <vcl\Controls.hpp>
|
7 |
#include <vcl\StdCtrls.hpp>
|
8 |
#include <vcl\Forms.hpp>
|
9 |
#include <vcl\ExtCtrls.hpp>
|
10 |
#include <Graphics.hpp>
|
11 |
//---------------------------------------------------------------------------
|
12 |
class Tdepscreen : public TForm
|
13 |
{
|
14 |
__published: // IDE-managed Components
|
15 |
TTimer *Timer1;
|
16 |
TPanel *Panel1;
|
17 |
TLabel *label1;
|
18 |
TImage *Image1;
|
19 |
TLabel *Label2;
|
20 |
TLabel *Label3;
|
21 |
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
22 |
void __fastcall FormShow(TObject *Sender);
|
23 |
void __fastcall Timer1Timer(TObject *Sender);
|
24 |
private: // User declarations
|
25 |
public: // User declarations
|
26 |
__fastcall Tdepscreen(TComponent* Owner);
|
27 |
};
|
28 |
//---------------------------------------------------------------------------
|
29 |
extern PACKAGE Tdepscreen *depscreen;
|
30 |
//---------------------------------------------------------------------------
|
31 |
#endif
|