1 |
|
3 |
//---------------------------------------------------------------------------
|
2 |
|
|
#ifndef aproposdeH
|
3 |
|
|
#define aproposdeH
|
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 Tsignature : public TForm
|
13 |
|
|
{
|
14 |
|
|
__published: // IDE-managed Components
|
15 |
|
|
TLabel *Label1;
|
16 |
|
|
TButton *Button1;
|
17 |
|
|
TLabel *Label2;
|
18 |
|
|
TLabel *Label3;
|
19 |
|
|
TImage *Image1;
|
20 |
|
|
TLabel *Label6;
|
21 |
|
|
TLabel *Label7;
|
22 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
23 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
24 |
|
|
void __fastcall FormCreate(TObject *Sender);
|
25 |
|
|
private: // User declarations
|
26 |
|
|
public: // User declarations
|
27 |
|
|
__fastcall Tsignature(TComponent* Owner);
|
28 |
|
|
};
|
29 |
|
|
//---------------------------------------------------------------------------
|
30 |
|
|
extern Tsignature *signature;
|
31 |
|
|
//---------------------------------------------------------------------------
|
32 |
|
|
#endif
|