-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit2.h
More file actions
43 lines (42 loc) · 1.42 KB
/
Unit2.h
File metadata and controls
43 lines (42 loc) · 1.42 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
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Mask.hpp>
#include <Vcl.Dialogs.hpp>
//---------------------------------------------------------------------------
class TServerAddForm : public TForm
{
__published: // IDE-managed Components
TLabeledEdit *IPEdit;
TLabeledEdit *PortEdit;
TLabeledEdit *FileEdit;
TButton *FileButton;
TLabel *ArgsLabel;
TMemo *ArgsMemo;
TOpenDialog *OpenDialog;
TButton *SaveButton;
TButton *CancelButton;
TLabeledEdit *PassEdit;
TLabel *RconNote;
void __fastcall FileButtonClick(TObject *Sender);
void __fastcall ArgsMemoClick(TObject *Sender);
void __fastcall SaveButtonClick(TObject *Sender);
void __fastcall CancelButtonClick(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall FormShow(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TServerAddForm(TComponent* Owner);
bool EditServer;
int EditServerID;
};
//---------------------------------------------------------------------------
extern PACKAGE TServerAddForm *ServerAddForm;
//---------------------------------------------------------------------------
#endif