| 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_JAVASCRIPT_FIELD_H_ | 7 #ifndef FPDFSDK_JAVASCRIPT_FIELD_H_ |
| 8 #define FPDFSDK_JAVASCRIPT_FIELD_H_ | 8 #define FPDFSDK_JAVASCRIPT_FIELD_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "core/fxcrt/include/cfx_observable.h" | 13 #include "core/fxcrt/include/cfx_observable.h" |
| 14 #include "fpdfsdk/include/fsdk_mgr.h" | 14 #include "fpdfsdk/include/cpdfsdk_document.h" |
| 15 #include "fpdfsdk/javascript/JS_Define.h" | 15 #include "fpdfsdk/javascript/JS_Define.h" |
| 16 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" // For CPWL_Color. | 16 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" // For CPWL_Color. |
| 17 | 17 |
| 18 class CPDFSDK_Widget; | 18 class CPDFSDK_Widget; |
| 19 class Document; | 19 class Document; |
| 20 | 20 |
| 21 enum FIELD_PROP { | 21 enum FIELD_PROP { |
| 22 FP_ALIGNMENT, | 22 FP_ALIGNMENT, |
| 23 FP_BORDERSTYLE, | 23 FP_BORDERSTYLE, |
| 24 FP_BUTTONALIGNX, | 24 FP_BUTTONALIGNX, |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 JS_STATIC_METHOD(setLock, Field); | 551 JS_STATIC_METHOD(setLock, Field); |
| 552 JS_STATIC_METHOD(signatureGetModifications, Field); | 552 JS_STATIC_METHOD(signatureGetModifications, Field); |
| 553 JS_STATIC_METHOD(signatureGetSeedValue, Field); | 553 JS_STATIC_METHOD(signatureGetSeedValue, Field); |
| 554 JS_STATIC_METHOD(signatureInfo, Field); | 554 JS_STATIC_METHOD(signatureInfo, Field); |
| 555 JS_STATIC_METHOD(signatureSetSeedValue, Field); | 555 JS_STATIC_METHOD(signatureSetSeedValue, Field); |
| 556 JS_STATIC_METHOD(signatureSign, Field); | 556 JS_STATIC_METHOD(signatureSign, Field); |
| 557 JS_STATIC_METHOD(signatureValidate, Field); | 557 JS_STATIC_METHOD(signatureValidate, Field); |
| 558 }; | 558 }; |
| 559 | 559 |
| 560 #endif // FPDFSDK_JAVASCRIPT_FIELD_H_ | 560 #endif // FPDFSDK_JAVASCRIPT_FIELD_H_ |
| OLD | NEW |