-
Notifications
You must be signed in to change notification settings - Fork 0
/
Paraset.h
66 lines (65 loc) · 2.49 KB
/
Paraset.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
58
59
60
61
62
63
64
65
66
//---------------------------------------------------------------------------
#ifndef ParasetH
#define ParasetH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "RzTabs.hpp"
#include "RzButton.hpp"
#include "RzPanel.hpp"
#include "RzSpnEdt.hpp"
#include <Buttons.hpp>
#include "RzLabel.hpp"
#include <Graphics.hpp>
#include "RzEdit.hpp"
#include <Mask.hpp>
//---------------------------------------------------------------------------
class TFormparaset : public TForm
{
__published: // IDE-managed Components
TRzBitBtn *RzBitBtnOK;
TRzPanel *RzPanelStandard;
TRzBitBtn *RzBitBtnCancel;
TRzBitBtn *RzBitBtnApply;
TRzBitBtn *RzBitBtnReset;
TRzPageControl *TableStandard;
TRzTabSheet *TableDistanceAndDosePercentDifference;
TRzLabel *RzLabelDosePercentDifference;
TRzLabel *RzLabelDistanceStandard;
TImage *ImageGammaShow;
TRzSpinEdit *DosePercentDifference;
TRzSpinEdit *DistanceStandard;
TRzTabSheet *TableDoseUncertainty;
TRzLabel *RzLabelDtaAllowDoseUncertainty;
TImage *ImageDTAAllowDoseDifference;
TRzSpinEdit *DtaAllowDoseUncertainty;
TRzTabSheet *TabSheet1;
TRzTabSheet *TableBest5Standard;
TRzLabel *RzLabelBestFiveDoseThreshold;
TImage *ImageBestFiveDoseThreshold;
TRzLabel *RzLabelDetails;
TRzSpinEdit *BestFiveDoseThreshold;
TRzTabSheet *Threshold;
TRzLabel *RzLabelDoseThreshold;
TImage *ImageDoseThreshold;
TRzLabel *RzLabelDoseThresholdGap;
TRzSpinEdit *DoseThreshold;
TRzTabSheet *TableDoseGap;
TRzSpinEdit *AllowableMaxDoseGap;
TRzLabel *RzLabeAllowDoseGapComment;
TRzLabel *RzLabelDoseGap;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall RzBitBtnCancelClick(TObject *Sender);
void __fastcall RzBitBtnOKClick(TObject *Sender);
void __fastcall RzBitBtnResetClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormparaset(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormparaset *Formparaset;
//---------------------------------------------------------------------------
#endif