-
Notifications
You must be signed in to change notification settings - Fork 1
/
Unit1.h
40 lines (39 loc) · 1.28 KB
/
Unit1.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
35
36
37
38
39
40
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.ExtCtrls.hpp>
#include <FMX.Layouts.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Types.hpp>
#include <FMX.Objects.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-managed Components
TSpeedButton *SpeedButton1;
TSpeedButton *SpeedButton2;
TSpeedButton *SpeedButton3;
TImageViewer *ImageViewer4;
TLayout *Layout1;
TLayout *Layout2;
TImage *Image1;
TImage *Image2;
TImage *Image3;
TImage *Image4;
void __fastcall FormCreate(TObject *Sender);
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall Image2Click(TObject *Sender);
void __fastcall Image4Click(TObject *Sender);
void __fastcall Image3Click(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif