ExcelFormView.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ExcelFormView.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME CONTROLS MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "ExcelTab.h"
  22. #include "ExcelFormView.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CExcelFormView
  30. IMPLEMENT_DYNCREATE(CExcelFormView, CFormView)
  31. CExcelFormView::CExcelFormView()
  32. : CFormView(CExcelFormView::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CExcelFormView)
  35. // NOTE: the ClassWizard will add member initialization here
  36. //}}AFX_DATA_INIT
  37. }
  38. CExcelFormView::~CExcelFormView()
  39. {
  40. }
  41. void CExcelFormView::DoDataExchange(CDataExchange* pDX)
  42. {
  43. CFormView::DoDataExchange(pDX);
  44. //{{AFX_DATA_MAP(CExcelFormView)
  45. // NOTE: the ClassWizard will add DDX and DDV calls here
  46. //}}AFX_DATA_MAP
  47. }
  48. BEGIN_MESSAGE_MAP(CExcelFormView, CFormView)
  49. //{{AFX_MSG_MAP(CExcelFormView)
  50. ON_WM_CREATE()
  51. ON_WM_ERASEBKGND()
  52. ON_WM_PAINT()
  53. //}}AFX_MSG_MAP
  54. END_MESSAGE_MAP()
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CExcelFormView diagnostics
  57. #ifdef _DEBUG
  58. void CExcelFormView::AssertValid() const
  59. {
  60. CFormView::AssertValid();
  61. }
  62. void CExcelFormView::Dump(CDumpContext& dc) const
  63. {
  64. CFormView::Dump(dc);
  65. }
  66. #endif //_DEBUG
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CExcelFormView message handlers
  69. CScrollBar* CExcelFormView::GetScrollBarCtrl(int nBar) const
  70. {
  71. if (nBar == SB_HORZ)
  72. {
  73. return (CScrollBar *)&m_ScrollBarH;
  74. }
  75. return CFormView::GetScrollBarCtrl(nBar);
  76. }
  77. int CExcelFormView::OnCreate(LPCREATESTRUCT lpCreateStruct)
  78. {
  79. if (CFormView::OnCreate(lpCreateStruct) == -1)
  80. return -1;
  81. m_ScrollBarH.Create(WS_CHILD, CRect(0, 0, 0, 0), this, 0);
  82. return 0;
  83. }
  84. BOOL CExcelFormView::OnEraseBkgnd(CDC* pDC)
  85. {
  86. UNREFERENCED_PARAMETER(pDC);
  87. return TRUE;
  88. }
  89. void CExcelFormView::OnPaint()
  90. {
  91. CPaintDC dc(this);
  92. // Get the client rect, and paint to a memory device context.  This will
  93. // help reduce screen flicker. Pass the memory device context to the
  94. // default window procedure do default painting.
  95. CRect r;
  96. GetClientRect(&r);
  97. CXTMemDC memDC(&dc, r);
  98. CFormView::DefWindowProc( WM_PAINT, (WPARAM)memDC.m_hDC, 0 );
  99. }