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. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CODBCReportView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:
  41. // Generated message map functions
  42. protected:
  43. //{{AFX_MSG(CODBCReportView)
  44. // NOTE - the ClassWizard will add and remove member functions here.
  45. //    DO NOT EDIT what you see in these blocks of generated code !
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in ODBCReportView.cpp
  50. inline CODBCReportDoc* CODBCReportView::GetDocument()
  51.    { return (CODBCReportDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_ODBCREPORTVIEW_H__FA789B9B_4121_11D2_9949_B5757778F646__INCLUDED_)