This repository was archived by the owner on Sep 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImgConf.h
More file actions
40 lines (39 loc) · 1.49 KB
/
ImgConf.h
File metadata and controls
40 lines (39 loc) · 1.49 KB
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 ImgConfH
#define ImgConfH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.Edit.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Types.hpp>
#include <FMX.Objects.hpp>
#include <FMX.Controls.Presentation.hpp>
//---------------------------------------------------------------------------
class TfrmImgConf : public TForm
{
__published: // IDE-managed Components
TLabel *lblImgLeg;
TEdit *edtImgLeg;
TRoundRect *btSalvar;
TLabel *lblBtSalvar;
void __fastcall btSalvarClick(TObject *Sender);
void __fastcall edtImgLegKeyDown(TObject *Sender, WORD &Key, System::WideChar &KeyChar,
TShiftState Shift);
void __fastcall FormShow(TObject *Sender);
void __fastcall btSalvarMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btSalvarMouseLeave(TObject *Sender);
void __fastcall btSalvarMouseUp(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
private: // User declarations
public: // User declarations
__fastcall TfrmImgConf(TComponent* Owner);
void CarregarDadosVar (int);
void SalvarDepend ();
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmImgConf *frmImgConf;
//---------------------------------------------------------------------------
#endif