DlgAfxMessage.h
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGAFXMESSAGE_H__014B8BF2_0A33_4C5C_858A_426C0F80CE09__INCLUDED_)
  2. #define AFX_DLGAFXMESSAGE_H__014B8BF2_0A33_4C5C_858A_426C0F80CE09__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgAfxMessage.h : header file
  7. //
  8. #include "ButtonEx.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDlgAfxMessage dialog
  11. class CDlgAfxMessage : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CDlgAfxMessage(LPCTSTR lpszText, UINT nType, CWnd* pParent = NULL);   // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CDlgAfxMessage)
  18. enum { IDD = IDD_DIALOG_AFX_MESSAGE };
  19. CButtonEx m_btnNo;
  20. CButtonEx m_btnCancel;
  21. CButtonEx m_btnOK;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CDlgAfxMessage)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CDlgAfxMessage)
  33. virtual BOOL OnInitDialog();
  34. virtual void OnOK();
  35. afx_msg void OnPaint();
  36. virtual void OnCancel();
  37. afx_msg void OnNo();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. private:
  41. void DrawTheIcon(CDC* pDC, RECT* rcItem);
  42. CFont m_font;
  43. long m_cxIcon;
  44. long m_cyIcon;
  45. HICON m_hIcon;
  46. CImageList m_ctlImage;
  47. CString m_strText;
  48. UINT m_nType;
  49. CRect   m_rcText;
  50. CRect   m_rcImage;
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_DLGAFXMESSAGE_H__014B8BF2_0A33_4C5C_858A_426C0F80CE09__INCLUDED_)