home *** CD-ROM | disk | FTP | other *** search
- // autocvw.h : interface of the CClikView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CClikView : public CView
- {
- protected: // create from serialization only
- CClikView();
- DECLARE_DYNCREATE(CClikView)
-
- // Attributes
- public:
- CClikDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CClikView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- protected:
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CClikView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CClikView)
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in autocvw.cpp
- inline CClikDoc* CClikView::GetDocument()
- { return (CClikDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-