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 FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ | 7 #ifndef FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ |
8 #define FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ | 8 #define FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ |
9 | 9 |
10 #include "../../../core/include/fxcrt/fx_string.h" | 10 #include "../../../core/include/fxcrt/fx_string.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 void Destroy(); | 119 void Destroy(); |
120 FX_BOOL IsValid(); | 120 FX_BOOL IsValid(); |
121 | 121 |
122 | 122 |
123 CFX_WideString& Change(); | 123 CFX_WideString& Change(); |
124 CFX_WideString ChangeEx(); | 124 CFX_WideString ChangeEx(); |
125 int CommitKey(); | 125 int CommitKey(); |
126 FX_BOOL FieldFull(); | 126 FX_BOOL FieldFull(); |
127 FX_BOOL KeyDown(); | 127 FX_BOOL KeyDown(); |
128 FX_BOOL Modifier(); | 128 FX_BOOL Modifier(); |
129 » FX_LPCWSTR» » » » Name(); | 129 » const FX_WCHAR*»» » » Name(); |
130 » FX_LPCWSTR» » » » Type(); | 130 » const FX_WCHAR*»» » » Type(); |
131 FX_BOOL& Rc(); | 131 FX_BOOL& Rc(); |
132 int& SelEnd(); | 132 int& SelEnd(); |
133 int& SelStart(); | 133 int& SelStart(); |
134 FX_BOOL Shift(); | 134 FX_BOOL Shift(); |
135 Field* Source(); | 135 Field* Source(); |
136 Field* Target_Field(); | 136 Field* Target_Field(); |
137 CFX_WideString& Value(); | 137 CFX_WideString& Value(); |
138 FX_BOOL WillCommit(); | 138 FX_BOOL WillCommit(); |
139 CFX_WideString TargetName(); | 139 CFX_WideString TargetName(); |
140 | 140 |
(...skipping 23 matching lines...) Expand all Loading... |
164 FX_BOOL* m_pbRc; | 164 FX_BOOL* m_pbRc; |
165 FX_BOOL m_bRcDu; | 165 FX_BOOL m_bRcDu; |
166 | 166 |
167 CPDFSDK_Document* m_pSourceDoc; | 167 CPDFSDK_Document* m_pSourceDoc; |
168 CPDF_Bookmark* m_pTargetBookMark; | 168 CPDF_Bookmark* m_pTargetBookMark; |
169 CPDFSDK_Document* m_pTargetDoc; | 169 CPDFSDK_Document* m_pTargetDoc; |
170 CPDFSDK_Annot* m_pTargetAnnot; | 170 CPDFSDK_Annot* m_pTargetAnnot; |
171 }; | 171 }; |
172 | 172 |
173 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ | 173 #endif // FPDFSDK_INCLUDE_JAVASCRIPT_JS_EVENTHANDLER_H_ |
OLD | NEW |