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

对话框与窗口

开发平台:

Visual C++

  1. // DialogListEditor.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 "DialogListEditor.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CDialogListEditor dialog
  30. CDialogListEditor::CDialogListEditor(CXTPControlComboBox* pCombo, CWnd* pParent /*=NULL*/)
  31. : CDialog(CDialogListEditor::IDD, pParent)
  32. {
  33. //{{AFX_DATA_INIT(CDialogListEditor)
  34. m_strList = _T("");
  35. //}}AFX_DATA_INIT
  36. m_pCombo = pCombo;
  37. }
  38. void CDialogListEditor::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CDialogListEditor)
  42. DDX_Control(pDX, IDC_EDIT_LIST, m_wndList);
  43. DDX_Text(pDX, IDC_EDIT_LIST, m_strList);
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(CDialogListEditor, CDialog)
  47. //{{AFX_MSG_MAP(CDialogListEditor)
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CDialogListEditor message handlers
  52. BOOL CDialogListEditor::OnInitDialog()
  53. {
  54. CDialog::OnInitDialog();
  55. m_strList = _T("");
  56. for (int i = 0; i < m_pCombo->GetCount(); i++)
  57. {
  58. CString str;
  59. m_pCombo->GetLBText(i, str);
  60. if (i > 0) str = _T("rn") + str;
  61. m_strList += str;
  62. }
  63. UpdateData(FALSE);
  64. return TRUE;  // return TRUE unless you set the focus to a control
  65.               // EXCEPTION: OCX Property Pages should return FALSE
  66. }
  67. void CDialogListEditor::OnOK()
  68. {
  69. UpdateData();
  70. m_pCombo->ResetContent();
  71. int nIndex = 0;
  72. do
  73. {
  74. nIndex = m_strList.Find(_T('n'));
  75. if (nIndex != -1)
  76. {
  77. CString str = m_strList.Left(nIndex - 1);
  78. XTPStringDelete(m_strList, 0, nIndex + 1);
  79. if (!str.IsEmpty()) m_pCombo->AddString(str);
  80. } else
  81. {
  82. if (!m_strList.IsEmpty()) m_pCombo->AddString(m_strList);
  83. }
  84. } while (nIndex != -1);
  85. CDialog::OnOK();
  86. }