-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDDStatistic.h
46 lines (45 loc) · 1.6 KB
/
DDStatistic.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
//---------------------------------------------------------------------------
#ifndef DDStatisticH
#define DDStatisticH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include "RzEdit.hpp"
#include "RzPanel.hpp"
#include "RzRadGrp.hpp"
#include <ExtCtrls.hpp>
#include "RzButton.hpp"
#include "RzLabel.hpp"
#include <Mask.hpp>
//---------------------------------------------------------------------------
class TFormDDStatics : public TForm
{
__published: // IDE-managed Components
TRzPanel *RzPanelDD;
TRzMemo *RzMemoDD;
TRzRadioGroup *RzRadioGroupDD;
TRzBitBtn *RzBitBtnOK;
TRzBitBtn *RzBitBtnCAncel;
TRzNumericEdit *RzNumericEditStart;
TRzNumericEdit *RzNumericEditEnd;
TRzLabel *RzLabel1;
TRzLabel *RzLabel2;
TRzLabel *RzLabel3;
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall RzBitBtnOKClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
private: // User declarations
public: // User declarations
double maxDoseDoseDifference;
double minDoseDoseDifference;
int totalCount;
int passCount;
double passedPercent;
__fastcall TFormDDStatics(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormDDStatics *FormDDStatics;
//---------------------------------------------------------------------------
#endif