mymenuView.h
上传用户:aphuaqiang
上传日期:2007-01-02
资源大小:62k
文件大小:2k
源码类别:

菜单

开发平台:

Visual C++

  1. // mymenuView.h : interface of the CMymenuView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYMENUVIEW_H__3BAD410E_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_)
  5. #define AFX_MYMENUVIEW_H__3BAD410E_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CMymenuView : public CView
  10. {
  11. protected: // create from serialization only
  12. CMymenuView();
  13. DECLARE_DYNCREATE(CMymenuView)
  14. // Attributes
  15. public:
  16. CMymenuDoc* GetDocument();
  17.   BCMenu popmenu;
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMymenuView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CMymenuView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CMymenuView)
  42. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  43. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  44. afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  45. afx_msg void OnHomepage();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in mymenuView.cpp
  50. inline CMymenuDoc* CMymenuView::GetDocument()
  51.    { return (CMymenuDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_MYMENUVIEW_H__3BAD410E_4BBC_11D1_AB73_89774BBAD26D__INCLUDED_)