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