fileserializeview.h

来自「VisualC高级编程技术精粹.rar」· C头文件 代码 · 共 76 行

H
76
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?