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> |
11 | 11 |
| 12 CFWL_Edit::CFWL_Edit(const IFWL_App* app) : CFWL_Widget(app) {} |
| 13 |
| 14 CFWL_Edit::~CFWL_Edit() {} |
| 15 |
| 16 void CFWL_Edit::Initialize(const CFWL_WidgetProperties* pProperties) { |
| 17 ASSERT(!m_pIface); |
| 18 |
| 19 if (pProperties) |
| 20 *m_pProperties = *pProperties; |
| 21 |
| 22 std::unique_ptr<IFWL_Edit> pEdit(new IFWL_Edit( |
| 23 m_pApp, m_pProperties->MakeWidgetImpProperties(nullptr), nullptr)); |
| 24 pEdit->Initialize(); |
| 25 |
| 26 m_pIface = std::move(pEdit); |
| 27 CFWL_Widget::Initialize(pProperties); |
| 28 } |
| 29 |
12 IFWL_Edit* CFWL_Edit::GetWidget() { | 30 IFWL_Edit* CFWL_Edit::GetWidget() { |
13 return static_cast<IFWL_Edit*>(m_pIface.get()); | 31 return static_cast<IFWL_Edit*>(m_pIface.get()); |
14 } | 32 } |
15 | 33 |
16 const IFWL_Edit* CFWL_Edit::GetWidget() const { | 34 const IFWL_Edit* CFWL_Edit::GetWidget() const { |
17 return static_cast<IFWL_Edit*>(m_pIface.get()); | 35 return static_cast<IFWL_Edit*>(m_pIface.get()); |
18 } | 36 } |
19 | 37 |
20 FWL_Error CFWL_Edit::Initialize(const CFWL_WidgetProperties* pProperties) { | |
21 if (m_pIface) | |
22 return FWL_Error::Indefinite; | |
23 if (pProperties) { | |
24 *m_pProperties = *pProperties; | |
25 } | |
26 std::unique_ptr<IFWL_Edit> pEdit( | |
27 new IFWL_Edit(m_pProperties->MakeWidgetImpProperties(nullptr), nullptr)); | |
28 FWL_Error ret = pEdit->Initialize(); | |
29 if (ret != FWL_Error::Succeeded) { | |
30 return ret; | |
31 } | |
32 m_pIface = std::move(pEdit); | |
33 CFWL_Widget::Initialize(); | |
34 return FWL_Error::Succeeded; | |
35 } | |
36 | |
37 FWL_Error CFWL_Edit::SetText(const CFX_WideString& wsText) { | 38 FWL_Error CFWL_Edit::SetText(const CFX_WideString& wsText) { |
38 if (!GetWidget()) | 39 if (!GetWidget()) |
39 return FWL_Error::Indefinite; | 40 return FWL_Error::Indefinite; |
40 return GetWidget()->SetText(wsText); | 41 return GetWidget()->SetText(wsText); |
41 } | 42 } |
42 | 43 |
43 int32_t CFWL_Edit::GetTextLength() const { | 44 int32_t CFWL_Edit::GetTextLength() const { |
44 if (!GetWidget()) | 45 if (!GetWidget()) |
45 return 0; | 46 return 0; |
46 return GetWidget()->GetTextLength(); | 47 return GetWidget()->GetTextLength(); |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 | 228 |
228 FX_BOOL CFWL_Edit::GetSuggestWords(CFX_PointF pointf, | 229 FX_BOOL CFWL_Edit::GetSuggestWords(CFX_PointF pointf, |
229 std::vector<CFX_ByteString>& sSuggest) { | 230 std::vector<CFX_ByteString>& sSuggest) { |
230 return GetWidget()->GetSuggestWords(pointf, sSuggest); | 231 return GetWidget()->GetSuggestWords(pointf, sSuggest); |
231 } | 232 } |
232 | 233 |
233 FX_BOOL CFWL_Edit::ReplaceSpellCheckWord(CFX_PointF pointf, | 234 FX_BOOL CFWL_Edit::ReplaceSpellCheckWord(CFX_PointF pointf, |
234 const CFX_ByteStringC& bsReplace) { | 235 const CFX_ByteStringC& bsReplace) { |
235 return GetWidget()->ReplaceSpellCheckWord(pointf, bsReplace); | 236 return GetWidget()->ReplaceSpellCheckWord(pointf, bsReplace); |
236 } | 237 } |
237 | |
238 CFWL_Edit::CFWL_Edit() {} | |
239 | |
240 CFWL_Edit::~CFWL_Edit() {} | |
OLD | NEW |