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_COMBOBOX_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_IFWL_COMBOBOX_H_ |
8 #define XFA_FWL_BASEWIDGET_IFWL_COMBOBOX_H_ | 8 #define XFA_FWL_BASEWIDGET_IFWL_COMBOBOX_H_ |
9 | 9 |
10 #include "xfa/fwl/basewidget/ifwl_listbox.h" | 10 #include "xfa/fwl/basewidget/ifwl_listbox.h" |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 FX_BOOL EditCanCopy(); | 135 FX_BOOL EditCanCopy(); |
136 FX_BOOL EditCanCut(); | 136 FX_BOOL EditCanCut(); |
137 FX_BOOL EditCanSelectAll(); | 137 FX_BOOL EditCanSelectAll(); |
138 FX_BOOL EditCopy(CFX_WideString& wsCopy); | 138 FX_BOOL EditCopy(CFX_WideString& wsCopy); |
139 FX_BOOL EditCut(CFX_WideString& wsCut); | 139 FX_BOOL EditCut(CFX_WideString& wsCut); |
140 FX_BOOL EditPaste(const CFX_WideString& wsPaste); | 140 FX_BOOL EditPaste(const CFX_WideString& wsPaste); |
141 FX_BOOL EditSelectAll(); | 141 FX_BOOL EditSelectAll(); |
142 FX_BOOL EditDelete(); | 142 FX_BOOL EditDelete(); |
143 FX_BOOL EditDeSelect(); | 143 FX_BOOL EditDeSelect(); |
144 FWL_ERR GetBBox(CFX_RectF& rect); | 144 FWL_ERR GetBBox(CFX_RectF& rect); |
145 FWL_ERR EditModifyStylesEx(FX_DWORD dwStylesExAdded, | 145 FWL_ERR EditModifyStylesEx(uint32_t dwStylesExAdded, |
146 FX_DWORD dwStylesExRemoved); | 146 uint32_t dwStylesExRemoved); |
147 | 147 |
148 protected: | 148 protected: |
149 IFWL_ComboBox(); | 149 IFWL_ComboBox(); |
150 }; | 150 }; |
151 | 151 |
152 #endif // XFA_FWL_BASEWIDGET_IFWL_COMBOBOX_H_ | 152 #endif // XFA_FWL_BASEWIDGET_IFWL_COMBOBOX_H_ |
OLD | NEW |