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

对话框与窗口

开发平台:

Visual C++

  1. // ViewDraw.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO 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 "ActivePaneView.h"
  22. #include "ViewDraw.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CViewDraw
  30. IMPLEMENT_DYNCREATE(CViewDraw, CView)
  31. CViewDraw::CViewDraw()
  32. {
  33. }
  34. CViewDraw::~CViewDraw()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CViewDraw, CView)
  38. //{{AFX_MSG_MAP(CViewDraw)
  39. ON_WM_ERASEBKGND()
  40. ON_WM_PAINT()
  41. ON_WM_NCPAINT()
  42. ON_WM_NCCALCSIZE()
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CViewDraw drawing
  47. void CViewDraw::OnDraw(CDC* pDC)
  48. {
  49. // draw view text.
  50. CXTPFontDC dc(pDC, &theApp.m_font);
  51. CRect rect;
  52. pDC->GetClipBox(&rect);
  53. pDC->DrawText(m_strTitle, &rect, DT_SINGLELINE|DT_CENTER|DT_VCENTER);
  54. }
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CViewDraw diagnostics
  57. #ifdef _DEBUG
  58. void CViewDraw::AssertValid() const
  59. {
  60. CView::AssertValid();
  61. }
  62. void CViewDraw::Dump(CDumpContext& dc) const
  63. {
  64. CView::Dump(dc);
  65. }
  66. #endif //_DEBUG
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CViewDraw message handlers
  69. BOOL CViewDraw::OnEraseBkgnd(CDC* pDC)
  70. {
  71. UNUSED_ALWAYS(pDC);
  72. return FALSE;
  73. }
  74. void CViewDraw::OnPaint()
  75. {
  76. CPaintDC dc(this);
  77. // Get the client rect.
  78. CXTPClientRect rect(this);
  79. // Paint to a memory device context to reduce screen flicker.
  80. CXTPBufferDC memDC(dc.m_hDC, rect);
  81. memDC.FillSolidRect(&rect, ::GetSysColor(COLOR_WINDOW));
  82. OnPrepareDC(&memDC);
  83. OnDraw(&memDC);
  84. }
  85. void CViewDraw::OnNcPaint()
  86. {
  87. CWindowDC dc(this);
  88. CXTPWindowRect rect(this);
  89. int cx = rect.Width();
  90. int cy = rect.Height();
  91. const COLORREF clrFrame =  ::GetSysColor(COLOR_3DSHADOW);
  92. dc.Draw3dRect(0, 0, cx, cy, clrFrame, clrFrame);
  93. }
  94. void CViewDraw::OnNcCalcSize(BOOL /*bCalcValidRects*/, NCCALCSIZE_PARAMS FAR* lpncsp)
  95. {
  96. // adjust non-client area for border space
  97. lpncsp->rgrc[0].left   += 1;
  98. lpncsp->rgrc[0].top    += 1;
  99. lpncsp->rgrc[0].right  -= 1;
  100. lpncsp->rgrc[0].bottom -= 1;
  101. }