#pragma once
|
|
#include "EdgeInspector_App.h"
|
#include "General_Draw.h"
|
|
|
class CViewRecipeNew : public CDialog
|
{
|
DECLARE_DYNAMIC(CViewRecipeNew)
|
|
public:
|
CViewRecipeNew(CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
|
virtual ~CViewRecipeNew();
|
|
// ´ëÈ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
|
enum { IDD = IDD_DLG_RECIPE_NEW };
|
|
protected:
|
virtual BOOL OnInitDialog();
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù.
|
afx_msg void OnPaint();
|
afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
|
DECLARE_MESSAGE_MAP()
|
DECLARE_EVENTSINK_MAP()
|
void ClickBtnRecipenewOk();
|
void ClickBtnRecipenewCancel();
|
|
public:
|
CString GetNewRecipeName(){return m_strNewRecipeName;}
|
CString GetNewRecipeComment(){return m_strNewRecipeComment;}
|
|
protected:
|
CString m_strNewRecipeName;
|
CString m_strNewRecipeComment;
|
CFontControl m_FontControl;
|
|
};
|