OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "xfa/fde/cfde_txtedtdorecord_insert.h" | 7 #include "xfa/fde/cfde_txtedtdorecord_insert.h" |
8 | 8 |
9 #include "xfa/fde/cfde_txtedtengine.h" | 9 #include "xfa/fde/cfde_txtedtengine.h" |
10 #include "xfa/fwl/basewidget/fwl_editimp.h" | 10 #include "xfa/fwl/core/ifwl_edit.h" |
11 | 11 |
12 CFDE_TxtEdtDoRecord_Insert::CFDE_TxtEdtDoRecord_Insert( | 12 CFDE_TxtEdtDoRecord_Insert::CFDE_TxtEdtDoRecord_Insert( |
13 CFDE_TxtEdtEngine* pEngine, | 13 CFDE_TxtEdtEngine* pEngine, |
14 int32_t nCaret, | 14 int32_t nCaret, |
15 const FX_WCHAR* lpText, | 15 const FX_WCHAR* lpText, |
16 int32_t nLength) | 16 int32_t nLength) |
17 : m_pEngine(pEngine), m_nCaret(nCaret) { | 17 : m_pEngine(pEngine), m_nCaret(nCaret) { |
18 ASSERT(pEngine); | 18 ASSERT(pEngine); |
19 FX_WCHAR* lpBuffer = m_wsInsert.GetBuffer(nLength); | 19 FX_WCHAR* lpBuffer = m_wsInsert.GetBuffer(nLength); |
20 FXSYS_memcpy(lpBuffer, lpText, nLength * sizeof(FX_WCHAR)); | 20 FXSYS_memcpy(lpBuffer, lpText, nLength * sizeof(FX_WCHAR)); |
(...skipping 17 matching lines...) Expand all Loading... |
38 | 38 |
39 FX_BOOL CFDE_TxtEdtDoRecord_Insert::Redo() const { | 39 FX_BOOL CFDE_TxtEdtDoRecord_Insert::Redo() const { |
40 m_pEngine->Inner_Insert(m_nCaret, m_wsInsert.c_str(), m_wsInsert.GetLength()); | 40 m_pEngine->Inner_Insert(m_nCaret, m_wsInsert.c_str(), m_wsInsert.GetLength()); |
41 FDE_TXTEDTPARAMS& Param = m_pEngine->m_Param; | 41 FDE_TXTEDTPARAMS& Param = m_pEngine->m_Param; |
42 m_pEngine->m_ChangeInfo.nChangeType = FDE_TXTEDT_TEXTCHANGE_TYPE_Insert; | 42 m_pEngine->m_ChangeInfo.nChangeType = FDE_TXTEDT_TEXTCHANGE_TYPE_Insert; |
43 m_pEngine->m_ChangeInfo.wsDelete = m_wsInsert; | 43 m_pEngine->m_ChangeInfo.wsDelete = m_wsInsert; |
44 Param.pEventSink->On_TextChanged(m_pEngine, m_pEngine->m_ChangeInfo); | 44 Param.pEventSink->On_TextChanged(m_pEngine, m_pEngine->m_ChangeInfo); |
45 m_pEngine->SetCaretPos(m_nCaret, FALSE); | 45 m_pEngine->SetCaretPos(m_nCaret, FALSE); |
46 return TRUE; | 46 return TRUE; |
47 } | 47 } |
OLD | NEW |