John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
Tom Sepez | 19922bb | 2015-05-28 13:23:12 -0700 | [diff] [blame] | 7 | #ifndef FPDFSDK_INCLUDE_FSDK_ACTIONHANDLER_H_ |
| 8 | #define FPDFSDK_INCLUDE_FSDK_ACTIONHANDLER_H_ |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 9 | |
Tom Sepez | 245c80e | 2015-04-08 16:19:33 -0700 | [diff] [blame] | 10 | #include "../../core/include/fpdfdoc/fpdf_doc.h" |
| 11 | #include "../../core/include/fxcrt/fx_string.h" |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 12 | #include "../../third_party/base/nonstd_unique_ptr.h" |
Tom Sepez | 245c80e | 2015-04-08 16:19:33 -0700 | [diff] [blame] | 13 | #include "fsdk_baseform.h" |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 14 | |
Tom Sepez | 245c80e | 2015-04-08 16:19:33 -0700 | [diff] [blame] | 15 | class CFX_PtrList; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 16 | class CPDFDoc_Environment; |
Tom Sepez | 245c80e | 2015-04-08 16:19:33 -0700 | [diff] [blame] | 17 | class CPDFSDK_Annot; |
| 18 | class CPDFSDK_Document; |
| 19 | class CPDF_Bookmark; |
| 20 | class CPDF_Dictionary; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 21 | class IFXJS_Runtime; |
| 22 | |
| 23 | class CPDFSDK_FormActionHandler |
| 24 | { |
| 25 | public: |
| 26 | FX_BOOL DoAction_Hide(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 27 | FX_BOOL DoAction_SubmitForm(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 28 | FX_BOOL DoAction_ResetForm(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 29 | FX_BOOL DoAction_ImportData(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 30 | }; |
| 31 | |
| 32 | class CPDFSDK_MediaActionHandler |
| 33 | { |
| 34 | public: |
| 35 | FX_BOOL DoAction_Rendition(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 36 | FX_BOOL DoAction_Sound(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 37 | FX_BOOL DoAction_Movie(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 38 | }; |
| 39 | |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 40 | class CPDFSDK_ActionHandler |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 41 | { |
| 42 | public: |
| 43 | CPDFSDK_ActionHandler(CPDFDoc_Environment* pEvi); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 44 | |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 45 | void SetMediaActionHandler(CPDFSDK_MediaActionHandler* pHandler); |
| 46 | |
| 47 | FX_BOOL DoAction_DocOpen(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 48 | FX_BOOL DoAction_JavaScript(const CPDF_Action& JsAction,CFX_WideString csJSName, CPDFSDK_Document* pDocument); |
| 49 | FX_BOOL DoAction_Page(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CPDFSDK_Document* pDocument); |
| 50 | FX_BOOL DoAction_Document(const CPDF_Action& action, enum CPDF_AAction::AActionType eType, CPDFSDK_Document* pDocument); |
| 51 | FX_BOOL DoAction_BookMark(CPDF_Bookmark *pBookMark, const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument); |
| 52 | FX_BOOL DoAction_Screen(const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CPDFSDK_Annot* pScreen); |
| 53 | FX_BOOL DoAction_Link(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
| 54 | FX_BOOL DoAction_Field(const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CPDF_FormField* pFormField, PDFSDK_FieldAction& data); |
| 55 | FX_BOOL DoAction_FieldJavaScript(const CPDF_Action& JsAction, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CPDF_FormField* pFormField, PDFSDK_FieldAction& data); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 56 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 57 | private: |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 58 | FX_BOOL ExecuteDocumentOpenAction(const CPDF_Action& action, CPDFSDK_Document* pDocument, CFX_PtrList& list); |
| 59 | FX_BOOL ExecuteDocumentPageAction(const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CFX_PtrList& list); |
| 60 | FX_BOOL ExecuteFieldAction(const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CPDF_FormField* pFormField, PDFSDK_FieldAction& data, CFX_PtrList& list); |
| 61 | FX_BOOL ExecuteScreenAction(const CPDF_Action& action, CPDF_AAction::AActionType type, CPDFSDK_Document* pDocument, CPDFSDK_Annot* pScreen, CFX_PtrList& list); |
| 62 | FX_BOOL ExecuteBookMark(const CPDF_Action& action, CPDFSDK_Document* pDocument, CPDF_Bookmark* pBookmark, CFX_PtrList& list); |
| 63 | FX_BOOL ExecuteLinkAction(const CPDF_Action& action, CPDFSDK_Document* pDocument, CFX_PtrList& list); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 64 | |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 65 | void DoAction_NoJs(const CPDF_Action& action, CPDFSDK_Document* pDocument); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 66 | void RunDocumentPageJavaScript(CPDFSDK_Document* pDocument, CPDF_AAction::AActionType type, const CFX_WideString& script); |
| 67 | void RunDocumentOpenJavaScript(CPDFSDK_Document* pDocument, const CFX_WideString& sScriptName, const CFX_WideString& script); |
| 68 | void RunFieldJavaScript(CPDFSDK_Document* pDocument, CPDF_FormField* pFormField, CPDF_AAction::AActionType type, PDFSDK_FieldAction& data, const CFX_WideString& script); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 69 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 70 | FX_BOOL IsValidField(CPDFSDK_Document* pDocument, CPDF_Dictionary* pFieldDict); |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 71 | FX_BOOL IsValidDocView(CPDFSDK_Document* pDocument); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 72 | |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 73 | void DoAction_GoTo(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 74 | void DoAction_GoToR(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
| 75 | void DoAction_Launch(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
| 76 | void DoAction_URI(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
| 77 | void DoAction_Named(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 78 | void DoAction_SetOCGState(CPDFSDK_Document* pDocument, const CPDF_Action& action); |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 79 | |
Tom Sepez | 2c28619 | 2015-06-18 12:47:11 -0700 | [diff] [blame^] | 80 | nonstd::unique_ptr<CPDFSDK_FormActionHandler> m_pFormActionHandler; |
| 81 | CPDFSDK_MediaActionHandler* m_pMediaActionHandler; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 82 | }; |
| 83 | |
Tom Sepez | 19922bb | 2015-05-28 13:23:12 -0700 | [diff] [blame] | 84 | #endif // FPDFSDK_INCLUDE_FSDK_ACTIONHANDLER_H_ |