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/fwl/core/cfwl_event.h" | 12 #include "xfa/fwl/core/cfwl_event.h" |
13 #include "xfa/fwl/core/ifwl_dataprovider.h" | 13 #include "xfa/fwl/core/ifwl_dataprovider.h" |
14 #include "xfa/fwl/lightwidget/cfwl_widget.h" | 14 #include "xfa/fwl/lightwidget/cfwl_widget.h" |
15 | 15 |
16 #define FWL_CLASS_Edit L"FWL_EDIT" | 16 #define FWL_CLASS_Edit L"FWL_EDIT" |
17 #define FWL_CLASSHASH_Edit 2893987822 | |
18 #define FWL_STYLEEXT_EDT_ReadOnly (1L << 0) | 17 #define FWL_STYLEEXT_EDT_ReadOnly (1L << 0) |
19 #define FWL_STYLEEXT_EDT_MultiLine (1L << 1) | 18 #define FWL_STYLEEXT_EDT_MultiLine (1L << 1) |
20 #define FWL_STYLEEXT_EDT_WantReturn (1L << 2) | 19 #define FWL_STYLEEXT_EDT_WantReturn (1L << 2) |
21 #define FWL_STYLEEXT_EDT_NoHideSel (1L << 3) | 20 #define FWL_STYLEEXT_EDT_NoHideSel (1L << 3) |
22 #define FWL_STYLEEXT_EDT_AutoHScroll (1L << 4) | 21 #define FWL_STYLEEXT_EDT_AutoHScroll (1L << 4) |
23 #define FWL_STYLEEXT_EDT_AutoVScroll (1L << 5) | 22 #define FWL_STYLEEXT_EDT_AutoVScroll (1L << 5) |
24 #define FWL_STYLEEXT_EDT_NoRedoUndo (1L << 6) | 23 #define FWL_STYLEEXT_EDT_NoRedoUndo (1L << 6) |
25 #define FWL_STYLEEXT_EDT_Validate (1L << 7) | 24 #define FWL_STYLEEXT_EDT_Validate (1L << 7) |
26 #define FWL_STYLEEXT_EDT_Password (1L << 8) | 25 #define FWL_STYLEEXT_EDT_Password (1L << 8) |
27 #define FWL_STYLEEXT_EDT_Number (1L << 9) | 26 #define FWL_STYLEEXT_EDT_Number (1L << 9) |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 FX_BOOL GetSuggestWords(CFX_PointF pointf, | 146 FX_BOOL GetSuggestWords(CFX_PointF pointf, |
148 std::vector<CFX_ByteString>& sSuggest); | 147 std::vector<CFX_ByteString>& sSuggest); |
149 FX_BOOL ReplaceSpellCheckWord(CFX_PointF pointf, | 148 FX_BOOL ReplaceSpellCheckWord(CFX_PointF pointf, |
150 const CFX_ByteStringC& bsReplace); | 149 const CFX_ByteStringC& bsReplace); |
151 | 150 |
152 protected: | 151 protected: |
153 IFWL_Edit(); | 152 IFWL_Edit(); |
154 }; | 153 }; |
155 | 154 |
156 #endif // XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ | 155 #endif // XFA_FWL_BASEWIDGET_IFWL_EDIT_H_ |
OLD | NEW |