InPlaceEdit.cpp
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:8k
源码类别:

金融证券系统

开发平台:

Visual C++

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