CATDBVW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // Cat3View.h : interface of the CCatDBView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14. class CCatDBView : public CListView
  15. {
  16. protected: // create from serialization only
  17. CCatDBView();
  18. DECLARE_DYNCREATE(CCatDBView)
  19. // Attributes
  20. public:
  21. CCatDBDoc* GetDocument();
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CCatDBView)
  27. public:
  28. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. virtual BOOL OnChildNotify(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pLResult);
  31. protected:
  32. virtual void OnInitialUpdate(); // called first time after construct
  33. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. public:
  37. virtual ~CCatDBView();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CCatDBView)
  46. afx_msg void OnUpdateViewColumnlevel(CCmdUI* pCmdUI);
  47. afx_msg void OnUpdateViewTablelevel(CCmdUI* pCmdUI);
  48. afx_msg void OnViewColumnlevel();
  49. afx_msg void OnViewTablelevel();
  50. afx_msg void OnFileOpen();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #ifndef _DEBUG  // debug version in Cat3View.cpp
  55. inline CCatDBDoc* CCatDBView::GetDocument()
  56.    { return (CCatDBDoc*)m_pDocument; }
  57. #endif
  58. /////////////////////////////////////////////////////////////////////////////