| 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/lightwidget/cfwl_checkbox.h" | 7 #include "xfa/fwl/lightwidget/cfwl_checkbox.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "xfa/fwl/core/fwl_error.h" | 11 #include "xfa/fwl/core/fwl_error.h" |
| 12 | 12 |
| 13 IFWL_CheckBox* CFWL_CheckBox::GetWidget() { | 13 IFWL_CheckBox* CFWL_CheckBox::GetWidget() { |
| 14 return static_cast<IFWL_CheckBox*>(m_pIface.get()); | 14 return static_cast<IFWL_CheckBox*>(m_pIface.get()); |
| 15 } | 15 } |
| 16 | 16 |
| 17 const IFWL_CheckBox* CFWL_CheckBox::GetWidget() const { | 17 const IFWL_CheckBox* CFWL_CheckBox::GetWidget() const { |
| 18 return static_cast<IFWL_CheckBox*>(m_pIface.get()); | 18 return static_cast<IFWL_CheckBox*>(m_pIface.get()); |
| 19 } | 19 } |
| 20 | 20 |
| 21 FWL_Error CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { | 21 FWL_Error CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { |
| 22 if (m_pIface) | 22 if (m_pIface) |
| 23 return FWL_Error::Indefinite; | 23 return FWL_Error::Indefinite; |
| 24 if (pProperties) { | 24 if (pProperties) { |
| 25 *m_pProperties = *pProperties; | 25 *m_pProperties = *pProperties; |
| 26 } | 26 } |
| 27 std::unique_ptr<IFWL_CheckBox> pCheckBox(IFWL_CheckBox::Create( | 27 std::unique_ptr<IFWL_CheckBox> pCheckBox(new IFWL_CheckBox( |
| 28 m_pProperties->MakeWidgetImpProperties(&m_checkboxData), nullptr)); | 28 m_pProperties->MakeWidgetImpProperties(&m_checkboxData))); |
| 29 FWL_Error ret = pCheckBox->Initialize(); | 29 FWL_Error ret = pCheckBox->Initialize(); |
| 30 if (ret != FWL_Error::Succeeded) { | 30 if (ret != FWL_Error::Succeeded) { |
| 31 return ret; | 31 return ret; |
| 32 } | 32 } |
| 33 m_pIface = std::move(pCheckBox); | 33 m_pIface = std::move(pCheckBox); |
| 34 CFWL_Widget::Initialize(); | 34 CFWL_Widget::Initialize(); |
| 35 return FWL_Error::Succeeded; | 35 return FWL_Error::Succeeded; |
| 36 } | 36 } |
| 37 | 37 |
| 38 FWL_Error CFWL_CheckBox::SetCaption(const CFX_WideStringC& wsCaption) { | 38 FWL_Error CFWL_CheckBox::SetCaption(const CFX_WideStringC& wsCaption) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 63 FWL_Error CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption( | 63 FWL_Error CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption( |
| 64 IFWL_Widget* pWidget, | 64 IFWL_Widget* pWidget, |
| 65 CFX_WideString& wsCaption) { | 65 CFX_WideString& wsCaption) { |
| 66 wsCaption = m_wsCaption; | 66 wsCaption = m_wsCaption; |
| 67 return FWL_Error::Succeeded; | 67 return FWL_Error::Succeeded; |
| 68 } | 68 } |
| 69 | 69 |
| 70 FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { | 70 FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { |
| 71 return m_fBoxHeight; | 71 return m_fBoxHeight; |
| 72 } | 72 } |
| OLD | NEW |