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

对话框与窗口

开发平台:

Visual C++

  1. // listdlg.cpp : Defines the class behaviors for the application.
  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 "resource.h"
  22. #include "listdlg.h"
  23. #ifdef _DEBUG
  24. #undef THIS_FILE
  25. static char BASED_CODE THIS_FILE[] = __FILE__;
  26. #endif
  27. BEGIN_MESSAGE_MAP(CListDlg, CDialog)
  28. //{{AFX_MSG_MAP(CListDlg)
  29. ON_LBN_DBLCLK(IDC_LISTDIALOG_LIST, OnOK)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. CListDlg::CListDlg(UINT idStrDlgTitle, UINT idStrListTitle,
  33. const CStringList& listItems, int nDefSel) : CDialog(CListDlg::IDD),
  34. m_listItems(listItems)
  35. {
  36. VERIFY(m_strDlgTitle.LoadString(idStrDlgTitle));
  37. VERIFY(m_strListTitle.LoadString(idStrListTitle));
  38. m_nSelection = nDefSel;
  39. }
  40. BOOL CListDlg::OnInitDialog()
  41. {
  42. SetWindowText(m_strDlgTitle);
  43. // fix this
  44. SetDlgItemText(IDC_STATIC_HEADING, m_strListTitle);
  45. CListBox* pListBox = (CListBox*)GetDlgItem(IDC_LISTDIALOG_LIST);
  46. ASSERT(pListBox != NULL);
  47. // fill with document templates in list
  48. POSITION pos = m_listItems.GetHeadPosition();
  49. while (pos != NULL)
  50. {
  51. if ( pListBox->AddString(m_listItems.GetNext(pos)) == -1)
  52. return FALSE;
  53. }
  54. pListBox->SetCurSel(m_nSelection);
  55. return CDialog::OnInitDialog();
  56. }
  57. void CListDlg::OnOK()
  58. {
  59. CListBox* pListBox = (CListBox*)GetDlgItem(IDC_LISTDIALOG_LIST);
  60. ASSERT(pListBox != NULL);
  61. m_nSelection = pListBox->GetCurSel();
  62. CDialog::OnOK();
  63. }