-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup_proxy.h
32 lines (31 loc) · 1.08 KB
/
popup_proxy.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
//---------------------------------------------------------------------------
#ifndef popup_proxyH
#define popup_proxyH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
//---------------------------------------------------------------------------
class TFormProxy : public TForm
{
__published: // Composants gérés par l'EDI
TLabel *LabelProxy;
TLabel *LabelProxyPort;
TLabel *LabelProxyUser;
TLabel *LabelProxyMdp;
TEdit *EditProxyPort;
TEdit *EditProxyUser;
TButton *ButtonProxyOK;
TEdit *EditProxyMdP;
void __fastcall ButtonProxyOKClick(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // Déclarations de l'utilisateur
HWND hWndIPAddress;
public: // Déclarations de l'utilisateur
__fastcall TFormProxy(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormProxy *FormProxy;
//---------------------------------------------------------------------------
#endif