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 pathCarregar.h
More file actions
41 lines (40 loc) · 1.33 KB
/
Carregar.h
File metadata and controls
41 lines (40 loc) · 1.33 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
41
//---------------------------------------------------------------------------
#ifndef CarregarH
#define CarregarH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.Objects.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Types.hpp>
//---------------------------------------------------------------------------
class TfrmCarregar : public TForm
{
__published: // IDE-managed Components
TImage *btFechar;
TLabel *lblEstado;
TAniIndicator *AniIndicator1;
TTimer *tmConfigurar;
TStyleBook *Estilos;
TImage *ImgCapa;
TRectangle *corFundoCarr;
void __fastcall tmConfigurarTimer(TObject *Sender);
void __fastcall btFecharClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TfrmCarregar(TComponent* Owner);
void AplicarConfig();
void ReconfiguraCont(int Tempo);
void AplicaEstilos(int Passo);
String NSNPCONF;
String NSNPLOC;
String NSNPLOCATL;
bool usarad, sans;
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmCarregar *frmCarregar;
//---------------------------------------------------------------------------
#endif