home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c05 / dynamenu / dynaview.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.6 KB  |  64 lines

  1. // DynaView.h : interface of the CMenusDynamicView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMenusDynamicView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CMenusDynamicView();
  9.     DECLARE_DYNCREATE(CMenusDynamicView)
  10.  
  11. // Attributes
  12. public:
  13.     virtual BOOL PreTranslateMessage(MSG* pMsg);
  14.     CMenusDynamicDoc* GetDocument();
  15.     CRect GetPhraseBounds();
  16.     COLORREF IDtoColorRef(int nID);
  17.  
  18. protected:
  19.     CMenu *m_pExtraColors;
  20.  
  21. // Operations
  22. public:
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CMenusDynamicView)
  27.     public:
  28.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  29.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30.     protected:
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CMenusDynamicView();
  36. #ifdef _DEBUG
  37.     virtual void AssertValid() const;
  38.     virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40.  
  41. protected:
  42.  
  43. // Generated message map functions
  44. protected:
  45.     //{{AFX_MSG(CMenusDynamicView)
  46.     afx_msg void OnOptionsExtracolors();
  47.     afx_msg void OnOptionsStandardcolors();
  48.     afx_msg void OnOptionsExtracolorsCascade();
  49.     afx_msg void OnDestroy();
  50.     //}}AFX_MSG
  51.     afx_msg void OnContextMenu(CWnd*, CPoint point);
  52.     afx_msg void OnColors(UINT nID);
  53.     afx_msg void OnUpdateColors(CCmdUI* pCmdUI);
  54.     afx_msg void OnUpdateOptions(CCmdUI* pCmdUI);
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58. #ifndef _DEBUG  // debug version in MenusDynamicView.cpp
  59. inline CMenusDynamicDoc* CMenusDynamicView::GetDocument()
  60.    { return (CMenusDynamicDoc*)m_pDocument; }
  61. #endif
  62.  
  63. /////////////////////////////////////////////////////////////////////////////
  64.