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 CFWL_CheckBox* CFWL_CheckBox::Create() { | |
22 return new CFWL_CheckBox; | |
23 } | |
24 | |
25 FWL_Error CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { | 21 FWL_Error CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { |
26 if (m_pIface) | 22 if (m_pIface) |
27 return FWL_Error::Indefinite; | 23 return FWL_Error::Indefinite; |
28 if (pProperties) { | 24 if (pProperties) { |
29 *m_pProperties = *pProperties; | 25 *m_pProperties = *pProperties; |
30 } | 26 } |
31 std::unique_ptr<IFWL_CheckBox> pCheckBox(IFWL_CheckBox::Create( | 27 std::unique_ptr<IFWL_CheckBox> pCheckBox(IFWL_CheckBox::Create( |
32 m_pProperties->MakeWidgetImpProperties(&m_checkboxData), nullptr)); | 28 m_pProperties->MakeWidgetImpProperties(&m_checkboxData), nullptr)); |
33 FWL_Error ret = pCheckBox->Initialize(); | 29 FWL_Error ret = pCheckBox->Initialize(); |
34 if (ret != FWL_Error::Succeeded) { | 30 if (ret != FWL_Error::Succeeded) { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 FWL_Error CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption( | 63 FWL_Error CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption( |
68 IFWL_Widget* pWidget, | 64 IFWL_Widget* pWidget, |
69 CFX_WideString& wsCaption) { | 65 CFX_WideString& wsCaption) { |
70 wsCaption = m_wsCaption; | 66 wsCaption = m_wsCaption; |
71 return FWL_Error::Succeeded; | 67 return FWL_Error::Succeeded; |
72 } | 68 } |
73 | 69 |
74 FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { | 70 FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { |
75 return m_fBoxHeight; | 71 return m_fBoxHeight; |
76 } | 72 } |
OLD | NEW |