| 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/include/fwl/lightwidget/caret.h" | 7 #include "xfa/fwl/lightwidget/cfwl_caret.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "xfa/fwl/basewidget/ifwl_caret.h" | 11 #include "xfa/fwl/basewidget/ifwl_caret.h" |
| 12 #include "xfa/fwl/core/fwl_targetimp.h" | 12 #include "xfa/fwl/core/fwl_targetimp.h" |
| 13 #include "xfa/fxgraphics/cfx_color.h" | 13 #include "xfa/fxgraphics/cfx_color.h" |
| 14 #include "xfa/include/fwl/lightwidget/edit.h" | 14 #include "xfa/fwl/lightwidget/cfwl_edit.h" |
| 15 | 15 |
| 16 CFWL_Caret* CFWL_Caret::Create() { | 16 CFWL_Caret* CFWL_Caret::Create() { |
| 17 return new CFWL_Caret; | 17 return new CFWL_Caret; |
| 18 } | 18 } |
| 19 |
| 19 FWL_ERR CFWL_Caret::Initialize(const CFWL_WidgetProperties* pProperties) { | 20 FWL_ERR CFWL_Caret::Initialize(const CFWL_WidgetProperties* pProperties) { |
| 20 if (m_pIface) | 21 if (m_pIface) |
| 21 return FWL_ERR_Indefinite; | 22 return FWL_ERR_Indefinite; |
| 22 if (pProperties) { | 23 if (pProperties) { |
| 23 *m_pProperties = *pProperties; | 24 *m_pProperties = *pProperties; |
| 24 } | 25 } |
| 25 std::unique_ptr<IFWL_Caret> pCaret(IFWL_Caret::Create( | 26 std::unique_ptr<IFWL_Caret> pCaret(IFWL_Caret::Create( |
| 26 m_pProperties->MakeWidgetImpProperties(nullptr), nullptr)); | 27 m_pProperties->MakeWidgetImpProperties(nullptr), nullptr)); |
| 27 FWL_ERR ret = pCaret->Initialize(); | 28 FWL_ERR ret = pCaret->Initialize(); |
| 28 if (ret != FWL_ERR_Succeeded) { | 29 if (ret != FWL_ERR_Succeeded) { |
| 29 return ret; | 30 return ret; |
| 30 } | 31 } |
| 31 m_pIface = pCaret.release(); | 32 m_pIface = pCaret.release(); |
| 32 CFWL_Widget::Initialize(); | 33 CFWL_Widget::Initialize(); |
| 33 return FWL_ERR_Succeeded; | 34 return FWL_ERR_Succeeded; |
| 34 } | 35 } |
| 36 |
| 35 FWL_ERR CFWL_Caret::ShowCaret(FX_BOOL bFlag) { | 37 FWL_ERR CFWL_Caret::ShowCaret(FX_BOOL bFlag) { |
| 36 return static_cast<IFWL_Caret*>(m_pIface)->ShowCaret(bFlag); | 38 return static_cast<IFWL_Caret*>(m_pIface)->ShowCaret(bFlag); |
| 37 } | 39 } |
| 40 |
| 38 FWL_ERR CFWL_Caret::GetFrequency(uint32_t& elapse) { | 41 FWL_ERR CFWL_Caret::GetFrequency(uint32_t& elapse) { |
| 39 return static_cast<IFWL_Caret*>(m_pIface)->GetFrequency(elapse); | 42 return static_cast<IFWL_Caret*>(m_pIface)->GetFrequency(elapse); |
| 40 } | 43 } |
| 44 |
| 41 FWL_ERR CFWL_Caret::SetFrequency(uint32_t elapse) { | 45 FWL_ERR CFWL_Caret::SetFrequency(uint32_t elapse) { |
| 42 return static_cast<IFWL_Caret*>(m_pIface)->SetFrequency(elapse); | 46 return static_cast<IFWL_Caret*>(m_pIface)->SetFrequency(elapse); |
| 43 } | 47 } |
| 48 |
| 44 FWL_ERR CFWL_Caret::SetColor(CFX_Color crFill) { | 49 FWL_ERR CFWL_Caret::SetColor(CFX_Color crFill) { |
| 45 return static_cast<IFWL_Caret*>(m_pIface)->SetColor(crFill); | 50 return static_cast<IFWL_Caret*>(m_pIface)->SetColor(crFill); |
| 46 } | 51 } |
| 52 |
| 47 CFWL_Caret::CFWL_Caret() {} | 53 CFWL_Caret::CFWL_Caret() {} |
| 54 |
| 48 CFWL_Caret::~CFWL_Caret() {} | 55 CFWL_Caret::~CFWL_Caret() {} |
| OLD | NEW |