aboutsummaryrefslogtreecommitdiffstats
path: root/apps/windoze/CBuilder5/InstallMgr/RemoteMntFrm.h
blob: fecd1eef105fcedb4434832379a1a0db7edecc01 (plain) (blame)
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
//---------------------------------------------------------------------------
#ifndef RemoteMntFrmH
#define RemoteMntFrmH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
#include <swconfig.h>
//---------------------------------------------------------------------------

using namespace sword;

class TRemoteMntForm : public TForm {
__published:	// IDE-managed Components
	TPanel *Panel1;
	TPanel *Panel2;
	TPanel *Panel3;
	TListBox *ListBox1;
	TSpeedButton *SpeedButton1;
	TSpeedButton *SpeedButton2;
	TEdit *NameEdit;
	TEdit *MachineEdit;
	TEdit *DirEdit;
	TPanel *Panel4;
	TSpeedButton *SpeedButton3;
	TSpeedButton *SpeedButton4;
	TLabel *Label1;
	TLabel *Label2;
	TLabel *Label3;
	TCheckBox *CheckBox1;
	void __fastcall FormShow(TObject *Sender);
	void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
	void __fastcall NameEditChange(TObject *Sender);
	void __fastcall SpeedButton4Click(TObject *Sender);
	void __fastcall ListBox1Click(TObject *Sender);
	void __fastcall MachineEditChange(TObject *Sender);
	void __fastcall DirEditChange(TObject *Sender);
	void __fastcall SpeedButton2Click(TObject *Sender);
	void __fastcall SpeedButton1Click(TObject *Sender);
	void __fastcall SpeedButton3Click(TObject *Sender);
private:	// User declarations
	SWConfig *config;
	void checkDisabled();
	
public:		// User declarations
	__fastcall TRemoteMntForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TRemoteMntForm *RemoteMntForm;
//---------------------------------------------------------------------------
#endif