Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(468)

Side by Side Diff: xfa/fde/cfde_txtedtdorecord_insert.cpp

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/core/ifwl_edit.h" 10 #include "xfa/fwl/core/cfwl_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
38 38
39 bool CFDE_TxtEdtDoRecord_Insert::Redo() const { 39 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698