home *** CD-ROM | disk | FTP | other *** search
- // tooltvw.h : interface of the CTooltestView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CTooltestView : public CView
- {
- protected: // create from serialization only
- CTooltestView();
- DECLARE_DYNCREATE(CTooltestView)
-
- // Attributes
- public:
- CTooltestDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CTooltestView();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Printing support
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnInitialUpdate();
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CTooltestView)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in tooltvw.cpp
- inline CTooltestDoc* CTooltestView::GetDocument()
- { return (CTooltestDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-