PrintView.h
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. #if !defined(AFX_PRINTVIEW_H__2AF9CEDE_8D19_4688_94ED_3995497B2427__INCLUDED_)
  2. #define AFX_PRINTVIEW_H__2AF9CEDE_8D19_4688_94ED_3995497B2427__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // PrintView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPrintView view
  10. class CPrintView : public CView
  11. {
  12. public:
  13. CPrintView();           // protected constructor used by dynamic creation
  14. DECLARE_DYNCREATE(CPrintView)
  15. // Attributes
  16. public:
  17. BOOL m_bPrint;
  18. // Operations
  19. public:
  20. void OnMyPrint();
  21. void OnMyPrintPreview();
  22. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  23. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  24. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  25. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  26. virtual void OnEndPrintPreview(CDC* pDC, CPrintInfo* pInfo, POINT point, CPreviewView* pView);
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CPrintView)
  30. protected:
  31. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CPrintView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. // Generated message map functions
  41. public:
  42. //{{AFX_MSG(CPrintView)
  43. // NOTE - the ClassWizard will add and remove member functions here.
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_PRINTVIEW_H__2AF9CEDE_8D19_4688_94ED_3995497B2427__INCLUDED_)