OLD | NEW |
| (Empty) |
1 // Copyright 2014 PDFium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | |
6 | |
7 #include "xfa/fwl/lightwidget/cfwl_checkbox.h" | |
8 | |
9 #include <memory> | |
10 | |
11 #include "xfa/fwl/core/fwl_error.h" | |
12 | |
13 IFWL_CheckBox* CFWL_CheckBox::GetWidget() { | |
14 return static_cast<IFWL_CheckBox*>(m_pIface.get()); | |
15 } | |
16 | |
17 const IFWL_CheckBox* CFWL_CheckBox::GetWidget() const { | |
18 return static_cast<IFWL_CheckBox*>(m_pIface.get()); | |
19 } | |
20 | |
21 FWL_Error CFWL_CheckBox::Initialize(const CFWL_WidgetProperties* pProperties) { | |
22 if (m_pIface) | |
23 return FWL_Error::Indefinite; | |
24 if (pProperties) { | |
25 *m_pProperties = *pProperties; | |
26 } | |
27 std::unique_ptr<IFWL_CheckBox> pCheckBox(new IFWL_CheckBox( | |
28 m_pProperties->MakeWidgetImpProperties(&m_checkboxData))); | |
29 FWL_Error ret = pCheckBox->Initialize(); | |
30 if (ret != FWL_Error::Succeeded) { | |
31 return ret; | |
32 } | |
33 m_pIface = std::move(pCheckBox); | |
34 CFWL_Widget::Initialize(); | |
35 return FWL_Error::Succeeded; | |
36 } | |
37 | |
38 FWL_Error CFWL_CheckBox::SetCaption(const CFX_WideStringC& wsCaption) { | |
39 m_checkboxData.m_wsCaption = wsCaption; | |
40 return FWL_Error::Succeeded; | |
41 } | |
42 | |
43 FWL_Error CFWL_CheckBox::SetBoxSize(FX_FLOAT fHeight) { | |
44 m_checkboxData.m_fBoxHeight = fHeight; | |
45 return FWL_Error::Succeeded; | |
46 } | |
47 | |
48 int32_t CFWL_CheckBox::GetCheckState() { | |
49 return GetWidget()->GetCheckState(); | |
50 } | |
51 | |
52 FWL_Error CFWL_CheckBox::SetCheckState(int32_t iCheck) { | |
53 return GetWidget()->SetCheckState(iCheck); | |
54 } | |
55 | |
56 CFWL_CheckBox::CFWL_CheckBox() {} | |
57 | |
58 CFWL_CheckBox::~CFWL_CheckBox() {} | |
59 | |
60 CFWL_CheckBox::CFWL_CheckBoxDP::CFWL_CheckBoxDP() | |
61 : m_fBoxHeight(16.0f), m_wsCaption(L"Check box") {} | |
62 | |
63 FWL_Error CFWL_CheckBox::CFWL_CheckBoxDP::GetCaption( | |
64 IFWL_Widget* pWidget, | |
65 CFX_WideString& wsCaption) { | |
66 wsCaption = m_wsCaption; | |
67 return FWL_Error::Succeeded; | |
68 } | |
69 | |
70 FX_FLOAT CFWL_CheckBox::CFWL_CheckBoxDP::GetBoxSize(IFWL_Widget* pWidget) { | |
71 return m_fBoxHeight; | |
72 } | |
OLD | NEW |