-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsethost.h
34 lines (33 loc) · 1.12 KB
/
sethost.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
33
34
//---------------------------------------------------------------------------
#ifndef sethostH
#define sethostH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Buttons.hpp>
#include <Vcl.Dialogs.hpp>
//---------------------------------------------------------------------------
class TSetHostAppForm : public TForm
{
__published: // IDE-managed Components
TBitBtn *Cancel;
TBitBtn *Apply;
TComboBox *HostAppList;
TButton *SetHostApp;
TOpenDialog *OpenHostApp;
TLabel *Label1;
TLabel *Label2;
void __fastcall ApplyClick(TObject *Sender);
void __fastcall CancelClick(TObject *Sender);
void __fastcall SetHostAppClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TSetHostAppForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSetHostAppForm *SetHostAppForm;
//---------------------------------------------------------------------------
#endif