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

对话框与窗口

开发平台:

Visual C++

  1. // DialogAccelProperties.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 "commandbarsdesigner.h"
  22. #include "DialogAccelProperties.h"
  23. #include "MainFrm.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CDialogAccelProperties dialog
  31. CDialogAccelProperties::CDialogAccelProperties(CWnd* pParent /*=NULL*/)
  32. : CDialog(CDialogAccelProperties::IDD, pParent),
  33. m_wndAccel(((CMainFrame*)AfxGetMainWnd())->GetCommandBars()->GetShortcutManager())
  34. {
  35. //{{AFX_DATA_INIT(CDialogAccelProperties)
  36. // NOTE: the ClassWizard will add member initialization here
  37. //}}AFX_DATA_INIT
  38. m_lpAccel = NULL;
  39. }
  40. void CDialogAccelProperties::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CDialog::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CDialogAccelProperties)
  44. DDX_Control(pDX, IDC_EDIT_CAPTION, m_wndAccel);
  45. DDX_Control(pDX, IDC_COMBO_ID, m_comboId);
  46. DDX_CBString(pDX, IDC_COMBO_ID, m_strId);
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CDialogAccelProperties, CDialog)
  50. //{{AFX_MSG_MAP(CDialogAccelProperties)
  51. //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CDialogAccelProperties message handlers
  55. BOOL CDialogAccelProperties::OnInitDialog()
  56. {
  57. CDialog::OnInitDialog();
  58. CResourceManager* pResourceManager = ((CMainFrame*)AfxGetMainWnd())->GetActiveEmbeddedFrame()->ResourceManager();
  59. ASSERT(pResourceManager);
  60. CMapResources* pResources = pResourceManager->GetResources();
  61. POSITION pos = pResources->GetStartPosition();
  62. while (pos)
  63. {
  64. CResourceInfo* pInfo;
  65. CString strCaption;
  66. pResources->GetNextAssoc(pos, strCaption, (CObject*&)pInfo);
  67. int nIndex = m_comboId.AddString(strCaption);
  68. if (m_strId == strCaption)
  69. m_comboId.SetCurSel(nIndex);
  70. }
  71. if (m_lpAccel)
  72. {
  73. m_wndAccel.SetAccel(m_lpAccel);
  74. }
  75. return TRUE;  // return TRUE unless you set the focus to a control
  76.               // EXCEPTION: OCX Property Pages should return FALSE
  77. }
  78. void CDialogAccelProperties::OnOK()
  79. {
  80. UpdateData();
  81. if (m_strId.IsEmpty())
  82. {
  83. m_comboId.SetFocus();
  84. return;
  85. }
  86. if (!m_wndAccel.IsKeyDefined())
  87. {
  88. m_wndAccel.SetFocus();
  89. return;
  90. }
  91. CDialog::OnOK();
  92. }