-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnit2.h
31 lines (30 loc) · 1.07 KB
/
Unit2.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
//---------------------------------------------------------------------------
#ifndef Unit2H
#define Unit2H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TSettingsForm : public TForm
{
__published: // IDE-managed Components
TComboBox *CBox;
TButton *SaveButton;
TLabel *CountryNote;
TLabel *CountryLabel;
TCheckBox *AutorunBox;
TCheckBox *MinimizeBox;
void __fastcall SaveButtonClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
String SelectDomain(int index);
__fastcall TSettingsForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TSettingsForm *SettingsForm;
//---------------------------------------------------------------------------
#endif