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" |
(...skipping 21 matching lines...) Expand all Loading... |
32 bool CanCut(); | 32 bool CanCut(); |
33 bool CanSelectAll(); | 33 bool CanSelectAll(); |
34 bool Copy(CFX_WideString& wsCopy); | 34 bool Copy(CFX_WideString& wsCopy); |
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 void ModifyEditStylesEx(uint32_t dwStylesExAdded, uint32_t dwStylesExRemoved); |
43 uint32_t dwStylesExRemoved); | |
44 | 43 |
45 // IFWL_DataProvider | 44 // IFWL_DataProvider |
46 FWL_Error GetCaption(IFWL_Widget* pWidget, | 45 FWL_Error GetCaption(IFWL_Widget* pWidget, |
47 CFX_WideString& wsCaption) override; | 46 CFX_WideString& wsCaption) override; |
48 | 47 |
49 // IFWL_DateTimePickerDP | 48 // IFWL_DateTimePickerDP |
50 FWL_Error GetToday(IFWL_Widget* pWidget, | 49 FWL_Error GetToday(IFWL_Widget* pWidget, |
51 int32_t& iYear, | 50 int32_t& iYear, |
52 int32_t& iMonth, | 51 int32_t& iMonth, |
53 int32_t& iDay) override; | 52 int32_t& iDay) override; |
54 | 53 |
55 private: | 54 private: |
56 int32_t m_iYear; | 55 int32_t m_iYear; |
57 int32_t m_iMonth; | 56 int32_t m_iMonth; |
58 int32_t m_iDay; | 57 int32_t m_iDay; |
59 CFX_WideString m_wsData; | 58 CFX_WideString m_wsData; |
60 }; | 59 }; |
61 | 60 |
62 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ | 61 #endif // XFA_FWL_CORE_CFWL_DATETIMEPICKER_H_ |
OLD | NEW |