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_EDIT_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ |
8 #define XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ | 8 #define XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "xfa/include/fwl/lightwidget/widget.h" | |
13 #include "xfa/fwl/core/ifwl_dataprovider.h" | 12 #include "xfa/fwl/core/ifwl_dataprovider.h" |
| 13 #include "xfa/fwl/lightwidget/cfwl_widget.h" |
14 | 14 |
15 #define FWL_CLASS_Edit L"FWL_EDIT" | 15 #define FWL_CLASS_Edit L"FWL_EDIT" |
16 #define FWL_CLASSHASH_Edit 2893987822 | 16 #define FWL_CLASSHASH_Edit 2893987822 |
17 #define FWL_STYLEEXT_EDT_ReadOnly (1L << 0) | 17 #define FWL_STYLEEXT_EDT_ReadOnly (1L << 0) |
18 #define FWL_STYLEEXT_EDT_MultiLine (1L << 1) | 18 #define FWL_STYLEEXT_EDT_MultiLine (1L << 1) |
19 #define FWL_STYLEEXT_EDT_WantReturn (1L << 2) | 19 #define FWL_STYLEEXT_EDT_WantReturn (1L << 2) |
20 #define FWL_STYLEEXT_EDT_NoHideSel (1L << 3) | 20 #define FWL_STYLEEXT_EDT_NoHideSel (1L << 3) |
21 #define FWL_STYLEEXT_EDT_AutoHScroll (1L << 4) | 21 #define FWL_STYLEEXT_EDT_AutoHScroll (1L << 4) |
22 #define FWL_STYLEEXT_EDT_AutoVScroll (1L << 5) | 22 #define FWL_STYLEEXT_EDT_AutoVScroll (1L << 5) |
23 #define FWL_STYLEEXT_EDT_NoRedoUndo (1L << 6) | 23 #define FWL_STYLEEXT_EDT_NoRedoUndo (1L << 6) |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 FX_BOOL GetSuggestWords(CFX_PointF pointf, | 169 FX_BOOL GetSuggestWords(CFX_PointF pointf, |
170 std::vector<CFX_ByteString>& sSuggest); | 170 std::vector<CFX_ByteString>& sSuggest); |
171 FX_BOOL ReplaceSpellCheckWord(CFX_PointF pointf, | 171 FX_BOOL ReplaceSpellCheckWord(CFX_PointF pointf, |
172 const CFX_ByteStringC& bsReplace); | 172 const CFX_ByteStringC& bsReplace); |
173 | 173 |
174 protected: | 174 protected: |
175 IFWL_Edit(); | 175 IFWL_Edit(); |
176 }; | 176 }; |
177 | 177 |
178 #endif // XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ | 178 #endif // XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ |
OLD | NEW |