1 |
//---------------------------------------------------------------------------
|
2 |
#ifndef IgsoptH
|
3 |
#define IgsoptH
|
4 |
//---------------------------------------------------------------------------
|
5 |
#include <vcl\Classes.hpp>
|
6 |
#include <vcl\Controls.hpp>
|
7 |
#include <vcl\StdCtrls.hpp>
|
8 |
#include <vcl\Forms.hpp>
|
9 |
//---------------------------------------------------------------------------
|
10 |
class TIgsoption : public TForm
|
11 |
{
|
12 |
__published: // IDE-managed Components
|
13 |
TButton *Button1;
|
14 |
TGroupBox *GroupBox1;
|
15 |
TCheckBox *CheckBox1;
|
16 |
TEdit *Edit1;
|
17 |
TEdit *Edit2;
|
18 |
TButton *Button2;
|
19 |
TLabel *Label1;
|
20 |
TLabel *Label2;
|
21 |
TEdit *Edit3;
|
22 |
TLabel *Label3;
|
23 |
TRadioButton *RadioButton1;
|
24 |
TRadioButton *RadioButton2;
|
25 |
void __fastcall Button1Click(TObject *Sender);
|
26 |
void __fastcall Button2Click(TObject *Sender);
|
27 |
void __fastcall FormShow(TObject *Sender);
|
28 |
void __fastcall RadioButton2Click(TObject *Sender);
|
29 |
void __fastcall RadioButton1Click(TObject *Sender);
|
30 |
private: // User declarations
|
31 |
public: // User declarations
|
32 |
__fastcall TIgsoption(TComponent* Owner);
|
33 |
int ok;
|
34 |
};
|
35 |
//---------------------------------------------------------------------------
|
36 |
extern TIgsoption *Igsoption;
|
37 |
//---------------------------------------------------------------------------
|
38 |
#endif
|