SplitterView.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. /********************************************************************
  2. created: 2008:12:17   14:27
  3. author: 李欣
  4. filename: c:MyProjectSimpleMailSimpleMailSplitterView.h
  5. classname:  CSplitterView
  6. purpose: splitter between the edit view and the list view
  7. *********************************************************************/
  8. #pragma once
  9. // CSplitterView view
  10. class CSplitterView : public CView
  11. {
  12. DECLARE_DYNCREATE(CSplitterView)
  13. public:
  14. CSplitterView(); 
  15. CSplitterWnd m_wndSplitter;
  16. protected:
  17. virtual ~CSplitterView();
  18. public:
  19. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  20. #ifdef _DEBUG
  21. virtual void AssertValid() const;
  22. #ifndef _WIN32_WCE
  23. virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25. #endif
  26. protected:
  27. DECLARE_MESSAGE_MAP()
  28. public:
  29. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  30. afx_msg void OnSize(UINT nType, int cx, int cy);
  31. CListCtrlView* m_pListCtrlView;
  32. CEditCtrlView* m_pEditCtrlView;
  33. };