view.h

// sxView.h : interface of the CSxView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_SXVIEW_H__75371C02_B23D_4902_A3AC_DF8762833EDF__INCLUDED_)
#define AFX_SXVIEW_H__75371C02_B23D_4902_A3AC_DF8762833EDF__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CSxView : public CView
{
protected: // create from serialization only
 CSxView();
 DECLARE_DYNCREATE(CSxView)

// Attributes
public:
 CSxDoc* GetDocument();

// Operations
public:
 CString str;
 int num;
 int i,x,y,temp,r;

// Overrides
 // ClassWizard generated virtual function overrides
 //{{AFX_VIRTUAL(CSxView)
 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:
 virtual ~CSxView();
#ifdef _DEBUG
 virtual void AssertValid() const;
 virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
 //{{AFX_MSG(CSxView)
 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
 afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
 afx_msg void OnIDadd();
 afx_msg void OnIDjianshao();
 afx_msg void OnEditUndo();
 //}}AFX_MSG
 DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in sxView.cpp
inline CSxDoc* CSxView::GetDocument()
   { return (CSxDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SXVIEW_H__75371C02_B23D_4902_A3AC_DF8762833EDF__INCLUDED_)

你可能感兴趣的:(view.h)