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

Windows编程

开发平台:

Visual C++

  1. // dockvw.h : interface of the CDockView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. class CDockView : public CView
  13. {
  14. protected: // create from serialization only
  15. CDockView();
  16. DECLARE_DYNCREATE(CDockView)
  17. // Attributes
  18. public:
  19. CDockDoc* GetDocument();
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CDockView)
  25. public:
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. protected:
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. public:
  31. virtual ~CDockView();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CDockView)
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code !
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. #ifndef _DEBUG  // debug version in dockvw.cpp
  46. inline CDockDoc* CDockView::GetDocument()
  47.    { return (CDockDoc*)m_pDocument; }
  48. #endif
  49. /////////////////////////////////////////////////////////////////////////////