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

对话框与窗口

开发平台:

Visual C++

  1. // XTPControlExt.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 "ControlUndo.h"
  22. #include "DynamicPopups.h"
  23. #include "DynamicPopupsDoc.h"
  24. #include "DynamicPopupsView.h"
  25. #ifdef _DEBUG
  26. #define new DEBUG_NEW
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #endif
  30. IMPLEMENT_XTP_CONTROL( CControlUndo, CXTPControlButton)
  31. void CControlUndo::OnCalcDynamicSize(DWORD /*dwMode*/)
  32. {
  33. if (GetParent()->GetType() !=xtpBarTypePopup)
  34. return;
  35. ASSERT(m_pControls->GetAt(m_nIndex) == this);
  36. while (m_nIndex + 1 < m_pControls->GetCount())
  37. {
  38. CXTPControl* pControl = m_pControls->GetAt(m_nIndex + 1);
  39. if (pControl->GetID() >= FIRST_UNDO_COMMAND && pControl->GetID() < LAST_UNDO_COMMAND)
  40. {
  41. m_pControls->Remove(pControl);
  42. }
  43. else break;
  44. }
  45. m_dwHideFlags = 0;
  46. if (m_pParent->IsCustomizeMode())
  47. return;
  48. CMDIFrameWnd* pFrame = DYNAMIC_DOWNCAST(CMDIFrameWnd, AfxGetMainWnd());
  49. ASSERT(pFrame);
  50. CFrameWnd* pChildFrame =  pFrame->GetActiveFrame();
  51. if (pChildFrame == NULL)
  52. return;
  53. CDynamicPopupsView* pView = (CDynamicPopupsView*)pChildFrame->GetActiveView();
  54. if (pView == NULL)
  55. return;
  56. m_dwHideFlags |= xtpHideGeneric;
  57. int nCount = pView->m_wndList.GetCount();
  58. for (int i = 0; i < nCount; i++)
  59. {
  60. CString strTitle;
  61. pView->m_wndList.GetText(i, strTitle);
  62. CXTPControl* pControl = m_pControls->Add(xtpControlButton, FIRST_UNDO_COMMAND + i, _T(""), m_nIndex + 1 + i, TRUE);
  63. pControl->SetCaption(strTitle);
  64. pControl->SetFlags(xtpFlagManualUpdate);
  65. if (GetBeginGroup() && (i == 0))
  66. pControl->SetBeginGroup(TRUE);
  67. }
  68. }
  69. BOOL CControlUndo::IsCustomizeDragOverAvail(CXTPCommandBar* pCommandBar, CPoint /*point*/, DROPEFFECT& dropEffect)
  70. {
  71. if (pCommandBar->GetType() != xtpBarTypePopup)
  72. {
  73. dropEffect = DROPEFFECT_NONE;
  74. return FALSE;
  75. }
  76. return TRUE;
  77. }
  78. ////////////////////////////////////////////////////////////////////////////////////////////////////////
  79. //
  80. IMPLEMENT_XTP_CONTROL( CControlComboBoxUndo, CXTPControlComboBox)
  81. BOOL CControlComboBoxUndo::OnSetPopup(BOOL bPopup)
  82. {
  83. if (bPopup)
  84. {
  85. CString str = GetListBoxText();
  86. ResetContent();
  87. CMDIFrameWnd* pFrame = DYNAMIC_DOWNCAST(CMDIFrameWnd, AfxGetMainWnd());
  88. ASSERT(pFrame);
  89. CFrameWnd* pChildFrame =  pFrame->GetActiveFrame();
  90. if (pChildFrame == NULL)
  91. return CXTPControlComboBox::OnSetPopup(bPopup);
  92. CDynamicPopupsView* pView = (CDynamicPopupsView*)pChildFrame->GetActiveView();
  93. if (pView == NULL)
  94. return CXTPControlComboBox::OnSetPopup(bPopup);
  95. int nCount = pView->m_wndList.GetCount();
  96. for (int i = 0; i < nCount; i++)
  97. {
  98. CString strTitle;
  99. pView->m_wndList.GetText(i, strTitle);
  100. AddString(strTitle);
  101. }
  102. int nIdx = FindStringExact(-1, str);
  103. if (nIdx != CB_ERR) SetCurSel(nIdx);
  104. }
  105. return CXTPControlComboBox::OnSetPopup(bPopup);
  106. }