| 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/core/cfwl_datetimepicker.h" | 7 #include "xfa/fwl/core/cfwl_datetimepicker.h" |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 CFWL_DateTimePicker::CFWL_DateTimePicker(const CFWL_App* app) | 24 CFWL_DateTimePicker::CFWL_DateTimePicker(const CFWL_App* app) |
| 25 : CFWL_Widget(app) {} | 25 : CFWL_Widget(app) {} |
| 26 | 26 |
| 27 CFWL_DateTimePicker::~CFWL_DateTimePicker() {} | 27 CFWL_DateTimePicker::~CFWL_DateTimePicker() {} |
| 28 | 28 |
| 29 void CFWL_DateTimePicker::Initialize() { | 29 void CFWL_DateTimePicker::Initialize() { |
| 30 ASSERT(!m_pIface); | 30 ASSERT(!m_pIface); |
| 31 | 31 |
| 32 m_pIface = pdfium::MakeUnique<IFWL_DateTimePicker>( | 32 m_pIface = pdfium::MakeUnique<IFWL_DateTimePicker>( |
| 33 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>(this)); | 33 m_pApp, pdfium::MakeUnique<CFWL_WidgetProperties>()); |
| 34 | 34 |
| 35 CFWL_Widget::Initialize(); | 35 CFWL_Widget::Initialize(); |
| 36 } | 36 } |
| 37 | 37 |
| 38 int32_t CFWL_DateTimePicker::CountSelRanges() { | 38 int32_t CFWL_DateTimePicker::CountSelRanges() { |
| 39 return ToDateTimePicker(GetWidget())->CountSelRanges(); | 39 return ToDateTimePicker(GetWidget())->CountSelRanges(); |
| 40 } | 40 } |
| 41 | 41 |
| 42 int32_t CFWL_DateTimePicker::GetSelRange(int32_t nIndex, int32_t& nStart) { | 42 int32_t CFWL_DateTimePicker::GetSelRange(int32_t nIndex, int32_t& nStart) { |
| 43 return ToDateTimePicker(GetWidget())->GetSelRange(nIndex, nStart); | 43 return ToDateTimePicker(GetWidget())->GetSelRange(nIndex, nStart); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 63 | 63 |
| 64 void CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) { | 64 void CFWL_DateTimePicker::SetEditLimit(int32_t nLimit) { |
| 65 ToDateTimePicker(GetWidget())->SetEditLimit(nLimit); | 65 ToDateTimePicker(GetWidget())->SetEditLimit(nLimit); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded, | 68 void CFWL_DateTimePicker::ModifyEditStylesEx(uint32_t dwStylesExAdded, |
| 69 uint32_t dwStylesExRemoved) { | 69 uint32_t dwStylesExRemoved) { |
| 70 ToDateTimePicker(GetWidget()) | 70 ToDateTimePicker(GetWidget()) |
| 71 ->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved); | 71 ->ModifyEditStylesEx(dwStylesExAdded, dwStylesExRemoved); |
| 72 } | 72 } |
| OLD | NEW |