-
Notifications
You must be signed in to change notification settings - Fork 1
/
Options.h
50 lines (48 loc) · 1.6 KB
/
Options.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//---------------------------------------------------------------------------
#ifndef OptionsH
#define OptionsH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "ToolEdit.hpp"
#include <Mask.hpp>
#include "Placemnt.hpp"
//---------------------------------------------------------------------------
class TfmOptions : public TForm
{
__published: // IDE-managed Components
TCheckBox *cbCompLogs;
TLabel *Label1;
TEdit *edName;
TPanel *paButtons;
TPanel *Panel2;
TButton *Button1;
TDirectoryEdit *edPicsPath;
TDirectoryEdit *edMaglibPath;
TDirectoryEdit *edDecksPath;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TFormStorage *FormStorage1;
TComboBox *cbSet1;
TLabel *Label5;
TComboBox *cbSet2;
TComboBox *cbSet3;
TCheckBox *cbMaglibFmt;
TButton *btCancel;
TCheckBox *cbDeepAnalysis;
TCheckBox *cbStudyMode;
void __fastcall Button1Click(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TfmOptions(TComponent* Owner);
void SetOptions();
};
//---------------------------------------------------------------------------
extern PACKAGE TfmOptions *fmOptions;
//---------------------------------------------------------------------------
#endif