www.pudn.com > Cartoon.rar > CartoonView.h
// CartoonView.h : interface of the CCartoonView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_CARTOONVIEW_H__1D14A3DB_F080_4DDD_9D59_09887FDA256F__INCLUDED_)
#define AFX_CARTOONVIEW_H__1D14A3DB_F080_4DDD_9D59_09887FDA256F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCartoonView : public CView
{
protected: // create from serialization only
CCartoonView( );
DECLARE_DYNCREATE(CCartoonView)
// Attributes
public:
CCartoonDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCartoonView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
UINT m_Timer;
CPoint pos;
int radius;
int cxMove,cyMove;
virtual ~CCartoonView();
BOOL DestroyWindow();
void OnUpdate(CView* pSender,LPARAM lHint,CObject *pHint);
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CCartoonView)
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnMove();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in CartoonView.cpp
inline CCartoonDoc* CCartoonView::GetDocument()
{ return (CCartoonDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_CARTOONVIEW_H__1D14A3DB_F080_4DDD_9D59_09887FDA256F__INCLUDED_)