// [!output DIALOG_HEADER] : Çì´õ ÆÄÀÏ // #pragma once [!if AUTOMATION] class [!output DIALOG_AUTO_PROXY_CLASS]; [!endif] // [!output DIALOG_CLASS] ´ëÈ­ »óÀÚ class [!output DIALOG_CLASS] : public [!output DIALOG_BASE_CLASS] { [!if AUTOMATION] DECLARE_DYNAMIC([!output DIALOG_CLASS]); friend class [!output DIALOG_AUTO_PROXY_CLASS]; [!endif] // »ý¼ºÀÔ´Ï´Ù. public: [!output DIALOG_CLASS](CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù. [!if AUTOMATION] virtual ~[!output DIALOG_CLASS](); [!endif] // ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù. [!if HTML_DIALOG] enum { IDD = IDD_[!output UPPER_CASE_SAFE_PROJECT_IDENTIFIER_NAME]_DIALOG, IDH = IDR_HTML_[!output UPPER_CASE_SAFE_PROJECT_IDENTIFIER_NAME]_DIALOG }; [!else] enum { IDD = IDD_[!output UPPER_CASE_SAFE_PROJECT_IDENTIFIER_NAME]_DIALOG }; [!endif] protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù. [!if HTML_DIALOG] HRESULT OnButtonOK(IHTMLElement *pElement); HRESULT OnButtonCancel(IHTMLElement *pElement); [!if CONTEXT_HELP] HRESULT OnButtonHelp(IHTMLElement *pElement); [!endif] [!endif] // ±¸ÇöÀÔ´Ï´Ù. protected: [!if AUTOMATION] [!output DIALOG_AUTO_PROXY_CLASS]* m_pAutoProxy; [!endif] HICON m_hIcon; [!if AUTOMATION] BOOL CanExit(); [!endif] // »ý¼ºµÈ ¸Þ½ÃÁö ¸Ê ÇÔ¼ö virtual BOOL OnInitDialog(); [!if ABOUT_BOX] afx_msg void OnSysCommand(UINT nID, LPARAM lParam); [!endif] [!if CONTEXT_HELP && HELPSTYLE_WINHELP] afx_msg void OnDestroy(); [!endif] afx_msg void OnPaint(); afx_msg HCURSOR OnQueryDragIcon(); [!if AUTOMATION] afx_msg void OnClose(); virtual void OnOK(); virtual void OnCancel(); [!endif] DECLARE_MESSAGE_MAP() [!if HTML_DIALOG] DECLARE_DHTML_EVENT_MAP() [!endif] };