ModifyTLabelEdit.cpp
上传用户:cnjubao
上传日期:2007-01-02
资源大小:34k
文件大小:1k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. /************************************
  2.   REVISION LOG ENTRY
  3.   Revision By: Mihai Filimon
  4.   Revised on 11/2/98 7:03:03 PM
  5.   Comments: ModifyTLabelEdit.cpp: implementation of the CModifyTLabelEdit class.
  6.  ************************************/
  7. #include "stdafx.h"
  8. #include "QListCtrl.h"
  9. #include "ModifyTLabelEdit.h"
  10. #ifdef _DEBUG
  11. #undef THIS_FILE
  12. static char THIS_FILE[]=__FILE__;
  13. #define new DEBUG_NEW
  14. #endif
  15. //////////////////////////////////////////////////////////////////////
  16. // Construction/Destruction
  17. //////////////////////////////////////////////////////////////////////
  18. // Function name : CModifyTLabelEdit::CModifyTLabelEdit
  19. // Description     : default constrcutor
  20. // Return type : 
  21. CModifyTLabelEdit::CModifyTLabelEdit(LPCTSTR lpszDefaultText):CTLabelEdit(lpszDefaultText)
  22. {
  23. }
  24. // Function name : CModifyTLabelEdit::~CModifyTLabelEdit
  25. // Description     : virtual destructor
  26. // Return type : 
  27. CModifyTLabelEdit::~CModifyTLabelEdit()
  28. {
  29. }
  30. // Function name : CModifyTLabelEdit::WindowProc
  31. // Description     : 
  32. // Return type : LRESULT 
  33. // Argument         :  UINT message
  34. // Argument         : WPARAM wParam
  35. // Argument         : LPARAM lParam
  36. LRESULT CModifyTLabelEdit::WindowProc( UINT message, WPARAM wParam, LPARAM lParam )
  37. {
  38. if (message == WM_COMMAND)
  39. if (HIWORD(wParam) == EN_CHANGE)
  40. GetParent()->SendMessage(message, wParam, lParam);
  41. return CTLabelEdit::WindowProc( message, wParam, lParam );
  42. }