ODBCReportView.h
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ODBCReportView.h : interface of the CODBCReportView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_ODBCREPORTVIEW_H__FA789B9B_4121_11D2_9949_B5757778F646__INCLUDED_)
  5. #define AFX_ODBCREPORTVIEW_H__FA789B9B_4121_11D2_9949_B5757778F646__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ODBCReportSet.h"
  10. class CODBCReportView : public CScrollView
  11. {
  12. protected: // create from serialization only
  13. CODBCReportView();
  14. DECLARE_DYNCREATE(CODBCReportView)
  15. // Attributes
  16. public:
  17. CODBCReportDoc* GetDocument();
  18. CODBCReportSet* m_pSet;
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CODBCReportView)
  24. public:
  25. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  26. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  27. protected:
  28. virtual void OnInitialUpdate(); // called first time after construct
  29. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  30. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CODBCReportView();
  37. void OutputReport(CDC* pDC, CPrintInfo* pInfo = NULL);
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. protected:
  43. // Generated message map functions
  44. protected:
  45. //{{AFX_MSG(CODBCReportView)
  46. // NOTE - the ClassWizard will add and remove member functions here.
  47. //    DO NOT EDIT what you see in these blocks of generated code !
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. #ifndef _DEBUG  // debug version in ODBCReportView.cpp
  52. inline CODBCReportDoc* CODBCReportView::GetDocument()
  53.    { return (CODBCReportDoc*)m_pDocument; }
  54. #endif
  55. /////////////////////////////////////////////////////////////////////////////
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58. #endif // !defined(AFX_ODBCREPORTVIEW_H__FA789B9B_4121_11D2_9949_B5757778F646__INCLUDED_)