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

Windows编程

开发平台:

Visual C++

  1. // dmview.h
  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. //
  13. // Purpose: interface of the CDynaMenuView class
  14. //
  15. // Functions:
  16. //   Most of this file was generated by AppWizard.  The functions
  17. //   which contain code specific to this sample are:
  18. //
  19. //      CDynaMenuView::OnDraw()             -- draw the view contents
  20. //
  21. //   These functions are implemented in dmview.cpp
  22. class CDynaMenuView : public CView
  23. {
  24. protected: // create from serialization only
  25. CDynaMenuView();
  26. DECLARE_DYNCREATE(CDynaMenuView)
  27. // Attributes
  28. public:
  29. CDynaMenuDoc* GetDocument();
  30. // Operations
  31. public:
  32. // Implementation
  33. public:
  34. virtual ~CDynaMenuView();
  35. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Printing support
  42. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  43. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  44. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CDynaMenuView)
  48. // NOTE - the ClassWizard will add and remove member functions here.
  49. //    DO NOT EDIT what you see in these blocks of generated code !
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. #ifndef _DEBUG  // debug version in dmview.cpp
  54. inline CDynaMenuDoc* CDynaMenuView::GetDocument()
  55.    { return (CDynaMenuDoc*)m_pDocument; }
  56. #endif
  57. /////////////////////////////////////////////////////////////////////////////