jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 1 | // Copyright 2016 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. |
| 4 | |
| 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 7 | #ifndef FPDFSDK_CPDFSDK_INTERFORM_H_ |
| 8 | #define FPDFSDK_CPDFSDK_INTERFORM_H_ |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 9 | |
| 10 | #include <map> |
Dan Sinclair | 85c8e7f | 2016-11-21 13:50:32 -0500 | [diff] [blame] | 11 | #include <memory> |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 12 | #include <vector> |
| 13 | |
dsinclair | 1727aee | 2016-09-29 13:12:56 -0700 | [diff] [blame] | 14 | #include "core/fpdfdoc/cpdf_action.h" |
| 15 | #include "core/fpdfdoc/ipdf_formnotify.h" |
Dan Sinclair | aee0db0 | 2017-09-21 16:53:58 -0400 | [diff] [blame] | 16 | #include "core/fxcrt/unowned_ptr.h" |
dsinclair | 74a34fc | 2016-09-29 16:41:42 -0700 | [diff] [blame] | 17 | #include "core/fxge/fx_dib.h" |
tsepez | 8fa8279 | 2017-01-11 09:32:33 -0800 | [diff] [blame] | 18 | #include "fpdfsdk/cpdfsdk_widget.h" |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 19 | |
| 20 | class CPDF_Dictionary; |
| 21 | class CPDF_FormControl; |
| 22 | class CPDF_FormField; |
| 23 | class CPDF_InterForm; |
| 24 | class CPDF_Object; |
dsinclair | 690c033 | 2016-10-11 09:13:01 -0700 | [diff] [blame] | 25 | class CPDFSDK_FormFillEnvironment; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 26 | |
| 27 | #ifdef PDF_ENABLE_XFA |
| 28 | class CPDFSDK_XFAWidget; |
| 29 | class CXFA_FFWidget; |
| 30 | #endif // PDF_ENABLE_XFA |
| 31 | |
| 32 | class CPDFSDK_InterForm : public IPDF_FormNotify { |
| 33 | public: |
dsinclair | 690c033 | 2016-10-11 09:13:01 -0700 | [diff] [blame] | 34 | explicit CPDFSDK_InterForm(CPDFSDK_FormFillEnvironment* pFormFillEnv); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 35 | ~CPDFSDK_InterForm() override; |
| 36 | |
| 37 | CPDF_InterForm* GetInterForm() const { return m_pInterForm.get(); } |
Tom Sepez | cc20513 | 2017-05-16 14:01:47 -0700 | [diff] [blame] | 38 | CPDFSDK_FormFillEnvironment* GetFormFillEnv() const { |
| 39 | return m_pFormFillEnv.Get(); |
| 40 | } |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 41 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 42 | bool HighlightWidgets(); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 43 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 44 | CPDFSDK_Widget* GetSibling(CPDFSDK_Widget* pWidget, bool bNext) const; |
dsinclair | c5267c5 | 2016-11-04 15:35:12 -0700 | [diff] [blame] | 45 | CPDFSDK_Widget* GetWidget(CPDF_FormControl* pControl) const; |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 46 | void GetWidgets(const WideString& sFieldName, |
tsepez | 8fa8279 | 2017-01-11 09:32:33 -0800 | [diff] [blame] | 47 | std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 48 | void GetWidgets(CPDF_FormField* pField, |
tsepez | 8fa8279 | 2017-01-11 09:32:33 -0800 | [diff] [blame] | 49 | std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 50 | |
| 51 | void AddMap(CPDF_FormControl* pControl, CPDFSDK_Widget* pWidget); |
| 52 | void RemoveMap(CPDF_FormControl* pControl); |
| 53 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 54 | void EnableCalculate(bool bEnabled); |
| 55 | bool IsCalculateEnabled() const; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 56 | |
| 57 | #ifdef PDF_ENABLE_XFA |
| 58 | void AddXFAMap(CXFA_FFWidget* hWidget, CPDFSDK_XFAWidget* pWidget); |
| 59 | void RemoveXFAMap(CXFA_FFWidget* hWidget); |
| 60 | CPDFSDK_XFAWidget* GetXFAWidget(CXFA_FFWidget* hWidget); |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 61 | void XfaEnableCalculate(bool bEnabled); |
| 62 | bool IsXfaCalculateEnabled() const; |
| 63 | bool IsXfaValidationsEnabled(); |
| 64 | void XfaSetValidationsEnabled(bool bEnabled); |
| 65 | void SynchronizeField(CPDF_FormField* pFormField, bool bSynchronizeElse); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 66 | #endif // PDF_ENABLE_XFA |
| 67 | |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 68 | bool OnKeyStrokeCommit(CPDF_FormField* pFormField, const WideString& csValue); |
| 69 | bool OnValidate(CPDF_FormField* pFormField, const WideString& csValue); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 70 | void OnCalculate(CPDF_FormField* pFormField = nullptr); |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 71 | WideString OnFormat(CPDF_FormField* pFormField, bool& bFormatted); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 72 | |
| 73 | void ResetFieldAppearance(CPDF_FormField* pFormField, |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 74 | const WideString* sValue, |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 75 | bool bValueChanged); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 76 | void UpdateField(CPDF_FormField* pFormField); |
| 77 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 78 | bool DoAction_Hide(const CPDF_Action& action); |
| 79 | bool DoAction_SubmitForm(const CPDF_Action& action); |
| 80 | bool DoAction_ResetForm(const CPDF_Action& action); |
| 81 | bool DoAction_ImportData(const CPDF_Action& action); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 82 | |
| 83 | std::vector<CPDF_FormField*> GetFieldFromObjects( |
| 84 | const std::vector<CPDF_Object*>& objects) const; |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 85 | bool IsValidField(CPDF_Dictionary* pFieldDict); |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 86 | bool SubmitFields(const WideString& csDestination, |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 87 | const std::vector<CPDF_FormField*>& fields, |
| 88 | bool bIncludeOrExclude, |
| 89 | bool bUrlEncoded); |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 90 | bool SubmitForm(const WideString& sDestination, bool bUrlEncoded); |
| 91 | ByteString ExportFormToFDFTextBuf(); |
| 92 | ByteString ExportFieldsToFDFTextBuf( |
Henrique Nakashima | 5c09f4c | 2017-08-04 12:28:52 -0400 | [diff] [blame] | 93 | const std::vector<CPDF_FormField*>& fields, |
| 94 | bool bIncludeOrExclude); |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 95 | WideString GetTemporaryFileName(const WideString& sFileExt); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 96 | |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 97 | bool IsNeedHighLight(int nFieldType); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 98 | void RemoveAllHighLight(); |
| 99 | void SetHighlightAlpha(uint8_t alpha) { m_iHighlightAlpha = alpha; } |
| 100 | uint8_t GetHighlightAlpha() { return m_iHighlightAlpha; } |
| 101 | void SetHighlightColor(FX_COLORREF clr, int nFieldType); |
| 102 | FX_COLORREF GetHighlightColor(int nFieldType); |
| 103 | |
| 104 | private: |
| 105 | // IPDF_FormNotify: |
| 106 | int BeforeValueChange(CPDF_FormField* pField, |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 107 | const WideString& csValue) override; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 108 | void AfterValueChange(CPDF_FormField* pField) override; |
| 109 | int BeforeSelectionChange(CPDF_FormField* pField, |
Ryan Harrison | 275e260 | 2017-09-18 14:23:18 -0400 | [diff] [blame] | 110 | const WideString& csValue) override; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 111 | void AfterSelectionChange(CPDF_FormField* pField) override; |
| 112 | void AfterCheckedStatusChange(CPDF_FormField* pField) override; |
| 113 | int BeforeFormReset(CPDF_InterForm* pForm) override; |
| 114 | void AfterFormReset(CPDF_InterForm* pForm) override; |
| 115 | int BeforeFormImportData(CPDF_InterForm* pForm) override; |
| 116 | void AfterFormImportData(CPDF_InterForm* pForm) override; |
| 117 | |
Ryan Harrison | 875e98c | 2017-09-27 10:53:11 -0400 | [diff] [blame] | 118 | bool FDFToURLEncodedData(uint8_t*& pBuf, size_t& nBufSize); |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 119 | int GetPageIndexByAnnotDict(CPDF_Document* pDocument, |
| 120 | CPDF_Dictionary* pAnnotDict) const; |
| 121 | |
| 122 | using CPDFSDK_WidgetMap = std::map<CPDF_FormControl*, CPDFSDK_Widget*>; |
| 123 | |
Dan Sinclair | aee0db0 | 2017-09-21 16:53:58 -0400 | [diff] [blame] | 124 | UnownedPtr<CPDFSDK_FormFillEnvironment> m_pFormFillEnv; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 125 | std::unique_ptr<CPDF_InterForm> m_pInterForm; |
| 126 | CPDFSDK_WidgetMap m_Map; |
| 127 | #ifdef PDF_ENABLE_XFA |
| 128 | std::map<CXFA_FFWidget*, CPDFSDK_XFAWidget*> m_XFAMap; |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 129 | bool m_bXfaCalculate; |
| 130 | bool m_bXfaValidationsEnabled; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 131 | static const int kNumFieldTypes = 7; |
| 132 | #else // PDF_ENABLE_XFA |
| 133 | static const int kNumFieldTypes = 6; |
| 134 | #endif // PDF_ENABLE_XFA |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 135 | bool m_bCalculate; |
| 136 | bool m_bBusy; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 137 | |
| 138 | FX_COLORREF m_aHighlightColor[kNumFieldTypes]; |
| 139 | uint8_t m_iHighlightAlpha; |
tsepez | 4cf5515 | 2016-11-02 14:37:54 -0700 | [diff] [blame] | 140 | bool m_bNeedHightlight[kNumFieldTypes]; |
jaepark | 611adb8 | 2016-08-17 11:34:36 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
dsinclair | 114e46a | 2016-09-29 17:18:21 -0700 | [diff] [blame] | 143 | #endif // FPDFSDK_CPDFSDK_INTERFORM_H_ |