CtrlEditString.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* Copyright (c) 2002-2012 Croteam Ltd.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of version 2 of the GNU General Public License as published by
  4. the Free Software Foundation
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. GNU General Public License for more details.
  9. You should have received a copy of the GNU General Public License along
  10. with this program; if not, write to the Free Software Foundation, Inc.,
  11. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
  12. // CtrlEditString.cpp : implementation file
  13. //
  14. #include "stdafx.h"
  15. #include "CtrlEditString.h"
  16. #ifdef _DEBUG
  17. #undef new
  18. #define new DEBUG_NEW
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CCtrlEditString
  24. CCtrlEditString::CCtrlEditString()
  25. {
  26. }
  27. CCtrlEditString::~CCtrlEditString()
  28. {
  29. }
  30. void CCtrlEditString::SetDialogPtr( CPropertyComboBar *pDialog)
  31. {
  32. m_pDialog = pDialog;
  33. }
  34. BEGIN_MESSAGE_MAP(CCtrlEditString, CEdit)
  35. //{{AFX_MSG_MAP(CCtrlEditString)
  36. ON_CONTROL_REFLECT(EN_CHANGE, OnChange)
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CCtrlEditString message handlers
  41. void CCtrlEditString::OnChange()
  42. {
  43. }
  44. BOOL CCtrlEditString::PreTranslateMessage(MSG* pMsg)
  45. {
  46. // if we caught key down message
  47. if( pMsg->message==WM_KEYDOWN)
  48. {
  49. if((int)pMsg->wParam==VK_RETURN)
  50. {
  51. // don't do anything if document doesn't exist
  52. if( theApp.GetDocument() == NULL) return TRUE;
  53. // mark that document is changed
  54. theApp.GetDocument()->SetModifiedFlag( TRUE);
  55. theApp.GetDocument()->m_chSelections.MarkChanged();
  56. // update dialog data (to reflect data change)
  57. m_pDialog->UpdateData( TRUE);
  58. } else {
  59. TranslateMessage(pMsg);
  60. SendMessage( WM_KEYDOWN, pMsg->wParam, pMsg->lParam);
  61. }
  62. return TRUE;
  63. }
  64. return CEdit::PreTranslateMessage(pMsg);
  65. }