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

对话框与窗口

开发平台:

Visual C++

  1. // ColorsView.cpp: implementation of the CColorsView class.
  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 "DockingContainers.h"
  22. #include "ColorsView.h"
  23. #ifdef _DEBUG
  24. #undef THIS_FILE
  25. static char THIS_FILE[]=__FILE__;
  26. #define new DEBUG_NEW
  27. #endif
  28. //////////////////////////////////////////////////////////////////////
  29. // Construction/Destruction
  30. //////////////////////////////////////////////////////////////////////
  31. CColorsView::CColorsView()
  32. {
  33. m_nToolBarID = IDR_COLORS_BAR;
  34. }
  35. CColorsView::~CColorsView()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CColorsView, CPaneView)
  39. //{{AFX_MSG_MAP(CExplorerView)
  40. ON_COMMAND_RANGE(ID_COLORS_EXPLORE, ID_COLROS_SWITCH, OnColorsCommand)
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. CWnd* CColorsView::OnCreateView()
  44. {
  45. if (!m_wndColors.Create(NULL, WS_VISIBLE | WS_CHILD |SS_NOTIFY,
  46. CRect(0,0,0,0), this ))
  47. {
  48. TRACE0( "Unable to create tree control.n" );
  49. return NULL;
  50. }
  51. return &m_wndColors;
  52. }
  53. void CColorsView::OnColorsCommand(UINT)
  54. {
  55. // TODO: Add your command handler code here
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CColorsSwatchWnd
  59. CColorsSwatchWnd::CColorsSwatchWnd()
  60. {
  61. }
  62. CColorsSwatchWnd::~CColorsSwatchWnd()
  63. {
  64. }
  65. BEGIN_MESSAGE_MAP(CColorsSwatchWnd, CStatic)
  66. //{{AFX_MSG_MAP(CColorsSwatchWnd)
  67. ON_WM_ERASEBKGND()
  68. ON_WM_PAINT()
  69. ON_WM_SIZE()
  70. //}}AFX_MSG_MAP
  71. END_MESSAGE_MAP()
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CColorsSwatchWnd message handlers
  74. BOOL CColorsSwatchWnd::OnEraseBkgnd(CDC*)
  75. {
  76. return TRUE;
  77. }
  78. void CColorsSwatchWnd::OnPaint()
  79. {
  80. CPaintDC dc(this); // device context for painting
  81. CXTPClientRect rc(this);
  82. CBitmap bmp;
  83. VERIFY(bmp.LoadBitmap(IDB_SWATCH));
  84. BITMAP bmpInfo;
  85. bmp.GetBitmap(&bmpInfo);
  86. CXTPCompatibleDC dcMem(&dc, &bmp);
  87. dc.StretchBlt(0, 0, rc.Width(), rc.Height(), &dcMem, 0, 0, bmpInfo.bmWidth, bmpInfo.bmHeight, SRCCOPY);
  88. }
  89. void CColorsSwatchWnd::OnSize(UINT nType, int cx, int cy)
  90. {
  91. CStatic::OnSize(nType, cx, cy);
  92. Invalidate(FALSE);
  93. }