InputBox.cpp
上传用户:trilite
上传日期:2007-04-24
资源大小:261k
文件大小:2k
源码类别:

酒店行业

开发平台:

Visual C++

  1. // InputBox.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "parksys.h"
  5. #include "InputBox.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CInputBox dialog
  13. CInputBox::CInputBox(CString strCaption
  14. , CString strPrompt
  15. , CString *pstrData
  16. , CWnd* pParent /*=NULL*/)
  17. : CDialog(CInputBox::IDD, pParent)
  18. , m_strPrompt(strPrompt)
  19. , m_pstrData(pstrData)
  20. , m_strCaption(strCaption)
  21. {
  22. //{{AFX_DATA_INIT(CInputBox)
  23. m_strData = _T("");
  24. //m_strPrompt = _T("");
  25. //}}AFX_DATA_INIT
  26. }
  27. void CInputBox::DoDataExchange(CDataExchange* pDX)
  28. {
  29. CDialog::DoDataExchange(pDX);
  30. //{{AFX_DATA_MAP(CInputBox)
  31. DDX_Text(pDX, IDC_INPUT_DATA, m_strData);
  32. DDX_Text(pDX, IDC_PROMPT, m_strPrompt);
  33. //}}AFX_DATA_MAP
  34. }
  35. BEGIN_MESSAGE_MAP(CInputBox, CDialog)
  36. //{{AFX_MSG_MAP(CInputBox)
  37. ON_EN_CHANGE(IDC_INPUT_DATA, OnChangeInputData)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CInputBox message handlers
  42. void CInputBox::OnOK() 
  43. {
  44. CDialog::OnOK();
  45. *m_pstrData = m_strData;
  46. }
  47. void CInputBox::OnCancel() 
  48. {
  49. CDialog::OnCancel();
  50. *m_pstrData = "";
  51. }
  52. BOOL CInputBox::OnInitDialog() 
  53. {
  54. CDialog::OnInitDialog();
  55. SetWindowText(m_strCaption);
  56. return TRUE;  // return TRUE unless you set the focus to a control
  57.               // EXCEPTION: OCX Property Pages should return FALSE
  58. }
  59. void CInputBox::OnChangeInputData() 
  60. {
  61. // TODO: If this is a RICHEDIT control, the control will not
  62. // send this notification unless you override the CDialog::OnInitDialog()
  63. // function and call CRichEditCtrl().SetEventMask()
  64. // with the ENM_CHANGE flag ORed into the mask.
  65. UpdateData(TRUE);
  66. GetDlgItem(IDOK)->EnableWindow(m_strData != "");
  67. // TODO: Add your control notification handler code here
  68. }