blob: 032399c84e46b728927b5e9ab82101a7ee47bf9c [file] [log] [blame]
jaepark611adb82016-08-17 11:34:36 -07001// 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
dsinclair114e46a2016-09-29 17:18:21 -07007#ifndef FPDFSDK_CPDFSDK_INTERFORM_H_
8#define FPDFSDK_CPDFSDK_INTERFORM_H_
jaepark611adb82016-08-17 11:34:36 -07009
10#include <map>
Dan Sinclair85c8e7f2016-11-21 13:50:32 -050011#include <memory>
jaepark611adb82016-08-17 11:34:36 -070012#include <vector>
13
dsinclair1727aee2016-09-29 13:12:56 -070014#include "core/fpdfdoc/cpdf_action.h"
15#include "core/fpdfdoc/ipdf_formnotify.h"
dsinclaira52ab742016-09-29 13:59:29 -070016#include "core/fxcrt/fx_basic.h"
dsinclair74a34fc2016-09-29 16:41:42 -070017#include "core/fxge/fx_dib.h"
tsepez8fa82792017-01-11 09:32:33 -080018#include "fpdfsdk/cpdfsdk_widget.h"
jaepark611adb82016-08-17 11:34:36 -070019
20class CPDF_Dictionary;
21class CPDF_FormControl;
22class CPDF_FormField;
23class CPDF_InterForm;
24class CPDF_Object;
dsinclair690c0332016-10-11 09:13:01 -070025class CPDFSDK_FormFillEnvironment;
jaepark611adb82016-08-17 11:34:36 -070026
27#ifdef PDF_ENABLE_XFA
28class CPDFSDK_XFAWidget;
29class CXFA_FFWidget;
30#endif // PDF_ENABLE_XFA
31
32class CPDFSDK_InterForm : public IPDF_FormNotify {
33 public:
dsinclair690c0332016-10-11 09:13:01 -070034 explicit CPDFSDK_InterForm(CPDFSDK_FormFillEnvironment* pFormFillEnv);
jaepark611adb82016-08-17 11:34:36 -070035 ~CPDFSDK_InterForm() override;
36
37 CPDF_InterForm* GetInterForm() const { return m_pInterForm.get(); }
dsinclair690c0332016-10-11 09:13:01 -070038 CPDFSDK_FormFillEnvironment* GetFormFillEnv() const { return m_pFormFillEnv; }
jaepark611adb82016-08-17 11:34:36 -070039
tsepez4cf55152016-11-02 14:37:54 -070040 bool HighlightWidgets();
jaepark611adb82016-08-17 11:34:36 -070041
tsepez4cf55152016-11-02 14:37:54 -070042 CPDFSDK_Widget* GetSibling(CPDFSDK_Widget* pWidget, bool bNext) const;
dsinclairc5267c52016-11-04 15:35:12 -070043 CPDFSDK_Widget* GetWidget(CPDF_FormControl* pControl) const;
jaepark611adb82016-08-17 11:34:36 -070044 void GetWidgets(const CFX_WideString& sFieldName,
tsepez8fa82792017-01-11 09:32:33 -080045 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const;
jaepark611adb82016-08-17 11:34:36 -070046 void GetWidgets(CPDF_FormField* pField,
tsepez8fa82792017-01-11 09:32:33 -080047 std::vector<CPDFSDK_Annot::ObservedPtr>* widgets) const;
jaepark611adb82016-08-17 11:34:36 -070048
49 void AddMap(CPDF_FormControl* pControl, CPDFSDK_Widget* pWidget);
50 void RemoveMap(CPDF_FormControl* pControl);
51
tsepez4cf55152016-11-02 14:37:54 -070052 void EnableCalculate(bool bEnabled);
53 bool IsCalculateEnabled() const;
jaepark611adb82016-08-17 11:34:36 -070054
55#ifdef PDF_ENABLE_XFA
56 void AddXFAMap(CXFA_FFWidget* hWidget, CPDFSDK_XFAWidget* pWidget);
57 void RemoveXFAMap(CXFA_FFWidget* hWidget);
58 CPDFSDK_XFAWidget* GetXFAWidget(CXFA_FFWidget* hWidget);
tsepez4cf55152016-11-02 14:37:54 -070059 void XfaEnableCalculate(bool bEnabled);
60 bool IsXfaCalculateEnabled() const;
61 bool IsXfaValidationsEnabled();
62 void XfaSetValidationsEnabled(bool bEnabled);
63 void SynchronizeField(CPDF_FormField* pFormField, bool bSynchronizeElse);
jaepark611adb82016-08-17 11:34:36 -070064#endif // PDF_ENABLE_XFA
65
tsepez4cf55152016-11-02 14:37:54 -070066 bool OnKeyStrokeCommit(CPDF_FormField* pFormField,
67 const CFX_WideString& csValue);
68 bool OnValidate(CPDF_FormField* pFormField, const CFX_WideString& csValue);
jaepark611adb82016-08-17 11:34:36 -070069 void OnCalculate(CPDF_FormField* pFormField = nullptr);
tsepez4cf55152016-11-02 14:37:54 -070070 CFX_WideString OnFormat(CPDF_FormField* pFormField, bool& bFormatted);
jaepark611adb82016-08-17 11:34:36 -070071
72 void ResetFieldAppearance(CPDF_FormField* pFormField,
tsepeza31da742016-09-08 11:28:14 -070073 const CFX_WideString* sValue,
tsepez4cf55152016-11-02 14:37:54 -070074 bool bValueChanged);
jaepark611adb82016-08-17 11:34:36 -070075 void UpdateField(CPDF_FormField* pFormField);
76
tsepez4cf55152016-11-02 14:37:54 -070077 bool DoAction_Hide(const CPDF_Action& action);
78 bool DoAction_SubmitForm(const CPDF_Action& action);
79 bool DoAction_ResetForm(const CPDF_Action& action);
80 bool DoAction_ImportData(const CPDF_Action& action);
jaepark611adb82016-08-17 11:34:36 -070081
82 std::vector<CPDF_FormField*> GetFieldFromObjects(
83 const std::vector<CPDF_Object*>& objects) const;
tsepez4cf55152016-11-02 14:37:54 -070084 bool IsValidField(CPDF_Dictionary* pFieldDict);
85 bool SubmitFields(const CFX_WideString& csDestination,
86 const std::vector<CPDF_FormField*>& fields,
87 bool bIncludeOrExclude,
88 bool bUrlEncoded);
89 bool SubmitForm(const CFX_WideString& sDestination, bool bUrlEncoded);
90 bool ExportFormToFDFTextBuf(CFX_ByteTextBuf& textBuf);
91 bool ExportFieldsToFDFTextBuf(const std::vector<CPDF_FormField*>& fields,
92 bool bIncludeOrExclude,
93 CFX_ByteTextBuf& textBuf);
jaepark611adb82016-08-17 11:34:36 -070094 CFX_WideString GetTemporaryFileName(const CFX_WideString& sFileExt);
95
tsepez4cf55152016-11-02 14:37:54 -070096 bool IsNeedHighLight(int nFieldType);
jaepark611adb82016-08-17 11:34:36 -070097 void RemoveAllHighLight();
98 void SetHighlightAlpha(uint8_t alpha) { m_iHighlightAlpha = alpha; }
99 uint8_t GetHighlightAlpha() { return m_iHighlightAlpha; }
100 void SetHighlightColor(FX_COLORREF clr, int nFieldType);
101 FX_COLORREF GetHighlightColor(int nFieldType);
102
103 private:
104 // IPDF_FormNotify:
105 int BeforeValueChange(CPDF_FormField* pField,
106 const CFX_WideString& csValue) override;
107 void AfterValueChange(CPDF_FormField* pField) override;
108 int BeforeSelectionChange(CPDF_FormField* pField,
109 const CFX_WideString& csValue) override;
110 void AfterSelectionChange(CPDF_FormField* pField) override;
111 void AfterCheckedStatusChange(CPDF_FormField* pField) override;
112 int BeforeFormReset(CPDF_InterForm* pForm) override;
113 void AfterFormReset(CPDF_InterForm* pForm) override;
114 int BeforeFormImportData(CPDF_InterForm* pForm) override;
115 void AfterFormImportData(CPDF_InterForm* pForm) override;
116
tsepez4cf55152016-11-02 14:37:54 -0700117 bool FDFToURLEncodedData(CFX_WideString csFDFFile, CFX_WideString csTxtFile);
118 bool FDFToURLEncodedData(uint8_t*& pBuf, FX_STRSIZE& nBufSize);
jaepark611adb82016-08-17 11:34:36 -0700119 int GetPageIndexByAnnotDict(CPDF_Document* pDocument,
120 CPDF_Dictionary* pAnnotDict) const;
121
122 using CPDFSDK_WidgetMap = std::map<CPDF_FormControl*, CPDFSDK_Widget*>;
123
dsinclair690c0332016-10-11 09:13:01 -0700124 CPDFSDK_FormFillEnvironment* m_pFormFillEnv; // Not owned.
jaepark611adb82016-08-17 11:34:36 -0700125 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;
tsepez4cf55152016-11-02 14:37:54 -0700129 bool m_bXfaCalculate;
130 bool m_bXfaValidationsEnabled;
jaepark611adb82016-08-17 11:34:36 -0700131 static const int kNumFieldTypes = 7;
132#else // PDF_ENABLE_XFA
133 static const int kNumFieldTypes = 6;
134#endif // PDF_ENABLE_XFA
tsepez4cf55152016-11-02 14:37:54 -0700135 bool m_bCalculate;
136 bool m_bBusy;
jaepark611adb82016-08-17 11:34:36 -0700137
138 FX_COLORREF m_aHighlightColor[kNumFieldTypes];
139 uint8_t m_iHighlightAlpha;
tsepez4cf55152016-11-02 14:37:54 -0700140 bool m_bNeedHightlight[kNumFieldTypes];
jaepark611adb82016-08-17 11:34:36 -0700141};
142
dsinclair114e46a2016-09-29 17:18:21 -0700143#endif // FPDFSDK_CPDFSDK_INTERFORM_H_