Chromium Code Reviews| 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, public IFWL_DateTimePickerDP { | 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 // IFWL_DataProvider |
| 21 FWL_Error GetEditText(CFX_WideString& wsText); | 21 void GetCaption(IFWL_Widget* pWidget, CFX_WideString& wsCaption) override; |
| 22 FWL_Error SetEditText(const CFX_WideString& wsText); | 22 |
| 23 // IFWL_DateTimePickerDP | |
| 24 void GetToday(IFWL_Widget* pWidget, | |
| 25 int32_t& iYear, | |
| 26 int32_t& iMonth, | |
| 27 int32_t& iDay) override; | |
| 28 | |
| 29 void GetEditText(CFX_WideString& wsText); | |
|
Tom Sepez
2016/11/10 19:50:14
ditto
| |
| 30 void SetEditText(const CFX_WideString& wsText); | |
| 31 | |
| 23 int32_t CountSelRanges(); | 32 int32_t CountSelRanges(); |
| 24 int32_t GetSelRange(int32_t nIndex, int32_t& nStart); | 33 int32_t GetSelRange(int32_t nIndex, int32_t& nStart); |
| 25 FWL_Error GetCurSel(int32_t& iYear, int32_t& iMonth, int32_t& iDay); | 34 |
| 26 FWL_Error SetCurSel(int32_t iYear, int32_t iMonth, int32_t iDay); | 35 void SetCurSel(int32_t iYear, int32_t iMonth, int32_t iDay); |
| 27 bool CanUndo(); | 36 void GetBBox(CFX_RectF& rect); |
|
Tom Sepez
2016/11/10 19:50:14
same with returning a CFX_RectF, we expect copy el
| |
| 28 bool CanRedo(); | 37 void SetEditLimit(int32_t nLimit); |
| 29 bool Undo(); | |
| 30 bool Redo(); | |
| 31 bool CanCopy(); | |
| 32 bool CanCut(); | |
| 33 bool CanSelectAll(); | |
| 34 bool Copy(CFX_WideString& wsCopy); | |
| 35 bool Cut(CFX_WideString& wsCut); | |
| 36 bool Paste(const CFX_WideString& wsPaste); | |
| 37 bool SelectAll(); | |
| 38 bool Delete(); | |
| 39 bool DeSelect(); | |
| 40 FWL_Error GetBBox(CFX_RectF& rect); | |
| 41 FWL_Error SetEditLimit(int32_t nLimit); | |
| 42 void ModifyEditStylesEx(uint32_t dwStylesExAdded, uint32_t dwStylesExRemoved); | 38 void ModifyEditStylesEx(uint32_t dwStylesExAdded, uint32_t dwStylesExRemoved); |
| 43 | 39 |
| 44 // IFWL_DataProvider | |
| 45 FWL_Error GetCaption(IFWL_Widget* pWidget, | |
| 46 CFX_WideString& wsCaption) override; | |
| 47 | |
| 48 // IFWL_DateTimePickerDP | |
| 49 FWL_Error GetToday(IFWL_Widget* pWidget, | |
| 50 int32_t& iYear, | |
| 51 int32_t& iMonth, | |
| 52 int32_t& iDay) override; | |
| 53 | |
| 54 private: | 40 private: |
| 55 int32_t m_iYear; | 41 int32_t m_iYear; |
| 56 int32_t m_iMonth; | 42 int32_t m_iMonth; |
| 57 int32_t m_iDay; | 43 int32_t m_iDay; |
| 58 CFX_WideString m_wsData; | 44 CFX_WideString m_wsData; |
| 59 }; | 45 }; |
| 60 | 46 |
| 61 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 47 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
| OLD | NEW |