#pragma once
|
|
|
// COpRoiDlg ¶Ô»°¿ò
|
|
class COpRoiDlg : public CDialogEx
|
{
|
DECLARE_DYNAMIC(COpRoiDlg)
|
|
public:
|
COpRoiDlg(CWnd* pParent = NULL); // ±ê×¼¹¹Ô캯Êý
|
virtual ~COpRoiDlg();
|
|
// ¶Ô»°¿òÊý¾Ý
|
#ifdef AFX_DESIGN_TIME
|
enum { IDD = IDD_DIALOG_ROI_SET };
|
#endif
|
|
protected:
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Ö§³Ö
|
|
DECLARE_MESSAGE_MAP()
|
|
private:
|
int m_stepX;
|
int m_stepY;
|
|
BOOL m_isLock;
|
|
private:
|
//ÇøÓò
|
void MoveRegion(int nType);
|
|
//
|
void InitBitICON(void);
|
|
public:
|
afx_msg void OnClose();
|
virtual BOOL PreTranslateMessage(MSG* pMsg);
|
virtual BOOL OnInitDialog();
|
afx_msg void OnBnClickedButtonMoveRightRoi();
|
afx_msg void OnBnClickedButtonMoveUpRoi();
|
afx_msg void OnBnClickedButtonMoveLeftRoi();
|
afx_msg void OnBnClickedButtonMoveDownRoi();
|
};
|