| 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_BASEWIDGET_IFWL_DATETIMEPICKER_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_IFWL_DATETIMEPICKER_H_ |
| 8 #define XFA_FWL_BASEWIDGET_IFWL_DATETIMEPICKER_H_ | 8 #define XFA_FWL_BASEWIDGET_IFWL_DATETIMEPICKER_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/ifwl_widget.h" | 10 #include "xfa/fwl/core/ifwl_widget.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 FX_BOOL CanCut(); | 98 FX_BOOL CanCut(); |
| 99 FX_BOOL CanSelectAll(); | 99 FX_BOOL CanSelectAll(); |
| 100 FX_BOOL Copy(CFX_WideString& wsCopy); | 100 FX_BOOL Copy(CFX_WideString& wsCopy); |
| 101 FX_BOOL Cut(CFX_WideString& wsCut); | 101 FX_BOOL Cut(CFX_WideString& wsCut); |
| 102 FX_BOOL Paste(const CFX_WideString& wsPaste); | 102 FX_BOOL Paste(const CFX_WideString& wsPaste); |
| 103 FX_BOOL SelectAll(); | 103 FX_BOOL SelectAll(); |
| 104 FX_BOOL Delete(); | 104 FX_BOOL Delete(); |
| 105 FX_BOOL DeSelect(); | 105 FX_BOOL DeSelect(); |
| 106 FWL_ERR GetBBox(CFX_RectF& rect); | 106 FWL_ERR GetBBox(CFX_RectF& rect); |
| 107 FWL_ERR SetEditLimit(int32_t nLimit); | 107 FWL_ERR SetEditLimit(int32_t nLimit); |
| 108 FWL_ERR ModifyEditStylesEx(FX_DWORD dwStylesExAdded, | 108 FWL_ERR ModifyEditStylesEx(uint32_t dwStylesExAdded, |
| 109 FX_DWORD dwStylesExRemoved); | 109 uint32_t dwStylesExRemoved); |
| 110 | 110 |
| 111 protected: | 111 protected: |
| 112 IFWL_DateTimePicker(); | 112 IFWL_DateTimePicker(); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 #endif // XFA_FWL_BASEWIDGET_IFWL_DATETIMEPICKER_H_ | 115 #endif // XFA_FWL_BASEWIDGET_IFWL_DATETIMEPICKER_H_ |
| OLD | NEW |