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

对话框与窗口

开发平台:

Visual C++

  1. // PropertiesTabCtrl.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 "CommandBarIcons.h"
  22. #include "PropertiesTabCtrl.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CPropertiesTabCtrl
  30. CPropertiesTabCtrl::CPropertiesTabCtrl()
  31. {
  32. m_iSelectedTab = 0;
  33. }
  34. CPropertiesTabCtrl::~CPropertiesTabCtrl()
  35. {
  36. }
  37. void CPropertiesTabCtrl::AddTab(CWnd* pWnd, LPTSTR lpszCaption)
  38. {
  39. ASSERT_VALID(pWnd);
  40. TCITEM item;
  41. item.mask = TCIF_TEXT|TCIF_PARAM;
  42. item.lParam = (LPARAM) pWnd;
  43. item.pszText = lpszCaption;
  44. InsertItem(GetItemCount(), &item);
  45. CRect rc;
  46. GetClientRect(&rc);
  47. AdjustRect(FALSE, &rc);
  48. pWnd->SetWindowPos(NULL, rc.left, rc.top, rc.Width(), rc.Height(),
  49. SWP_FRAMECHANGED|SWP_NOZORDER);
  50. pWnd->ShowWindow(GetItemCount() != 1 ? SW_HIDE : SW_SHOW);
  51. }
  52. BEGIN_MESSAGE_MAP(CPropertiesTabCtrl, CTabCtrl)
  53. //{{AFX_MSG_MAP(CPropertiesTabCtrl)
  54. ON_NOTIFY_REFLECT(TCN_SELCHANGE, OnSelectionChanged)
  55. ON_NOTIFY_REFLECT(TCN_SELCHANGING, OnSelectionChanging)
  56. //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CPropertiesTabCtrl message handlers
  60. void CPropertiesTabCtrl::OnSelectionChanged(NMHDR* /*pNMHDR*/, LRESULT* pResult)
  61. {
  62. int iNewTab = GetCurSel();
  63. TCITEM item;
  64. CPropertiesTabPage* pWnd;
  65. item.mask = TCIF_PARAM;
  66. //** hide the current tab ---------
  67. GetItem(m_iSelectedTab, &item);
  68. pWnd = reinterpret_cast<CPropertiesTabPage*> (item.lParam);
  69. ASSERT_VALID(pWnd);
  70. pWnd->ShowWindow(SW_HIDE);
  71. //** show the selected tab --------
  72. GetItem(iNewTab, &item);
  73. pWnd = reinterpret_cast<CPropertiesTabPage*> (item.lParam);
  74. ASSERT_VALID(pWnd);
  75. pWnd->ShowWindow(SW_SHOW);
  76. pWnd->OnActivate();
  77. *pResult = 0;
  78. }
  79. void CPropertiesTabCtrl::OnSelectionChanging(NMHDR* /*pNMHDR*/, LRESULT* pResult)
  80. {
  81. m_iSelectedTab = GetCurSel();
  82. *pResult = 0;
  83. }