smtpView.h
上传用户:young001
上传日期:2007-07-04
资源大小:33k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

Visual C++

  1. // smtpView.h : interface of the CSmtpView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SMTPVIEW_H__A0D4A066_65DE_11D2_9816_9523BDBAF506__INCLUDED_)
  5. #define AFX_SMTPVIEW_H__A0D4A066_65DE_11D2_9816_9523BDBAF506__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CSmtpView : public CEditView
  10. {
  11. protected: // create from serialization only
  12. CSmtpView();
  13. DECLARE_DYNCREATE(CSmtpView)
  14. // Attributes
  15. public:
  16. CSmtpDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CSmtpView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. virtual void OnInitialUpdate();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CSmtpView();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. CFont m_Font;
  38. //{{AFX_MSG(CSmtpView)
  39. afx_msg void OnEditAll();
  40. afx_msg void OnPreferencesFont();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. #ifndef _DEBUG  // debug version in smtpView.cpp
  45. inline CSmtpDoc* CSmtpView::GetDocument()
  46.    { return (CSmtpDoc*)m_pDocument; }
  47. #endif
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_SMTPVIEW_H__A0D4A066_65DE_11D2_9816_9523BDBAF506__INCLUDED_)