⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fileserializeview.h

📁 深入学习VC++得很难得的一本好书 里面配有大量的源代码 并有详细的解释
💻 H
字号:
// FileSerializeView.h : interface of the CFileSerializeView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_FILESERIALIZEVIEW_H__BC1B143F_AC63_4785_9EF0_243932B3AB43__INCLUDED_)
#define AFX_FILESERIALIZEVIEW_H__BC1B143F_AC63_4785_9EF0_243932B3AB43__INCLUDED_

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


class CFileSerializeView : public CScrollView
{
protected: 
	// create from serialization only
	CFileSerializeView();
	DECLARE_DYNCREATE(CFileSerializeView)

// Attributes
public:
	CFileSerializeDoc* GetDocument();
	void PrintTitlePage(CDC* pDC, CPrintInfo* pInfo);
	void PrintPageHeader(CDC* pDC, CPrintInfo* pInfo, CString& strHeader);

// Operations
public:
	CStroke*    m_pStrokeCur;   //线条指针
	CPoint      m_ptPrev;       //线条最后一个点
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFileSerializeView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	virtual void OnInitialUpdate();
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
	virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CFileSerializeView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CFileSerializeView)
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in FileSerializeView.cpp
inline CFileSerializeDoc* CFileSerializeView::GetDocument()
   { return (CFileSerializeDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_FILESERIALIZEVIEW_H__BC1B143F_AC63_4785_9EF0_243932B3AB43__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -