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 { |
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(); |
24 int32_t GetSelRange(int32_t nIndex, int32_t& nStart); | 24 int32_t GetSelRange(int32_t nIndex, int32_t& nStart); |
25 FWL_Error GetCurSel(int32_t& iYear, int32_t& iMonth, int32_t& iDay); | 25 FWL_Error GetCurSel(int32_t& iYear, int32_t& iMonth, int32_t& iDay); |
26 FWL_Error SetCurSel(int32_t iYear, int32_t iMonth, int32_t iDay); | 26 FWL_Error SetCurSel(int32_t iYear, int32_t iMonth, int32_t iDay); |
27 FX_BOOL CanUndo(); | 27 bool CanUndo(); |
28 FX_BOOL CanRedo(); | 28 bool CanRedo(); |
29 FX_BOOL Undo(); | 29 bool Undo(); |
30 FX_BOOL Redo(); | 30 bool Redo(); |
31 FX_BOOL CanCopy(); | 31 bool CanCopy(); |
32 FX_BOOL CanCut(); | 32 bool CanCut(); |
33 FX_BOOL CanSelectAll(); | 33 bool CanSelectAll(); |
34 FX_BOOL Copy(CFX_WideString& wsCopy); | 34 bool Copy(CFX_WideString& wsCopy); |
35 FX_BOOL Cut(CFX_WideString& wsCut); | 35 bool Cut(CFX_WideString& wsCut); |
36 FX_BOOL Paste(const CFX_WideString& wsPaste); | 36 bool Paste(const CFX_WideString& wsPaste); |
37 FX_BOOL SelectAll(); | 37 bool SelectAll(); |
38 FX_BOOL Delete(); | 38 bool Delete(); |
39 FX_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 protected: |
46 class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { | 46 class CFWL_DateTimePickerDP : public IFWL_DateTimePickerDP { |
47 public: | 47 public: |
48 CFWL_DateTimePickerDP(); | 48 CFWL_DateTimePickerDP(); |
49 | 49 |
50 // IFWL_DataProvider | 50 // IFWL_DataProvider |
51 FWL_Error GetCaption(IFWL_Widget* pWidget, | 51 FWL_Error GetCaption(IFWL_Widget* pWidget, |
52 CFX_WideString& wsCaption) override; | 52 CFX_WideString& wsCaption) override; |
53 | 53 |
54 // IFWL_DateTimePickerDP | 54 // IFWL_DateTimePickerDP |
55 FWL_Error GetToday(IFWL_Widget* pWidget, | 55 FWL_Error GetToday(IFWL_Widget* pWidget, |
56 int32_t& iYear, | 56 int32_t& iYear, |
57 int32_t& iMonth, | 57 int32_t& iMonth, |
58 int32_t& iDay) override; | 58 int32_t& iDay) override; |
59 int32_t m_iYear; | 59 int32_t m_iYear; |
60 int32_t m_iMonth; | 60 int32_t m_iMonth; |
61 int32_t m_iDay; | 61 int32_t m_iDay; |
62 CFX_WideString m_wsData; | 62 CFX_WideString m_wsData; |
63 }; | 63 }; |
64 | 64 |
65 CFWL_DateTimePickerDP m_DateTimePickerDP; | 65 CFWL_DateTimePickerDP m_DateTimePickerDP; |
66 }; | 66 }; |
67 | 67 |
68 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 68 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
OLD | NEW |