Index: experimental/PdfViewer/SkPdfFDFPageDictionary_autogen.h |
=================================================================== |
--- experimental/PdfViewer/SkPdfFDFPageDictionary_autogen.h (revision 9684) |
+++ experimental/PdfViewer/SkPdfFDFPageDictionary_autogen.h (working copy) |
@@ -5,6 +5,7 @@ |
#include "SkPdfArray_autogen.h" |
#include "SkPdfDictionary_autogen.h" |
+// Entries in an FDF page dictionary |
class SkPdfFDFPageDictionary : public SkPdfDictionary { |
public: |
virtual SkPdfObjectType getType() const { return kFDFPageDictionary_SkPdfObjectType;} |
@@ -521,6 +522,13 @@ |
SkPdfFDFPageDictionary& operator=(const SkPdfFDFPageDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;} |
+/** (Required) An array of FDF template dictionaries (see Table 8.75) describing the |
+ * named pages that serve as templates on the page. |
+**/ |
+ bool has_Templates() const { |
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Templates", "", NULL)); |
+ } |
+ |
SkPdfArray Templates() const { |
SkPdfArray ret; |
if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Templates", "", &ret)) return ret; |
@@ -528,6 +536,14 @@ |
return SkPdfArray(); |
} |
+/** (Optional) An FDF page information dictionary containing additional informa- |
+ * tion about the page. At the time of publication, no entries have been defined for |
+ * this dictionary. |
+**/ |
+ bool has_Info() const { |
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Info", "", NULL)); |
+ } |
+ |
SkPdfDictionary* Info() const { |
SkPdfDictionary* ret; |
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Info", "", &ret)) return ret; |