| 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 #ifndef XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 7 #ifndef XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
| 8 #define XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 8 #define XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/cfwl_widget.h" | 10 #include "xfa/fwl/core/cfwl_widget.h" |
| 11 #include "xfa/fwl/core/ifwl_datetimepicker.h" | 11 #include "xfa/fwl/core/ifwl_datetimepicker.h" |
| 12 | 12 |
| 13 class CFWL_DateTimePicker : public CFWL_Widget { | 13 class CFWL_DateTimePicker : public CFWL_Widget, public IFWL_DateTimePickerDP { |
| 14 public: | 14 public: |
| 15 CFWL_DateTimePicker(const IFWL_App*); | 15 CFWL_DateTimePicker(const IFWL_App*); |
| 16 ~CFWL_DateTimePicker() override; | 16 ~CFWL_DateTimePicker() override; |
| 17 | 17 |
| 18 void Initialize(); | 18 void Initialize(); |
| 19 | 19 |
| 20 FWL_Error SetToday(int32_t iYear, int32_t iMonth, int32_t iDay); | 20 FWL_Error SetToday(int32_t iYear, int32_t iMonth, int32_t iDay); |
| 21 FWL_Error GetEditText(CFX_WideString& wsText); | 21 FWL_Error GetEditText(CFX_WideString& wsText); |
| 22 FWL_Error SetEditText(const CFX_WideString& wsText); | 22 FWL_Error SetEditText(const CFX_WideString& wsText); |
| 23 int32_t CountSelRanges(); | 23 int32_t CountSelRanges(); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 35 bool Cut(CFX_WideString& wsCut); | 35 bool Cut(CFX_WideString& wsCut); |
| 36 bool Paste(const CFX_WideString& wsPaste); | 36 bool Paste(const CFX_WideString& wsPaste); |
| 37 bool SelectAll(); | 37 bool SelectAll(); |
| 38 bool Delete(); | 38 bool Delete(); |
| 39 bool DeSelect(); | 39 bool DeSelect(); |
| 40 FWL_Error GetBBox(CFX_RectF& rect); | 40 FWL_Error GetBBox(CFX_RectF& rect); |
| 41 FWL_Error SetEditLimit(int32_t nLimit); | 41 FWL_Error SetEditLimit(int32_t nLimit); |
| 42 FWL_Error ModifyEditStylesEx(uint32_t dwStylesExAdded, | 42 FWL_Error ModifyEditStylesEx(uint32_t dwStylesExAdded, |
| 43 uint32_t dwStylesExRemoved); | 43 uint32_t dwStylesExRemoved); |
| 44 | 44 |
| 45 protected: | 45 // IFWL_DataProvider |
| 46 class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { | 46 FWL_Error GetCaption(IFWL_Widget* pWidget, |
| 47 public: | 47 CFX_WideString& wsCaption) override; |
| 48 CFWL_DateTimePickerDP(); | |
| 49 | 48 |
| 50 // IFWL_DataProvider | 49 // IFWL_DateTimePickerDP |
| 51 FWL_Error GetCaption(IFWL_Widget* pWidget, | 50 FWL_Error GetToday(IFWL_Widget* pWidget, |
| 52 CFX_WideString& wsCaption) override; | 51 int32_t& iYear, |
| 52 int32_t& iMonth, |
| 53 int32_t& iDay) override; |
| 53 | 54 |
| 54 // IFWL_DateTimePickerDP | 55 private: |
| 55 FWL_Error GetToday(IFWL_Widget* pWidget, | 56 int32_t m_iYear; |
| 56 int32_t& iYear, | 57 int32_t m_iMonth; |
| 57 int32_t& iMonth, | 58 int32_t m_iDay; |
| 58 int32_t& iDay) override; | 59 CFX_WideString m_wsData; |
| 59 int32_t m_iYear; | |
| 60 int32_t m_iMonth; | |
| 61 int32_t m_iDay; | |
| 62 CFX_WideString m_wsData; | |
| 63 }; | |
| 64 | |
| 65 CFWL_DateTimePickerDP m_DateTimePickerDP; | |
| 66 }; | 60 }; |
| 67 | 61 |
| 68 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 62 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
| OLD | NEW |