#pragma once
|
#include "afxwin.h"
|
class CDlgCommon;
|
|
// CDlgUserPitchInpout ´ëÈ »óÀÚÀÔ´Ï´Ù.
|
|
class CDlgUserPitchInpout : public CDialog
|
{
|
DECLARE_DYNAMIC(CDlgUserPitchInpout)
|
|
public:
|
CDlgUserPitchInpout(CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
|
virtual ~CDlgUserPitchInpout();
|
|
// ´ëÈ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
|
enum { IDD = IDD_DIALOG_USER_PITCH };
|
void SetDlgCommon(CDlgCommon* dlg){m_DlgCommon = dlg;};
|
virtual BOOL OnInitDialog();
|
protected:
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù.
|
|
DECLARE_MESSAGE_MAP()
|
public:
|
CDlgCommon* m_DlgCommon;
|
|
int m_nXcount;
|
int m_nXpitch;
|
int m_nXpos;
|
int m_nYcount;
|
int m_nYpitch;
|
int m_nYpos;
|
afx_msg void OnBnClickedOk();
|
afx_msg void OnBnClickedOk2();
|
CComboBox m_comboCellSide;
|
CComboBox m_comboInspectionMode;
|
};
|