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 pathSobre.h
More file actions
87 lines (85 loc) · 2.99 KB
/
Sobre.h
File metadata and controls
87 lines (85 loc) · 2.99 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//---------------------------------------------------------------------------
#ifndef SobreH
#define SobreH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.Objects.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.Types.hpp>
#include <IdBaseComponent.hpp>
#include <IdComponent.hpp>
#include <IdHTTP.hpp>
#include <IdTCPClient.hpp>
#include <IdTCPConnection.hpp>
#include <IdIOHandler.hpp>
#include <IdIOHandlerSocket.hpp>
#include <IdIOHandlerStack.hpp>
#include <IdSSL.hpp>
#include <IdSSLOpenSSL.hpp>
#include <FMX.Layouts.hpp>
#include <FMX.Memo.hpp>
#include <IdCookieManager.hpp>
//---------------------------------------------------------------------------
class TfrmSobre : public TForm
{
__published: // IDE-managed Components
TLabel *lblProg;
TLabel *lblNomeProg;
TLabel *lblVersao;
TLabel *lblVersaoProg;
TLabel *lblDesenvolvedor;
TLabel *lblDesenvolvedorProg;
TRoundRect *btAtualizar;
TRoundRect *btFacebook;
TRectangle *btSite;
TLabel *lblLicenc;
TLabel *lblLicencProg;
TLabel *lblAtualizar;
TLabel *Label2;
TLabel *Label3;
TImage *imgLogo;
TAniIndicator *Indicador;
TIdHTTP *gerWebArq;
TLabel *lblEstado;
TIdSSLIOHandlerSocketOpenSSL *gerSegSSL;
TMemo *mmDados;
TTimer *Controle;
TIdCookieManager *gerWebAt;
TLabel *lblExt;
TLabel *lblExtNome;
void __fastcall btAtualizarClick(TObject *Sender);
void __fastcall btSiteClick(TObject *Sender);
void __fastcall btFacebookClick(TObject *Sender);
void __fastcall btAtualizarMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btSiteMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btFacebookMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btAtualizarMouseLeave(TObject *Sender);
void __fastcall btAtualizarMouseUp(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btSiteMouseLeave(TObject *Sender);
void __fastcall btSiteMouseUp(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall btFacebookMouseLeave(TObject *Sender);
void __fastcall btFacebookMouseUp(TObject *Sender, TMouseButton Button, TShiftState Shift,
float X, float Y);
void __fastcall FormCreate(TObject *Sender);
void __fastcall ControleTimer(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall gerWebArqWork(TObject *ASender, TWorkMode AWorkMode, __int64 AWorkCount);
private: // User declarations
public: // User declarations
int verat;
bool Atualizado ();
void AdquirirNomes();
void Principal ();
__fastcall TfrmSobre(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmSobre *frmSobre;
//---------------------------------------------------------------------------
#endif