OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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/fwl/core/cfwl_edit.h" | 7 #include "xfa/fwl/core/cfwl_edit.h" |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <vector> | 10 #include <vector> |
(...skipping 13 matching lines...) Expand all Loading... |
24 } // namespace | 24 } // namespace |
25 | 25 |
26 CFWL_Edit::CFWL_Edit(const IFWL_App* app) : CFWL_Widget(app) {} | 26 CFWL_Edit::CFWL_Edit(const IFWL_App* app) : CFWL_Widget(app) {} |
27 | 27 |
28 CFWL_Edit::~CFWL_Edit() {} | 28 CFWL_Edit::~CFWL_Edit() {} |
29 | 29 |
30 void CFWL_Edit::Initialize() { | 30 void CFWL_Edit::Initialize() { |
31 ASSERT(!m_pIface); | 31 ASSERT(!m_pIface); |
32 | 32 |
33 m_pIface = pdfium::MakeUnique<IFWL_Edit>( | 33 m_pIface = pdfium::MakeUnique<IFWL_Edit>( |
34 m_pApp, m_pProperties->MakeWidgetImpProperties(nullptr), nullptr); | 34 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(), nullptr); |
35 | 35 |
36 CFWL_Widget::Initialize(); | 36 CFWL_Widget::Initialize(); |
37 } | 37 } |
38 | 38 |
39 FWL_Error CFWL_Edit::SetText(const CFX_WideString& wsText) { | 39 FWL_Error CFWL_Edit::SetText(const CFX_WideString& wsText) { |
40 if (!GetWidget()) | 40 if (!GetWidget()) |
41 return FWL_Error::Indefinite; | 41 return FWL_Error::Indefinite; |
42 return ToEdit(GetWidget())->SetText(wsText); | 42 return ToEdit(GetWidget())->SetText(wsText); |
43 } | 43 } |
44 | 44 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 | 228 |
229 bool CFWL_Edit::GetSuggestWords(CFX_PointF pointf, | 229 bool CFWL_Edit::GetSuggestWords(CFX_PointF pointf, |
230 std::vector<CFX_ByteString>& sSuggest) { | 230 std::vector<CFX_ByteString>& sSuggest) { |
231 return ToEdit(GetWidget())->GetSuggestWords(pointf, sSuggest); | 231 return ToEdit(GetWidget())->GetSuggestWords(pointf, sSuggest); |
232 } | 232 } |
233 | 233 |
234 bool CFWL_Edit::ReplaceSpellCheckWord(CFX_PointF pointf, | 234 bool CFWL_Edit::ReplaceSpellCheckWord(CFX_PointF pointf, |
235 const CFX_ByteStringC& bsReplace) { | 235 const CFX_ByteStringC& bsReplace) { |
236 return ToEdit(GetWidget())->ReplaceSpellCheckWord(pointf, bsReplace); | 236 return ToEdit(GetWidget())->ReplaceSpellCheckWord(pointf, bsReplace); |
237 } | 237 } |
OLD | NEW |