-
Notifications
You must be signed in to change notification settings - Fork 0
/
NormPointSet.h
57 lines (56 loc) · 2.25 KB
/
NormPointSet.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
51
52
53
54
55
56
57
//---------------------------------------------------------------------------
#ifndef NormPointSetH
#define NormPointSetH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "RzPanel.hpp"
#include <ExtCtrls.hpp>
#include "RzEdit.hpp"
#include "RzLabel.hpp"
#include "RzSpnEdt.hpp"
#include <Mask.hpp>
#include "RzButton.hpp"
#include "RzRadChk.hpp"
//---------------------------------------------------------------------------
class TFormNormPointSet : public TForm
{
__published: // IDE-managed Components
TRzPanel *RzPanelNormPoint;
TRzLabel *RzLabelCaption;
TRzBitBtn *RzBitBtnOK;
TRzBitBtn *RzBitBtnCancel;
TRzGroupBox *RzGroupBoxGridLine;
TRzLabel *RzLabelGridLineY;
TRzLabel *RzLabelGridLineX;
TRzCheckBox *RzCheckBoxGridLineCenter;
TRzSpinEdit *RzSpinEditGridLineY;
TRzSpinEdit *RzSpinEditGridLineX;
TRzGroupBox *RzGroupBoxPos;
TRzLabel *RzLabelPosY;
TRzLabel *RzLabelPosX;
TRzSpinEdit *RzSpinEditPosX;
TRzSpinEdit *RzSpinEditPosY;
TRzCheckBox *RzCheckBoxPosCenter;
TRzRadioButton *UseGridLineNum;
TRzRadioButton *UsePhysicalPos;
TRzGroupBox *RzGroupBoxOtherSetting;
TRzCheckBox *RzCheckBoxOmniProModel;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall RzBitBtnCancelClick(TObject *Sender);
void __fastcall RzBitBtnOKClick(TObject *Sender);
void __fastcall RzCheckBoxGridLineCenterClick(TObject *Sender);
void __fastcall UseGridLineNumClick(TObject *Sender);
void __fastcall UsePhysicalPosClick(TObject *Sender);
void __fastcall RzCheckBoxPosCenterClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormNormPointSet(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormNormPointSet *FormNormPointSet;
//---------------------------------------------------------------------------
#endif