aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h')
-rw-r--r--experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h b/experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h
index b46859dff2..4f793a25f7 100644
--- a/experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h
+++ b/experimental/PdfViewer/SkPdfFDFCatalogDictionary_autogen.h
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Entries in the FDF catalog dictionary
class SkPdfFDFCatalogDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kFDFCatalogDictionary_SkPdfObjectType;}
@@ -521,6 +522,19 @@ public:
SkPdfFDFCatalogDictionary& operator=(const SkPdfFDFCatalogDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Optional; PDF 1.4) The version of the PDF specification to which
+ * this FDF file conforms (for example, 1.4), if later than the version
+ * specified in the file's header (see "FDF Header" on page 559). If the
+ * header specifies a later version, or if this entry is absent, the docu-
+ * ment conforms to the version specified in the header.
+ * Note: The value of this entry is a name object, not a number, and so
+ * must be preceded by a slash character (/) when written in the FDF file
+ * (for example, /1.4).
+**/
+ bool has_Version() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Version", "", NULL));
+ }
+
std::string Version() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Version", "", &ret)) return ret;
@@ -528,6 +542,12 @@ public:
return "";
}
+/** (Required) The FDF dictionary for this file (see Table 8.69).
+**/
+ bool has_FDF() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FDF", "", NULL));
+ }
+
SkPdfDictionary* FDF() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FDF", "", &ret)) return ret;