InPlaceEdit.cpp
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:8k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // InPlaceEdit.cpp : implementation file
  2. //
  3. // Adapted by Chris Maunder <cmaunder@mail.com>
  4. // Copyright (c) 1998-2000. All Rights Reserved.
  5. //
  6. // The code contained in this file is based on the original
  7. // CInPlaceEdit from http://www.codeguru.com/listview/edit_subitems.shtml
  8. //
  9. // This code may be used in compiled form in any way you desire. This
  10. // file may be redistributed unmodified by any means PROVIDING it is 
  11. // not sold for profit without the authors written consent, and 
  12. // providing that this notice and the authors name and all copyright 
  13. // notices remains intact. 
  14. //
  15. // An email letting me know how you are using it would be nice as well. 
  16. //
  17. // This file is provided "as is" with no expressed or implied warranty.
  18. // The author accepts no liability for any damage/loss of business that
  19. // this product may cause.
  20. //
  21. // For use with CGridCtrl v2.10+
  22. //
  23. // History:
  24. //         10 May 1998  Uses GVN_ notifications instead of LVN_,
  25. //                      Sends notification messages to the parent, 
  26. //                      instead of the parent's parent.
  27. //         15 May 1998  There was a problem when editing with the in-place editor, 
  28. //                      there arises a general protection fault in user.exe, with a 
  29. //                      few qualifications:
  30. //                         (1) This only happens with owner-drawn buttons;
  31. //                         (2) This only happens in Win95
  32. //                         (3) This only happens if the handler for the button does not 
  33. //                             create a new window (even an AfxMessageBox will avoid the 
  34. //                             crash)
  35. //                         (4) This will not happen if Spy++ is running.
  36. //                      PreTranslateMessage was added to route messages correctly.
  37. //                      (Matt Weagle found and fixed this problem)
  38. //         26 Jul 1998  Removed the ES_MULTILINE style - that fixed a few probs!
  39. //          6 Aug 1998  Added nID to the constructor param list
  40. //          6 Sep 1998  Space no longer clears selection when starting edit (Franco Bez)
  41. //         10 Apr 1999  Enter, Tab and Esc key prob fixed (Koay Kah Hoe)
  42. //                      Workaround for bizzare "shrinking window" problem in CE
  43. //
  44. /////////////////////////////////////////////////////////////////////////////
  45. #include "stdafx.h"
  46. #include "TCHAR.h"
  47. #include "InPlaceEdit.h"
  48. #include "GridCtrl.h"
  49. #ifdef _DEBUG
  50. #define new DEBUG_NEW
  51. #undef THIS_FILE
  52. static char THIS_FILE[] = __FILE__;
  53. #endif
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CInPlaceEdit
  56. CInPlaceEdit::CInPlaceEdit(CWnd* pParent, CRect& rect, DWORD dwStyle, UINT nID,
  57.                            int nRow, int nColumn, CString sInitText, 
  58.                            UINT nFirstChar)
  59. {
  60.     m_sInitText     = sInitText;
  61.     m_nRow          = nRow;
  62.     m_nColumn       = nColumn;
  63.     m_nLastChar     = 0; 
  64.     m_bExitOnArrows = (nFirstChar != VK_LBUTTON);    // If mouse click brought us here,
  65.                                                      // then no exit on arrows
  66.     m_Rect = rect;  // For bizarre CE bug.
  67.     
  68.     DWORD dwEditStyle = WS_BORDER|WS_CHILD|WS_VISIBLE| ES_AUTOHSCROLL //|ES_MULTILINE
  69.         | dwStyle;
  70.     if (!Create(dwEditStyle, rect, pParent, nID)) return;
  71.     
  72.     SetFont(pParent->GetFont());
  73.     
  74.     SetWindowText(sInitText);
  75.     SetFocus();
  76.     
  77.     switch (nFirstChar){
  78.         case VK_LBUTTON: 
  79.         case VK_RETURN:   SetSel((int)_tcslen(m_sInitText), -1); return;
  80.         case VK_BACK:     SetSel((int)_tcslen(m_sInitText), -1); break;
  81.         case VK_TAB:
  82.         case VK_DOWN: 
  83.         case VK_UP:   
  84.         case VK_RIGHT:
  85.         case VK_LEFT:  
  86.         case VK_NEXT:  
  87.         case VK_PRIOR: 
  88.         case VK_HOME:
  89.         case VK_SPACE:
  90.         case VK_END:      SetSel(0,-1); return;
  91.         default:          SetSel(0,-1);
  92.     }
  93.     
  94.     SendMessage(WM_CHAR, nFirstChar);
  95. }
  96. CInPlaceEdit::~CInPlaceEdit()
  97. {
  98. }
  99. BEGIN_MESSAGE_MAP(CInPlaceEdit, CEdit)
  100.     //{{AFX_MSG_MAP(CInPlaceEdit)
  101.     ON_WM_KILLFOCUS()
  102.     ON_WM_CHAR()
  103.     ON_WM_KEYDOWN()
  104.     ON_WM_GETDLGCODE()
  105.     ON_WM_CREATE()
  106.     //}}AFX_MSG_MAP
  107. END_MESSAGE_MAP()
  108. ////////////////////////////////////////////////////////////////////////////
  109. // CInPlaceEdit message handlers
  110. // If an arrow key (or associated) is pressed, then exit if
  111. //  a) The Ctrl key was down, or
  112. //  b) m_bExitOnArrows == TRUE
  113. void CInPlaceEdit::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
  114. {
  115.     if ((nChar == VK_PRIOR || nChar == VK_NEXT ||
  116.         nChar == VK_DOWN  || nChar == VK_UP   ||
  117.         nChar == VK_RIGHT || nChar == VK_LEFT) &&
  118.         (m_bExitOnArrows || GetKeyState(VK_CONTROL) < 0))
  119.     {
  120.         m_nLastChar = nChar;
  121.         GetParent()->SetFocus();
  122.         return;
  123.     }
  124.     
  125.     CEdit::OnKeyDown(nChar, nRepCnt, nFlags);
  126. }
  127. // As soon as this edit loses focus, kill it.
  128. void CInPlaceEdit::OnKillFocus(CWnd* pNewWnd)
  129. {
  130.     CEdit::OnKillFocus(pNewWnd);
  131.     EndEdit();
  132. }
  133. void CInPlaceEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
  134. {
  135.     if (nChar == VK_TAB || nChar == VK_RETURN)
  136.     {
  137.         m_nLastChar = nChar;
  138.         GetParent()->SetFocus();    // This will destroy this window
  139.         return;
  140.     }
  141.     if (nChar == VK_ESCAPE) 
  142.     {
  143.         SetWindowText(m_sInitText);    // restore previous text
  144.         m_nLastChar = nChar;
  145.         GetParent()->SetFocus();
  146.         return;
  147.     }
  148.     
  149.     CEdit::OnChar(nChar, nRepCnt, nFlags);
  150.     
  151.     // Resize edit control if needed
  152.     
  153.     // Get text extent
  154.     CString str;
  155.     GetWindowText( str );
  156.     // add some extra buffer
  157.     str += _T("  ");
  158.     
  159.     CWindowDC dc(this);
  160.     CFont *pFontDC = dc.SelectObject(GetFont());
  161.     CSize size = dc.GetTextExtent( str );
  162.     dc.SelectObject( pFontDC );
  163.        
  164.     // Get client rect
  165.     CRect ParentRect;
  166.     GetParent()->GetClientRect( &ParentRect );
  167.     
  168.     // Check whether control needs to be resized
  169.     // and whether there is space to grow
  170.     if (size.cx > m_Rect.Width())
  171.     {
  172.         if( size.cx + m_Rect.left < ParentRect.right )
  173.             m_Rect.right = m_Rect.left + size.cx;
  174.         else
  175.             m_Rect.right = ParentRect.right;
  176.         MoveWindow( &m_Rect );
  177.     }
  178. }
  179. UINT CInPlaceEdit::OnGetDlgCode() 
  180. {
  181.     return DLGC_WANTALLKEYS;
  182. }
  183. ////////////////////////////////////////////////////////////////////////////
  184. // CInPlaceEdit overrides
  185. // Stoopid win95 accelerator key problem workaround - Matt Weagle.
  186. BOOL CInPlaceEdit::PreTranslateMessage(MSG* pMsg) 
  187. {
  188.     // Catch the Alt key so we don't choke if focus is going to an owner drawn button
  189.     if (pMsg->message == WM_SYSCHAR)
  190.         return TRUE;
  191.     
  192.     return CWnd::PreTranslateMessage(pMsg);
  193. }
  194. // Auto delete
  195. void CInPlaceEdit::PostNcDestroy() 
  196. {
  197.     CEdit::PostNcDestroy();
  198.     
  199.     delete this;
  200. }
  201. ////////////////////////////////////////////////////////////////////////////
  202. // CInPlaceEdit implementation
  203. void CInPlaceEdit::EndEdit()
  204. {
  205.     CString str;
  206.     // EFW - BUG FIX - Clicking on a grid scroll bar in a derived class
  207.     // that validates input can cause this to get called multiple times
  208.     // causing assertions because the edit control goes away the first time.
  209.     static BOOL bAlreadyEnding = FALSE;
  210.     if(bAlreadyEnding)
  211.         return;
  212.     bAlreadyEnding = TRUE;
  213.     GetWindowText(str);
  214.     // Send Notification to parent
  215.     GV_DISPINFO dispinfo;
  216.     dispinfo.hdr.hwndFrom = GetSafeHwnd();
  217.     dispinfo.hdr.idFrom   = GetDlgCtrlID();
  218.     dispinfo.hdr.code     = GVN_ENDLABELEDIT;
  219.     dispinfo.item.mask    = LVIF_TEXT|LVIF_PARAM;
  220.     dispinfo.item.row     = m_nRow;
  221.     dispinfo.item.col     = m_nColumn;
  222.     dispinfo.item.strText  = str;
  223.     dispinfo.item.lParam  = (LPARAM) m_nLastChar;
  224.     CWnd* pOwner = GetOwner();
  225.     if (pOwner)
  226.         pOwner->SendMessage(WM_NOTIFY, GetDlgCtrlID(), (LPARAM)&dispinfo );
  227.     // Close this window (PostNcDestroy will delete this)
  228.     if (IsWindow(GetSafeHwnd()))
  229.         SendMessage(WM_CLOSE, 0, 0);
  230.     bAlreadyEnding = FALSE;
  231. }