#pragma once #include "afxwin.h" #include "afxcmn.h" // CDlgRecipeChange ´ëÈ­ »óÀÚÀÔ´Ï´Ù. class CDlgRecipeChange : public CDialog { DECLARE_DYNAMIC(CDlgRecipeChange) public: CDlgRecipeChange(CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù. virtual ~CDlgRecipeChange(); // ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù. enum { IDD = IDD_RECIPE_CHANGE }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù. DECLARE_MESSAGE_MAP() public: afx_msg void OnBnClickedButton1(); afx_msg void OnBnClickedAllCheck(); CButton CB_AllCheck; CButton CB_ReviewCount; CButton CB_WsiCount; CButton CB_MagIndex; CButton CB_LightLevel; CButton CB_AfmOffMode; CButton CB_ALIGN_LIGHT_ON; CButton CB_ALIGN_LIGHT_OFF; CButton CB_PadCount; CButton CB_ALIGN_LIGHT_LEVEL; int m_nRecipeCount; int m_nWsiCount; int m_nMagIndex; int m_nLightLevel; int m_nAfmOffMode; afx_msg void OnEnChangeEditReviewCount(); int m_nReviewCount; CProgressCtrl PG_RecipeChange; afx_msg void OnBnClickedAlginLightOn(); int m_nPadCount; afx_msg void OnBnClickedAlginLightOff(); int m_nFirstAlignLightLevel; int m_nSecondAlignLightLevel; virtual BOOL OnInitDialog(); };