home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch03 / ch3_menu / ch3mview.h < prev    next >
C/C++ Source or Header  |  1995-09-23  |  2KB  |  61 lines

  1. // ch3mView.h : interface of the CChapter03MenuView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CChapter03MenuView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CChapter03MenuView();
  9.     DECLARE_DYNCREATE(CChapter03MenuView)
  10.  
  11. // Attributes
  12. public:
  13.     CChapter03MenuDoc* GetDocument();
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Overrides
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CChapter03MenuView)
  21.     public:
  22.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  23.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24.     protected:
  25.     virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  26.     virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  27.     virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. public:
  32.     virtual ~CChapter03MenuView();
  33. #ifdef _DEBUG
  34.     virtual void AssertValid() const;
  35.     virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37.  
  38. protected:
  39.  
  40. // Generated message map functions
  41. protected:
  42.     //{{AFX_MSG(CChapter03MenuView)
  43.     afx_msg void OnTimeDateTime();
  44.     afx_msg void OnTimeStartTimer();
  45.     afx_msg void OnTimeStopTimer();
  46.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  47.     afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  48.     afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  49.     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  50.     afx_msg void OnTimer(UINT nIDEvent);
  51.     //}}AFX_MSG
  52.     DECLARE_MESSAGE_MAP()
  53. };
  54.  
  55. #ifndef _DEBUG  // debug version in ch3mView.cpp
  56. inline CChapter03MenuDoc* CChapter03MenuView::GetDocument()
  57.    { return (CChapter03MenuDoc*)m_pDocument; }
  58. #endif
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.