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/core/ifwl_edit.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)); |
21 m_wsInsert.ReleaseBuffer(); | 21 m_wsInsert.ReleaseBuffer(); |
22 } | 22 } |
23 | 23 |
24 CFDE_TxtEdtDoRecord_Insert::~CFDE_TxtEdtDoRecord_Insert() {} | 24 CFDE_TxtEdtDoRecord_Insert::~CFDE_TxtEdtDoRecord_Insert() {} |
25 | 25 |
26 FX_BOOL CFDE_TxtEdtDoRecord_Insert::Undo() const { | 26 bool CFDE_TxtEdtDoRecord_Insert::Undo() const { |
27 if (m_pEngine->IsSelect()) | 27 if (m_pEngine->IsSelect()) |
28 m_pEngine->ClearSelection(); | 28 m_pEngine->ClearSelection(); |
29 | 29 |
30 m_pEngine->Inner_DeleteRange(m_nCaret, m_wsInsert.GetLength()); | 30 m_pEngine->Inner_DeleteRange(m_nCaret, m_wsInsert.GetLength()); |
31 FDE_TXTEDTPARAMS& Param = m_pEngine->m_Param; | 31 FDE_TXTEDTPARAMS& Param = m_pEngine->m_Param; |
32 m_pEngine->m_ChangeInfo.nChangeType = FDE_TXTEDT_TEXTCHANGE_TYPE_Delete; | 32 m_pEngine->m_ChangeInfo.nChangeType = FDE_TXTEDT_TEXTCHANGE_TYPE_Delete; |
33 m_pEngine->m_ChangeInfo.wsDelete = m_wsInsert; | 33 m_pEngine->m_ChangeInfo.wsDelete = m_wsInsert; |
34 Param.pEventSink->On_TextChanged(m_pEngine, m_pEngine->m_ChangeInfo); | 34 Param.pEventSink->On_TextChanged(m_pEngine, m_pEngine->m_ChangeInfo); |
35 m_pEngine->SetCaretPos(m_nCaret, TRUE); | 35 m_pEngine->SetCaretPos(m_nCaret, true); |
36 return TRUE; | 36 return true; |
37 } | 37 } |
38 | 38 |
39 FX_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 } |
OLD | NEW |