LeftView.h
上传用户:zcy791212
上传日期:2013-03-06
资源大小:196k
文件大小:2k
源码类别:

Modem编程

开发平台:

Visual C++

  1. // LeftView.h : interface of the CLeftView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_LEFTVIEW_H__B30FA550_D307_4ADD_9278_7C5D5B6EA45B__INCLUDED_)
  5. #define AFX_LEFTVIEW_H__B30FA550_D307_4ADD_9278_7C5D5B6EA45B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CVc_demoDoc;
  10. class CLeftView : public CTreeView
  11. {
  12. protected: // create from serialization only
  13. CLeftView();
  14. DECLARE_DYNCREATE(CLeftView)
  15. void setTreeStyle();
  16. // Attributes
  17. public:
  18. CVc_demoDoc* GetDocument();
  19. void ClearAllItem();
  20. void InsertUserItem(char *);
  21. void DeleteUserItem(char *);
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CLeftView)
  27. public:
  28. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. protected:
  31. virtual void OnInitialUpdate(); // called first time after construct
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CLeftView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CLeftView)
  44. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  45. afx_msg void OnDblclk(NMHDR* pNMHDR, LRESULT* pResult);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in LeftView.cpp
  50. inline CVc_demoDoc* CLeftView::GetDocument()
  51.    { return (CVc_demoDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_LEFTVIEW_H__B30FA550_D307_4ADD_9278_7C5D5B6EA45B__INCLUDED_)