| 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_datetimepicker.h" | 7 #include "xfa/fwl/lightwidget/cfwl_datetimepicker.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "third_party/base/ptr_util.h" |
| 11 #include "xfa/fwl/core/fwl_error.h" | 12 #include "xfa/fwl/core/fwl_error.h" |
| 12 #include "xfa/fwl/core/ifwl_datetimepicker.h" | 13 #include "xfa/fwl/core/ifwl_datetimepicker.h" |
| 13 #include "xfa/fwl/core/ifwl_widget.h" | 14 #include "xfa/fwl/core/ifwl_widget.h" |
| 14 | 15 |
| 15 IFWL_DateTimePicker* CFWL_DateTimePicker::GetWidget() { | 16 IFWL_DateTimePicker* CFWL_DateTimePicker::GetWidget() { |
| 16 return static_cast<IFWL_DateTimePicker*>(m_pIface.get()); | 17 return static_cast<IFWL_DateTimePicker*>(m_pIface.get()); |
| 17 } | 18 } |
| 18 | 19 |
| 19 const IFWL_DateTimePicker* CFWL_DateTimePicker::GetWidget() const { | 20 const IFWL_DateTimePicker* CFWL_DateTimePicker::GetWidget() const { |
| 20 return static_cast<IFWL_DateTimePicker*>(m_pIface.get()); | 21 return static_cast<IFWL_DateTimePicker*>(m_pIface.get()); |
| 21 } | 22 } |
| 22 | 23 |
| 23 FWL_Error CFWL_DateTimePicker::Initialize( | 24 FWL_Error CFWL_DateTimePicker::Initialize( |
| 24 const CFWL_WidgetProperties* pProperties) { | 25 const CFWL_WidgetProperties* pProperties) { |
| 25 if (m_pIface) | 26 if (m_pIface) |
| 26 return FWL_Error::Indefinite; | 27 return FWL_Error::Indefinite; |
| 27 if (pProperties) { | 28 if (pProperties) { |
| 28 *m_pProperties = *pProperties; | 29 *m_pProperties = *pProperties; |
| 29 } | 30 } |
| 30 std::unique_ptr<IFWL_DateTimePicker> pDateTimePicker( | 31 std::unique_ptr<IFWL_DateTimePicker> pDateTimePicker = |
| 31 IFWL_DateTimePicker::Create( | 32 pdfium::MakeUnique<IFWL_DateTimePicker>( |
| 32 m_pProperties->MakeWidgetImpProperties(&m_DateTimePickerDP), | 33 m_pProperties->MakeWidgetImpProperties(&m_DateTimePickerDP)); |
| 33 nullptr)); | |
| 34 FWL_Error ret = pDateTimePicker->Initialize(); | 34 FWL_Error ret = pDateTimePicker->Initialize(); |
| 35 if (ret != FWL_Error::Succeeded) { | 35 if (ret != FWL_Error::Succeeded) { |
| 36 return ret; | 36 return ret; |
| 37 } | 37 } |
| 38 m_pIface = std::move(pDateTimePicker); | 38 m_pIface = std::move(pDateTimePicker); |
| 39 CFWL_Widget::Initialize(); | 39 CFWL_Widget::Initialize(); |
| 40 return FWL_Error::Succeeded; | 40 return FWL_Error::Succeeded; |
| 41 } | 41 } |
| 42 | 42 |
| 43 FWL_Error CFWL_DateTimePicker::SetToday(int32_t iYear, | 43 FWL_Error CFWL_DateTimePicker::SetToday(int32_t iYear, |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 } | 162 } |
| 163 | 163 |
| 164 FWL_Error CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) { | 164 FWL_Error CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) { |
| 165 return GetWidget()->SetEditLimit(nLimit); | 165 return GetWidget()->SetEditLimit(nLimit); |
| 166 } | 166 } |
| 167 | 167 |
| 168 FWL_Error CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded, | 168 FWL_Error CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded, |
| 169 uint32_t dwStylesExRemoved) { | 169 uint32_t dwStylesExRemoved) { |
| 170 return GetWidget()->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved); | 170 return GetWidget()->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved); |
| 171 } | 171 } |
| OLD | NEW |