-
Notifications
You must be signed in to change notification settings - Fork 1
/
OCTDlg.h
executable file
·62 lines (56 loc) · 1.67 KB
/
OCTDlg.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
#pragma once
#include "resource.h"
#include "IntensityDlg.h"
#include "PhaseDlg.h"
#include "CurveDlg.h"
#include "afxwin.h"
//#include "mgmotorctrl1.h"
class COCTDlg : public CDialog
{
//DECLARE_DYNCREATE(COCTDlg)
protected:
CToolBar m_wndToolBar;
int m_iWidth,m_iHeight;
virtual BOOL OnInitDialog();
virtual void DoDataExchange(CDataExchange* pDX);
public:
static BOOL bCurveDlgEn;
static BOOL bPhaseDlgEn;
static BOOL bIntensityDlgEn;
int m_ALineNum, m_IterationNum;
int m_SliderCamGain, m_SliderIntTime;
CIntensityDlg * m_pIntensityDlg;
CPhaseDlg * m_pPhaseDlg;
CCurveDlg * m_pCurveDlg;
//CMgmotorctrl1 m_TStage;
COCTDlg(CWnd* pParent = NULL);
virtual ~COCTDlg();
virtual void OnOK();
virtual void OnCancel();
void ReconfigureScan();
void ValidateConf();
enum { IDD = IDD_SDOCT_DIALOG };
//{{AFX_MSG
afx_msg void IntensityEn();
afx_msg void CurveEn();
afx_msg void PhaseEn();
afx_msg void ResetWndPos();
afx_msg void OnSaveConf();
afx_msg void OnLoadConf();
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
afx_msg void OnBnClickedStartImaqFrames();
afx_msg void OnBnClickedGetrefImaq();
afx_msg void OnBnClickedCalibrationImaq();
afx_msg void OnBnClickedPauseImaq();
afx_msg void OnBnClickedStartImaq();
//afx_msg void OnBnClickedEnableStage();
afx_msg void OnBnClickedScanBackward();
afx_msg void OnBnClickedResetImaq();
afx_msg void OnBnClickedFilepathButton();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
afx_msg void OnBnClickedReconstructImage();
afx_msg void OnBnClickedImaqFramesStop();
afx_msg void OnBnClickedScanStepx();
afx_msg void OnBnClickedScanStepy();
};