📄 testappview.h
字号:
// TestAppView.h : interface of the CTestAppView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_TESTAPPVIEW_H__E30B754F_82AD_4CED_BE7C_F8CDDBED8925__INCLUDED_)
#define AFX_TESTAPPVIEW_H__E30B754F_82AD_4CED_BE7C_F8CDDBED8925__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "PapersSet.h"
#include "PapersDataSet.h"
class CTestAppView : public CView
{
protected: // create from serialization only
CTestAppView();
DECLARE_DYNCREATE(CTestAppView)
// Attributes
public:
CTestAppDoc* GetDocument();
CPapersSet* m_pSetPaper;
CPapersDataSet* m_pSetPapersData;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CTestAppView)
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 OnPrint(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CTestAppView();
void PrintReport(CDC* pDC, CPrintInfo* pInfo=NULL);
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CTestAppView)
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in TestAppView.cpp
inline CTestAppDoc* CTestAppView::GetDocument()
{ return (CTestAppDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_TESTAPPVIEW_H__E30B754F_82AD_4CED_BE7C_F8CDDBED8925__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -