#pragma once #include "afxcmn.h" #include "afxwin.h" /*! \class CCharRestoreDlg ij¸¯ÅÍ º¹±¸ ´ÙÀ̾ó·Î±× */ class CCharRestoreDlg : public CDialog { DECLARE_DYNAMIC(CCharRestoreDlg) public: CCharRestoreDlg(CWnd* pParent = NULL); // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù. virtual ~CCharRestoreDlg(); // ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù. enum { IDD = IDD_CHARRESTOREDLG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV Áö¿øÀÔ´Ï´Ù. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); DECLARE_MESSAGE_MAP() virtual BOOL PreTranslateMessage(MSG* pMsg); virtual BOOL OnInitDialog(); virtual void OnCancel(); virtual void OnOK(); private: CComboBox m_ctrlSearchConditionCb; CComboBox m_ctrlSearchServerCb; CListCtrl m_ctrlDelHistoryList; void OnSearchSend(); afx_msg void OnContextMenu(CWnd* pWnd, CPoint point); afx_msg void OnBnClickedCharRestoreSearch(); afx_msg void OnRestoreTime(); afx_msg void OnRestoreChar(); };