Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.7 KiB

  1. // PrintSDIView.h : interface of the CPrintSDIView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_PRINTSDIVIEW_H__5568954B_8B6C_11D1_B7AE_000000000000__INCLUDED_)
  5. #define AFX_PRINTSDIVIEW_H__5568954B_8B6C_11D1_B7AE_000000000000__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CPrintSDIView : public CView
  10. {
  11. protected: // create from serialization only
  12. CPrintSDIView();
  13. DECLARE_DYNCREATE(CPrintSDIView)
  14. // Attributes
  15. public:
  16. CPrintSDIDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CPrintSDIView)
  22. public:
  23. virtual void OnDraw(CDC* pDC); // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CPrintSDIView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CPrintSDIView)
  41. afx_msg void OnFileFax();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. #ifndef _DEBUG // debug version in PrintSDIView.cpp
  46. inline CPrintSDIDoc* CPrintSDIView::GetDocument()
  47. { return (CPrintSDIDoc*)m_pDocument; }
  48. #endif
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_PRINTSDIVIEW_H__5568954B_8B6C_11D1_B7AE_000000000000__INCLUDED_)