aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFAcroFormDocumentHelper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFAcroFormDocumentHelper.cc')
-rw-r--r--libqpdf/QPDFAcroFormDocumentHelper.cc20
1 files changed, 20 insertions, 0 deletions
diff --git a/libqpdf/QPDFAcroFormDocumentHelper.cc b/libqpdf/QPDFAcroFormDocumentHelper.cc
index 0fcc81f6..9f800a8e 100644
--- a/libqpdf/QPDFAcroFormDocumentHelper.cc
+++ b/libqpdf/QPDFAcroFormDocumentHelper.cc
@@ -32,6 +32,26 @@ QPDFAcroFormDocumentHelper::hasAcroForm()
return this->qpdf.getRoot().hasKey("/AcroForm");
}
+void
+QPDFAcroFormDocumentHelper::addFormField(QPDFFormFieldObjectHelper ff)
+{
+ invalidateCache();
+ auto acroform = this->qpdf.getRoot().getKey("/AcroForm");
+ if (! acroform.isDictionary())
+ {
+ acroform = this->qpdf.makeIndirectObject(
+ QPDFObjectHandle::newDictionary());
+ this->qpdf.getRoot().replaceKey("/AcroForm", acroform);
+ }
+ auto fields = acroform.getKey("/Fields");
+ if (! fields.isArray())
+ {
+ fields = QPDFObjectHandle::newArray();
+ acroform.replaceKey("/Fields", fields);
+ }
+ fields.appendItem(ff.getObjectHandle());
+}
+
std::vector<QPDFFormFieldObjectHelper>
QPDFAcroFormDocumentHelper::getFormFields()
{