-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit13.h
34 lines (33 loc) · 1.07 KB
/
Unit13.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
32
33
34
//---------------------------------------------------------------------------
#ifndef Unit13H
#define Unit13H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Imaging.pngimage.hpp>
#include <Vcl.Imaging.jpeg.hpp>
//---------------------------------------------------------------------------
class TForm13 : public TForm
{
__published: // IDE-managed Components
TImage *Image1;
TImage *Image2;
TPanel *Panel1;
TLabel *Label1;
TLabel *Label2;
TPanel *downBorder;
TPanel *leftBorder;
TPanel *rightBorder;
TPanel *topBorder;
void __fastcall FormDeactivate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm13(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm13 *Form13;
//---------------------------------------------------------------------------
#endif