Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1394)

Unified Diff: experimental/PdfViewer/pdf_auto_gen.h

Issue 17286007: few steps in the direction of to encapsulating podofo, so the client is not aware podofo is used. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « experimental/PdfViewer/generate_code.py ('k') | experimental/PdfViewer/pdf_viewer_main.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/PdfViewer/pdf_auto_gen.h
===================================================================
--- experimental/PdfViewer/pdf_auto_gen.h (revision 9625)
+++ experimental/PdfViewer/pdf_auto_gen.h (working copy)
@@ -64,6 +64,7 @@
kObjectDictionaryFreeTextAnnotationDictionary_SkPdfObjectType,
kObjectDictionaryFunctionCommonDictionary_SkPdfObjectType,
kObjectDictionaryGoToActionDictionary_SkPdfObjectType,
+ kObjectDictionaryGraphicsStateDictionary_SkPdfObjectType,
kObjectDictionaryGroupAttributesDictionary_SkPdfObjectType,
kObjectDictionaryHideActionDictionary_SkPdfObjectType,
kObjectDictionaryIccProfileStreamDictionary_SkPdfObjectType,
@@ -221,6 +222,7 @@
class SkPdfEmbeddedFileStreamDictionary;
class SkPdfEmbeddedFileParameterDictionary;
class SkPdfMacOsFileInformationDictionary;
+class SkPdfGraphicsStateDictionary;
class SkPdfCalgrayColorSpaceDictionary;
class SkPdfCalrgbColorSpaceDictionary;
class SkPdfLabColorSpaceDictionary;
@@ -556,6 +558,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -905,10 +910,13 @@
const PdfObject* fPodofoObj;
public:
- SkPdfObject(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : fPodofoDoc(podofoDoc), fPodofoObj(podofoObj) {}
+ SkPdfObject(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : fPodofoDoc(podofoDoc), fPodofoObj(podofoObj) {}
+ const PdfMemDocument* doc() const { return fPodofoDoc;}
const PdfObject* podofo() const { return fPodofoObj;}
virtual bool valid() const {return true;}
+ SkPdfObject& operator=(const SkPdfObject& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -1107,6 +1115,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -1449,10 +1460,12 @@
public:
private:
public:
- SkPdfNull(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfNull(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNull& operator=(const SkPdfNull& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -1648,6 +1661,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -1993,10 +2009,12 @@
public:
private:
public:
- SkPdfBoolean(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfBoolean(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBoolean& operator=(const SkPdfBoolean& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -2195,6 +2213,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -2537,10 +2558,12 @@
public:
private:
public:
- SkPdfInteger(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfInteger(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfInteger& operator=(const SkPdfInteger& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -2739,6 +2762,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -3081,10 +3107,12 @@
public:
private:
public:
- SkPdfNumber(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfNumber(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNumber& operator=(const SkPdfNumber& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -3283,6 +3311,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -3625,10 +3656,12 @@
public:
private:
public:
- SkPdfName(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfName(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfName& operator=(const SkPdfName& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -3827,6 +3860,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -4169,10 +4205,12 @@
public:
private:
public:
- SkPdfReference(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfReference(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfReference& operator=(const SkPdfReference& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -4368,6 +4406,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -4713,10 +4754,12 @@
public:
private:
public:
- SkPdfArray(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfArray(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfArray& operator=(const SkPdfArray& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -4915,6 +4958,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -5257,10 +5303,12 @@
public:
private:
public:
- SkPdfString(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfString(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfString& operator=(const SkPdfString& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -5459,6 +5507,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -5801,10 +5852,12 @@
public:
private:
public:
- SkPdfHexString(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfHexString(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfHexString& operator=(const SkPdfHexString& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -5847,10 +5900,12 @@
public:
private:
public:
- SkPdfDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfObject(podofoDoc, podofoObj) {}
+ SkPdfDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfDictionary& operator=(const SkPdfDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -6040,6 +6095,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -6355,10 +6413,12 @@
public:
private:
public:
- SkPdfXObjectDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfXObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfXObjectDictionary& operator=(const SkPdfXObjectDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -6527,6 +6587,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -6851,10 +6914,12 @@
public:
private:
public:
- SkPdfFontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFontDictionary& operator=(const SkPdfFontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -6885,10 +6950,12 @@
public:
private:
public:
- SkPdfTrueTypeFontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfTrueTypeFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTrueTypeFontDictionary& operator=(const SkPdfTrueTypeFontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
};
@@ -7078,6 +7145,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -7399,10 +7469,12 @@
public:
private:
public:
- SkPdfStreamCommonDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStreamCommonDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStreamCommonDictionary& operator=(const SkPdfStreamCommonDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Length() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Length", "", &ret)) return ret;
@@ -7629,6 +7701,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -7950,10 +8025,12 @@
public:
private:
public:
- SkPdfLzwdecodeAndFlatedecodeFiltersDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfLzwdecodeAndFlatedecodeFiltersDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfLzwdecodeAndFlatedecodeFiltersDictionary& operator=(const SkPdfLzwdecodeAndFlatedecodeFiltersDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Predictor() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Predictor", "", &ret)) return ret;
@@ -8170,6 +8247,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -8494,10 +8574,12 @@
public:
private:
public:
- SkPdfCcittfaxdecodeFilterDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCcittfaxdecodeFilterDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCcittfaxdecodeFilterDictionary& operator=(const SkPdfCcittfaxdecodeFilterDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long K() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "", &ret)) return ret;
@@ -8735,6 +8817,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -9056,10 +9141,12 @@
public:
private:
public:
- SkPdfJbig2DecodeFilterDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfJbig2DecodeFilterDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfJbig2DecodeFilterDictionary& operator=(const SkPdfJbig2DecodeFilterDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* JBIG2Globals() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "JBIG2Globals", "", &ret)) return ret;
@@ -9252,6 +9339,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -9576,10 +9666,12 @@
public:
private:
public:
- SkPdfDctdecodeFilterDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfDctdecodeFilterDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfDctdecodeFilterDictionary& operator=(const SkPdfDctdecodeFilterDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long ColorTransform() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColorTransform", "", &ret)) return ret;
@@ -9772,6 +9864,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -10096,10 +10191,12 @@
public:
private:
public:
- SkPdfFileTrailerDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFileTrailerDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFileTrailerDictionary& operator=(const SkPdfFileTrailerDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Size() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Size", "", &ret)) return ret;
@@ -10323,6 +10420,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -10647,10 +10747,12 @@
public:
private:
public:
- SkPdfEncryptionCommonDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEncryptionCommonDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEncryptionCommonDictionary& operator=(const SkPdfEncryptionCommonDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Filter() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Filter", "", &ret)) return ret;
@@ -10859,6 +10961,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -11180,10 +11285,12 @@
public:
private:
public:
- SkPdfStandardSecurityHandlerDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStandardSecurityHandlerDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStandardSecurityHandlerDictionary& operator=(const SkPdfStandardSecurityHandlerDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
double R() const {
double ret;
if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "R", "", &ret)) return ret;
@@ -11398,6 +11505,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -11722,10 +11832,12 @@
public:
private:
public:
- SkPdfCatalogDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCatalogDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCatalogDictionary& operator=(const SkPdfCatalogDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -12042,6 +12154,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -12363,10 +12478,12 @@
public:
private:
public:
- SkPdfPageTreeNodeDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPageTreeNodeDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPageTreeNodeDictionary& operator=(const SkPdfPageTreeNodeDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -12583,6 +12700,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -12904,10 +13024,12 @@
public:
private:
public:
- SkPdfPageObjectDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPageObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPageObjectDictionary& operator=(const SkPdfPageObjectDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -13250,6 +13372,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -13571,10 +13696,12 @@
public:
private:
public:
- SkPdfNameDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfNameDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNameDictionary& operator=(const SkPdfNameDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Dests() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Dests", "", &ret)) return ret;
@@ -13812,6 +13939,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -14133,10 +14263,12 @@
public:
private:
public:
- SkPdfResourceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfResourceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfResourceDictionary& operator=(const SkPdfResourceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* ExtGState() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ExtGState", "", &ret)) return ret;
@@ -14374,6 +14506,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -14695,10 +14830,12 @@
public:
private:
public:
- SkPdfNameTreeNodeDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfNameTreeNodeDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNameTreeNodeDictionary& operator=(const SkPdfNameTreeNodeDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Kids() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", &ret)) return ret;
@@ -14906,6 +15043,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -15227,10 +15367,12 @@
public:
private:
public:
- SkPdfNumberTreeNodeDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfNumberTreeNodeDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNumberTreeNodeDictionary& operator=(const SkPdfNumberTreeNodeDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Kids() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", &ret)) return ret;
@@ -15435,6 +15577,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -15759,10 +15904,12 @@
public:
private:
public:
- SkPdfFunctionCommonDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFunctionCommonDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFunctionCommonDictionary& operator=(const SkPdfFunctionCommonDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long FunctionType() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FunctionType", "", &ret)) return ret;
@@ -15972,6 +16119,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -16293,10 +16443,12 @@
public:
private:
public:
- SkPdfType0FunctionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType0FunctionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType0FunctionDictionary& operator=(const SkPdfType0FunctionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Size() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Size", "", &ret)) return ret;
@@ -16518,6 +16670,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -16839,10 +16994,12 @@
public:
private:
public:
- SkPdfType2FunctionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType2FunctionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType2FunctionDictionary& operator=(const SkPdfType2FunctionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* C0() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C0", "", &ret)) return ret;
@@ -17051,6 +17208,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -17372,10 +17532,12 @@
public:
private:
public:
- SkPdfType3FunctionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType3FunctionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType3FunctionDictionary& operator=(const SkPdfType3FunctionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Functions() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Functions", "", &ret)) return ret;
@@ -17583,6 +17745,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -17907,10 +18072,12 @@
public:
private:
public:
- SkPdfFileSpecificationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFileSpecificationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFileSpecificationDictionary& operator=(const SkPdfFileSpecificationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -18157,6 +18324,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -18481,10 +18651,12 @@
public:
private:
public:
- SkPdfEmbeddedFileStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEmbeddedFileStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEmbeddedFileStreamDictionary& operator=(const SkPdfEmbeddedFileStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -18689,6 +18861,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -19013,10 +19188,12 @@
public:
private:
public:
- SkPdfEmbeddedFileParameterDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEmbeddedFileParameterDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEmbeddedFileParameterDictionary& operator=(const SkPdfEmbeddedFileParameterDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Size() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Size", "", &ret)) return ret;
@@ -19236,6 +19413,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -19557,10 +19737,12 @@
public:
private:
public:
- SkPdfMacOsFileInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMacOsFileInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMacOsFileInformationDictionary& operator=(const SkPdfMacOsFileInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -19582,6 +19764,687 @@
};
+class SkPdfGraphicsStateDictionary : public SkPdfDictionary {
+public:
+ virtual SkPdfObjectType getType() const { return kObjectDictionaryGraphicsStateDictionary_SkPdfObjectType;}
+ virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kObjectDictionaryGraphicsStateDictionary_SkPdfObjectType + 1);}
+public:
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return this;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return this;}
+
+private:
+ virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfActionDictionary* asActionDictionary() {return NULL;}
+ virtual const SkPdfActionDictionary* asActionDictionary() const {return NULL;}
+
+ virtual SkPdfAlternateImageDictionary* asAlternateImageDictionary() {return NULL;}
+ virtual const SkPdfAlternateImageDictionary* asAlternateImageDictionary() const {return NULL;}
+
+ virtual SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() {return NULL;}
+ virtual const SkPdfAnnotationActionsDictionary* asAnnotationActionsDictionary() const {return NULL;}
+
+ virtual SkPdfAnnotationDictionary* asAnnotationDictionary() {return NULL;}
+ virtual const SkPdfAnnotationDictionary* asAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() {return NULL;}
+ virtual const SkPdfAppearanceCharacteristicsDictionary* asAppearanceCharacteristicsDictionary() const {return NULL;}
+
+ virtual SkPdfAppearanceDictionary* asAppearanceDictionary() {return NULL;}
+ virtual const SkPdfAppearanceDictionary* asAppearanceDictionary() const {return NULL;}
+
+ virtual SkPdfApplicationDataDictionary* asApplicationDataDictionary() {return NULL;}
+ virtual const SkPdfApplicationDataDictionary* asApplicationDataDictionary() const {return NULL;}
+
+ virtual SkPdfArtifactsDictionary* asArtifactsDictionary() {return NULL;}
+ virtual const SkPdfArtifactsDictionary* asArtifactsDictionary() const {return NULL;}
+
+ virtual SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() {return NULL;}
+ virtual const SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() const {return NULL;}
+
+ virtual SkPdfBeadDictionary* asBeadDictionary() {return NULL;}
+ virtual const SkPdfBeadDictionary* asBeadDictionary() const {return NULL;}
+
+ virtual SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() {return NULL;}
+ virtual const SkPdfBlockLevelStructureElementsDictionary* asBlockLevelStructureElementsDictionary() const {return NULL;}
+
+ virtual SkPdfBorderStyleDictionary* asBorderStyleDictionary() {return NULL;}
+ virtual const SkPdfBorderStyleDictionary* asBorderStyleDictionary() const {return NULL;}
+
+ virtual SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() {return NULL;}
+ virtual const SkPdfBoxColorInformationDictionary* asBoxColorInformationDictionary() const {return NULL;}
+
+ virtual SkPdfBoxStyleDictionary* asBoxStyleDictionary() {return NULL;}
+ virtual const SkPdfBoxStyleDictionary* asBoxStyleDictionary() const {return NULL;}
+
+ virtual SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDescriptorDictionary* asCIDFontDescriptorDictionary() const {return NULL;}
+
+ virtual SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() {return NULL;}
+ virtual const SkPdfCIDSystemInfoDictionary* asCIDSystemInfoDictionary() const {return NULL;}
+
+ virtual SkPdfCMapDictionary* asCMapDictionary() {return NULL;}
+ virtual const SkPdfCMapDictionary* asCMapDictionary() const {return NULL;}
+
+ virtual SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfCalgrayColorSpaceDictionary* asCalgrayColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfCalrgbColorSpaceDictionary* asCalrgbColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfCatalogDictionary* asCatalogDictionary() {return NULL;}
+ virtual const SkPdfCatalogDictionary* asCatalogDictionary() const {return NULL;}
+
+ virtual SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfCcittfaxdecodeFilterDictionary* asCcittfaxdecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() {return NULL;}
+ virtual const SkPdfCheckboxFieldDictionary* asCheckboxFieldDictionary() const {return NULL;}
+
+ virtual SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() {return NULL;}
+ virtual const SkPdfChoiceFieldDictionary* asChoiceFieldDictionary() const {return NULL;}
+
+ virtual SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() {return NULL;}
+ virtual const SkPdfComponentsWithMetadataDictionary* asComponentsWithMetadataDictionary() const {return NULL;}
+
+ virtual SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfDctdecodeFilterDictionary* asDctdecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfDeviceNColorSpaceDictionary* asDeviceNColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() {return NULL;}
+ virtual const SkPdfDocumentCatalogActionsDictionary* asDocumentCatalogActionsDictionary() const {return NULL;}
+
+ virtual SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() {return NULL;}
+ virtual const SkPdfDocumentInformationDictionary* asDocumentInformationDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFileParameterDictionary* asEmbeddedFileParameterDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFileStreamDictionary* asEmbeddedFileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() {return NULL;}
+ virtual const SkPdfEmbeddedFontStreamDictionary* asEmbeddedFontStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEncodingDictionary* asEncodingDictionary() {return NULL;}
+ virtual const SkPdfEncodingDictionary* asEncodingDictionary() const {return NULL;}
+
+ virtual SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() {return NULL;}
+ virtual const SkPdfEncryptedEmbeddedFileStreamDictionary* asEncryptedEmbeddedFileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() {return NULL;}
+ virtual const SkPdfEncryptionCommonDictionary* asEncryptionCommonDictionary() const {return NULL;}
+
+ virtual SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() {return NULL;}
+ virtual const SkPdfFDFCatalogDictionary* asFDFCatalogDictionary() const {return NULL;}
+
+ virtual SkPdfFDFDictionary* asFDFDictionary() {return NULL;}
+ virtual const SkPdfFDFDictionary* asFDFDictionary() const {return NULL;}
+
+ virtual SkPdfFDFFieldDictionary* asFDFFieldDictionary() {return NULL;}
+ virtual const SkPdfFDFFieldDictionary* asFDFFieldDictionary() const {return NULL;}
+
+ virtual SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFDFFileAnnotationDictionary* asFDFFileAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() {return NULL;}
+ virtual const SkPdfFDFNamedPageReferenceDictionary* asFDFNamedPageReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfFDFPageDictionary* asFDFPageDictionary() {return NULL;}
+ virtual const SkPdfFDFPageDictionary* asFDFPageDictionary() const {return NULL;}
+
+ virtual SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() {return NULL;}
+ virtual const SkPdfFDFTemplateDictionary* asFDFTemplateDictionary() const {return NULL;}
+
+ virtual SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() {return NULL;}
+ virtual const SkPdfFDFTrailerDictionary* asFDFTrailerDictionary() const {return NULL;}
+
+ virtual SkPdfFieldDictionary* asFieldDictionary() {return NULL;}
+ virtual const SkPdfFieldDictionary* asFieldDictionary() const {return NULL;}
+
+ virtual SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFileAttachmentAnnotationDictionary* asFileAttachmentAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() {return NULL;}
+ virtual const SkPdfFileSpecificationDictionary* asFileSpecificationDictionary() const {return NULL;}
+
+ virtual SkPdfFileTrailerDictionary* asFileTrailerDictionary() {return NULL;}
+ virtual const SkPdfFileTrailerDictionary* asFileTrailerDictionary() const {return NULL;}
+
+ virtual SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() {return NULL;}
+ virtual const SkPdfFontDescriptorDictionary* asFontDescriptorDictionary() const {return NULL;}
+
+ virtual SkPdfFontDictionary* asFontDictionary() {return NULL;}
+ virtual const SkPdfFontDictionary* asFontDictionary() const {return NULL;}
+
+ virtual SkPdfCIDFontDictionary* asCIDFontDictionary() {return NULL;}
+ virtual const SkPdfCIDFontDictionary* asCIDFontDictionary() const {return NULL;}
+
+ virtual SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() {return NULL;}
+ virtual const SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() const {return NULL;}
+
+ virtual SkPdfType0FontDictionary* asType0FontDictionary() {return NULL;}
+ virtual const SkPdfType0FontDictionary* asType0FontDictionary() const {return NULL;}
+
+ virtual SkPdfType1FontDictionary* asType1FontDictionary() {return NULL;}
+ virtual const SkPdfType1FontDictionary* asType1FontDictionary() const {return NULL;}
+
+ virtual SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() {return NULL;}
+ virtual const SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() const {return NULL;}
+
+ virtual SkPdfType3FontDictionary* asType3FontDictionary() {return NULL;}
+ virtual const SkPdfType3FontDictionary* asType3FontDictionary() const {return NULL;}
+
+ virtual SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() {return NULL;}
+ virtual const SkPdfFormFieldActionsDictionary* asFormFieldActionsDictionary() const {return NULL;}
+
+ virtual SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() {return NULL;}
+ virtual const SkPdfFreeTextAnnotationDictionary* asFreeTextAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() {return NULL;}
+ virtual const SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() const {return NULL;}
+
+ virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
+ virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+
+ virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
+ virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
+
+ virtual SkPdfHideActionDictionary* asHideActionDictionary() {return NULL;}
+ virtual const SkPdfHideActionDictionary* asHideActionDictionary() const {return NULL;}
+
+ virtual SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() {return NULL;}
+ virtual const SkPdfIccProfileStreamDictionary* asIccProfileStreamDictionary() const {return NULL;}
+
+ virtual SkPdfIconFitDictionary* asIconFitDictionary() {return NULL;}
+ virtual const SkPdfIconFitDictionary* asIconFitDictionary() const {return NULL;}
+
+ virtual SkPdfImportDataActionDictionary* asImportDataActionDictionary() {return NULL;}
+ virtual const SkPdfImportDataActionDictionary* asImportDataActionDictionary() const {return NULL;}
+
+ virtual SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfInkAnnotationDictionary* asInkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() {return NULL;}
+ virtual const SkPdfInlineLevelStructureElementsDictionary* asInlineLevelStructureElementsDictionary() const {return NULL;}
+
+ virtual SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() {return NULL;}
+ virtual const SkPdfInteractiveFormDictionary* asInteractiveFormDictionary() const {return NULL;}
+
+ virtual SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() {return NULL;}
+ virtual const SkPdfJavascriptActionDictionary* asJavascriptActionDictionary() const {return NULL;}
+
+ virtual SkPdfJavascriptDictionary* asJavascriptDictionary() {return NULL;}
+ virtual const SkPdfJavascriptDictionary* asJavascriptDictionary() const {return NULL;}
+
+ virtual SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() {return NULL;}
+ virtual const SkPdfJbig2DecodeFilterDictionary* asJbig2DecodeFilterDictionary() const {return NULL;}
+
+ virtual SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() {return NULL;}
+ virtual const SkPdfLabColorSpaceDictionary* asLabColorSpaceDictionary() const {return NULL;}
+
+ virtual SkPdfLaunchActionDictionary* asLaunchActionDictionary() {return NULL;}
+ virtual const SkPdfLaunchActionDictionary* asLaunchActionDictionary() const {return NULL;}
+
+ virtual SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() {return NULL;}
+ virtual const SkPdfLineAnnotationDictionary* asLineAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfListAttributeDictionary* asListAttributeDictionary() {return NULL;}
+ virtual const SkPdfListAttributeDictionary* asListAttributeDictionary() const {return NULL;}
+
+ virtual SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() {return NULL;}
+ virtual const SkPdfLzwdecodeAndFlatedecodeFiltersDictionary* asLzwdecodeAndFlatedecodeFiltersDictionary() const {return NULL;}
+
+ virtual SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() {return NULL;}
+ virtual const SkPdfMacOsFileInformationDictionary* asMacOsFileInformationDictionary() const {return NULL;}
+
+ virtual SkPdfMarkInformationDictionary* asMarkInformationDictionary() {return NULL;}
+ virtual const SkPdfMarkInformationDictionary* asMarkInformationDictionary() const {return NULL;}
+
+ virtual SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() {return NULL;}
+ virtual const SkPdfMarkedContentReferenceDictionary* asMarkedContentReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() {return NULL;}
+ virtual const SkPdfMarkupAnnotationsDictionary* asMarkupAnnotationsDictionary() const {return NULL;}
+
+ virtual SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() {return NULL;}
+ virtual const SkPdfMetadataStreamDictionary* asMetadataStreamDictionary() const {return NULL;}
+
+ virtual SkPdfMovieActionDictionary* asMovieActionDictionary() {return NULL;}
+ virtual const SkPdfMovieActionDictionary* asMovieActionDictionary() const {return NULL;}
+
+ virtual SkPdfMovieActivationDictionary* asMovieActivationDictionary() {return NULL;}
+ virtual const SkPdfMovieActivationDictionary* asMovieActivationDictionary() const {return NULL;}
+
+ virtual SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() {return NULL;}
+ virtual const SkPdfMovieAnnotationDictionary* asMovieAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfMovieDictionary* asMovieDictionary() {return NULL;}
+ virtual const SkPdfMovieDictionary* asMovieDictionary() const {return NULL;}
+
+ virtual SkPdfNameDictionary* asNameDictionary() {return NULL;}
+ virtual const SkPdfNameDictionary* asNameDictionary() const {return NULL;}
+
+ virtual SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfNameTreeNodeDictionary* asNameTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfNamedActionsDictionary* asNamedActionsDictionary() {return NULL;}
+ virtual const SkPdfNamedActionsDictionary* asNamedActionsDictionary() const {return NULL;}
+
+ virtual SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfNumberTreeNodeDictionary* asNumberTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() {return NULL;}
+ virtual const SkPdfObjectReferenceDictionary* asObjectReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfOpiVersionDictionary* asOpiVersionDictionary() {return NULL;}
+ virtual const SkPdfOpiVersionDictionary* asOpiVersionDictionary() const {return NULL;}
+
+ virtual SkPdfOutlineDictionary* asOutlineDictionary() {return NULL;}
+ virtual const SkPdfOutlineDictionary* asOutlineDictionary() const {return NULL;}
+
+ virtual SkPdfOutlineItemDictionary* asOutlineItemDictionary() {return NULL;}
+ virtual const SkPdfOutlineItemDictionary* asOutlineItemDictionary() const {return NULL;}
+
+ virtual SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() {return NULL;}
+ virtual const SkPdfPDF_XOutputIntentDictionary* asPDF_XOutputIntentDictionary() const {return NULL;}
+
+ virtual SkPdfPSXobjectDictionary* asPSXobjectDictionary() {return NULL;}
+ virtual const SkPdfPSXobjectDictionary* asPSXobjectDictionary() const {return NULL;}
+
+ virtual SkPdfPageLabelDictionary* asPageLabelDictionary() {return NULL;}
+ virtual const SkPdfPageLabelDictionary* asPageLabelDictionary() const {return NULL;}
+
+ virtual SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() {return NULL;}
+ virtual const SkPdfPageObjectActionsDictionary* asPageObjectActionsDictionary() const {return NULL;}
+
+ virtual SkPdfPageObjectDictionary* asPageObjectDictionary() {return NULL;}
+ virtual const SkPdfPageObjectDictionary* asPageObjectDictionary() const {return NULL;}
+
+ virtual SkPdfPagePieceDictionary* asPagePieceDictionary() {return NULL;}
+ virtual const SkPdfPagePieceDictionary* asPagePieceDictionary() const {return NULL;}
+
+ virtual SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() {return NULL;}
+ virtual const SkPdfPageTreeNodeDictionary* asPageTreeNodeDictionary() const {return NULL;}
+
+ virtual SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() {return NULL;}
+ virtual const SkPdfPopUpAnnotationDictionary* asPopUpAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfPrinterMarkAnnotationDictionary* asPrinterMarkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() {return NULL;}
+ virtual const SkPdfPrinterMarkFormDictionary* asPrinterMarkFormDictionary() const {return NULL;}
+
+ virtual SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() {return NULL;}
+ virtual const SkPdfRadioButtonFieldDictionary* asRadioButtonFieldDictionary() const {return NULL;}
+
+ virtual SkPdfReferenceDictionary* asReferenceDictionary() {return NULL;}
+ virtual const SkPdfReferenceDictionary* asReferenceDictionary() const {return NULL;}
+
+ virtual SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() {return NULL;}
+ virtual const SkPdfRemoteGoToActionDictionary* asRemoteGoToActionDictionary() const {return NULL;}
+
+ virtual SkPdfResetFormActionDictionary* asResetFormActionDictionary() {return NULL;}
+ virtual const SkPdfResetFormActionDictionary* asResetFormActionDictionary() const {return NULL;}
+
+ virtual SkPdfResourceDictionary* asResourceDictionary() {return NULL;}
+ virtual const SkPdfResourceDictionary* asResourceDictionary() const {return NULL;}
+
+ virtual SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() {return NULL;}
+ virtual const SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfSeparationDictionary* asSeparationDictionary() {return NULL;}
+ virtual const SkPdfSeparationDictionary* asSeparationDictionary() const {return NULL;}
+
+ virtual SkPdfShadingDictionary* asShadingDictionary() {return NULL;}
+ virtual const SkPdfShadingDictionary* asShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType1ShadingDictionary* asType1ShadingDictionary() {return NULL;}
+ virtual const SkPdfType1ShadingDictionary* asType1ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType2ShadingDictionary* asType2ShadingDictionary() {return NULL;}
+ virtual const SkPdfType2ShadingDictionary* asType2ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType3ShadingDictionary* asType3ShadingDictionary() {return NULL;}
+ virtual const SkPdfType3ShadingDictionary* asType3ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType4ShadingDictionary* asType4ShadingDictionary() {return NULL;}
+ virtual const SkPdfType4ShadingDictionary* asType4ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType5ShadingDictionary* asType5ShadingDictionary() {return NULL;}
+ virtual const SkPdfType5ShadingDictionary* asType5ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfType6ShadingDictionary* asType6ShadingDictionary() {return NULL;}
+ virtual const SkPdfType6ShadingDictionary* asType6ShadingDictionary() const {return NULL;}
+
+ virtual SkPdfSignatureDictionary* asSignatureDictionary() {return NULL;}
+ virtual const SkPdfSignatureDictionary* asSignatureDictionary() const {return NULL;}
+
+ virtual SkPdfSoftMaskDictionary* asSoftMaskDictionary() {return NULL;}
+ virtual const SkPdfSoftMaskDictionary* asSoftMaskDictionary() const {return NULL;}
+
+ virtual SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() {return NULL;}
+ virtual const SkPdfSoftMaskImageDictionary* asSoftMaskImageDictionary() const {return NULL;}
+
+ virtual SkPdfSoundActionDictionary* asSoundActionDictionary() {return NULL;}
+ virtual const SkPdfSoundActionDictionary* asSoundActionDictionary() const {return NULL;}
+
+ virtual SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() {return NULL;}
+ virtual const SkPdfSoundAnnotationDictionary* asSoundAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfSoundObjectDictionary* asSoundObjectDictionary() {return NULL;}
+ virtual const SkPdfSoundObjectDictionary* asSoundObjectDictionary() const {return NULL;}
+
+ virtual SkPdfSourceInformationDictionary* asSourceInformationDictionary() {return NULL;}
+ virtual const SkPdfSourceInformationDictionary* asSourceInformationDictionary() const {return NULL;}
+
+ virtual SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() {return NULL;}
+ virtual const SkPdfSquareOrCircleAnnotation* asSquareOrCircleAnnotation() const {return NULL;}
+
+ virtual SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() {return NULL;}
+ virtual const SkPdfStandardSecurityHandlerDictionary* asStandardSecurityHandlerDictionary() const {return NULL;}
+
+ virtual SkPdfStandardStructureDictionary* asStandardStructureDictionary() {return NULL;}
+ virtual const SkPdfStandardStructureDictionary* asStandardStructureDictionary() const {return NULL;}
+
+ virtual SkPdfStreamCommonDictionary* asStreamCommonDictionary() {return NULL;}
+ virtual const SkPdfStreamCommonDictionary* asStreamCommonDictionary() const {return NULL;}
+
+ virtual SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() {return NULL;}
+ virtual const SkPdfStructureElementAccessDictionary* asStructureElementAccessDictionary() const {return NULL;}
+
+ virtual SkPdfStructureElementDictionary* asStructureElementDictionary() {return NULL;}
+ virtual const SkPdfStructureElementDictionary* asStructureElementDictionary() const {return NULL;}
+
+ virtual SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() {return NULL;}
+ virtual const SkPdfStructureTreeRootDictionary* asStructureTreeRootDictionary() const {return NULL;}
+
+ virtual SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() {return NULL;}
+ virtual const SkPdfSubmitFormActionDictionary* asSubmitFormActionDictionary() const {return NULL;}
+
+ virtual SkPdfTableAttributesDictionary* asTableAttributesDictionary() {return NULL;}
+ virtual const SkPdfTableAttributesDictionary* asTableAttributesDictionary() const {return NULL;}
+
+ virtual SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() {return NULL;}
+ virtual const SkPdfTextAnnotationDictionary* asTextAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfTextFieldDictionary* asTextFieldDictionary() {return NULL;}
+ virtual const SkPdfTextFieldDictionary* asTextFieldDictionary() const {return NULL;}
+
+ virtual SkPdfThreadActionDictionary* asThreadActionDictionary() {return NULL;}
+ virtual const SkPdfThreadActionDictionary* asThreadActionDictionary() const {return NULL;}
+
+ virtual SkPdfThreadDictionary* asThreadDictionary() {return NULL;}
+ virtual const SkPdfThreadDictionary* asThreadDictionary() const {return NULL;}
+
+ virtual SkPdfTransitionDictionary* asTransitionDictionary() {return NULL;}
+ virtual const SkPdfTransitionDictionary* asTransitionDictionary() const {return NULL;}
+
+ virtual SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() {return NULL;}
+ virtual const SkPdfTransparencyGroupDictionary* asTransparencyGroupDictionary() const {return NULL;}
+
+ virtual SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() {return NULL;}
+ virtual const SkPdfTrapNetworkAnnotationDictionary* asTrapNetworkAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() {return NULL;}
+ virtual const SkPdfTrapNetworkAppearanceStreamDictionary* asTrapNetworkAppearanceStreamDictionary() const {return NULL;}
+
+ virtual SkPdfType0FunctionDictionary* asType0FunctionDictionary() {return NULL;}
+ virtual const SkPdfType0FunctionDictionary* asType0FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType10HalftoneDictionary* asType10HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType16HalftoneDictionary* asType16HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType1HalftoneDictionary* asType1HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType1PatternDictionary* asType1PatternDictionary() {return NULL;}
+ virtual const SkPdfType1PatternDictionary* asType1PatternDictionary() const {return NULL;}
+
+ virtual SkPdfType2FunctionDictionary* asType2FunctionDictionary() {return NULL;}
+ virtual const SkPdfType2FunctionDictionary* asType2FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType2PatternDictionary* asType2PatternDictionary() {return NULL;}
+ virtual const SkPdfType2PatternDictionary* asType2PatternDictionary() const {return NULL;}
+
+ virtual SkPdfType3FunctionDictionary* asType3FunctionDictionary() {return NULL;}
+ virtual const SkPdfType3FunctionDictionary* asType3FunctionDictionary() const {return NULL;}
+
+ virtual SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType5HalftoneDictionary* asType5HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() {return NULL;}
+ virtual const SkPdfType6HalftoneDictionary* asType6HalftoneDictionary() const {return NULL;}
+
+ virtual SkPdfURIActionDictionary* asURIActionDictionary() {return NULL;}
+ virtual const SkPdfURIActionDictionary* asURIActionDictionary() const {return NULL;}
+
+ virtual SkPdfURIDictionary* asURIDictionary() {return NULL;}
+ virtual const SkPdfURIDictionary* asURIDictionary() const {return NULL;}
+
+ virtual SkPdfURLAliasDictionary* asURLAliasDictionary() {return NULL;}
+ virtual const SkPdfURLAliasDictionary* asURLAliasDictionary() const {return NULL;}
+
+ virtual SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() {return NULL;}
+ virtual const SkPdfVariableTextFieldDictionary* asVariableTextFieldDictionary() const {return NULL;}
+
+ virtual SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() {return NULL;}
+ virtual const SkPdfViewerPreferencesDictionary* asViewerPreferencesDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureCommandDictionary* asWebCaptureCommandDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureCommandSettingsDictionary* asWebCaptureCommandSettingsDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureDictionary* asWebCaptureDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureDictionary* asWebCaptureDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureImageSetDictionary* asWebCaptureImageSetDictionary() const {return NULL;}
+
+ virtual SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() {return NULL;}
+ virtual const SkPdfWebCaptureInformationDictionary* asWebCaptureInformationDictionary() const {return NULL;}
+
+ virtual SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() {return NULL;}
+ virtual const SkPdfWebCapturePageSetDictionary* asWebCapturePageSetDictionary() const {return NULL;}
+
+ virtual SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() {return NULL;}
+ virtual const SkPdfWidgetAnnotationDictionary* asWidgetAnnotationDictionary() const {return NULL;}
+
+ virtual SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() {return NULL;}
+ virtual const SkPdfWindowsLaunchActionDictionary* asWindowsLaunchActionDictionary() const {return NULL;}
+
+ virtual SkPdfXObjectDictionary* asXObjectDictionary() {return NULL;}
+ virtual const SkPdfXObjectDictionary* asXObjectDictionary() const {return NULL;}
+
+ virtual SkPdfImageDictionary* asImageDictionary() {return NULL;}
+ virtual const SkPdfImageDictionary* asImageDictionary() const {return NULL;}
+
+ virtual SkPdfType1FormDictionary* asType1FormDictionary() {return NULL;}
+ virtual const SkPdfType1FormDictionary* asType1FormDictionary() const {return NULL;}
+
+public:
+private:
+public:
+ SkPdfGraphicsStateDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
+
+ virtual bool valid() const {return true;}
+
+ SkPdfGraphicsStateDictionary& operator=(const SkPdfGraphicsStateDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
+ std::string Type() const {
+ std::string ret;
+ if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
+ return """";
+ }
+
+ double LW() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LW", "", &ret)) return ret;
+ return 0;
+ }
+
+ long LC() const {
+ long ret;
+ if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LC", "", &ret)) return ret;
+ return 0;
+ }
+
+ long LJ() const {
+ long ret;
+ if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LJ", "", &ret)) return ret;
+ return 0;
+ }
+
+ double ML() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ML", "", &ret)) return ret;
+ return 0;
+ }
+
+ SkPdfObject* D() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "D", "", &ret)) return ret;
+ return NULL;
+ }
+
+ std::string RI() const {
+ std::string ret;
+ if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RI", "", &ret)) return ret;
+ return """";
+ }
+
+ SkPdfObject* OP() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "OP", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* op() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "op", "", &ret)) return ret;
+ return NULL;
+ }
+
+ long OPM() const {
+ long ret;
+ if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "OPM", "", &ret)) return ret;
+ return 0;
+ }
+
+ SkPdfObject* Font() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Font", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* BG() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BG", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* BG2() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BG2", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* UCR() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "UCR", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* UCR2() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "UCR2", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* TR() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TR", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* TR2() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TR2", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* HT() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "HT", "", &ret)) return ret;
+ return NULL;
+ }
+
+ double FL() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FL", "", &ret)) return ret;
+ return 0;
+ }
+
+ double SM() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SM", "", &ret)) return ret;
+ return 0;
+ }
+
+ SkPdfObject* SA() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SA", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* BM() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BM", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* SMask() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SMask", "", &ret)) return ret;
+ return NULL;
+ }
+
+ double CA() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "CA", "", &ret)) return ret;
+ return 0;
+ }
+
+ double ca() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ca", "", &ret)) return ret;
+ return 0;
+ }
+
+ SkPdfObject* AIS() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AIS", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfObject* TK() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TK", "", &ret)) return ret;
+ return NULL;
+ }
+
+};
+
+
class SkPdfCalgrayColorSpaceDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kObjectDictionaryCalgrayColorSpaceDictionary_SkPdfObjectType;}
@@ -19765,6 +20628,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -20089,10 +20955,12 @@
public:
private:
public:
- SkPdfCalgrayColorSpaceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCalgrayColorSpaceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCalgrayColorSpaceDictionary& operator=(const SkPdfCalgrayColorSpaceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* WhitePoint() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "WhitePoint", "", &ret)) return ret;
@@ -20298,6 +21166,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -20622,10 +21493,12 @@
public:
private:
public:
- SkPdfCalrgbColorSpaceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCalrgbColorSpaceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCalrgbColorSpaceDictionary& operator=(const SkPdfCalrgbColorSpaceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* WhitePoint() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "WhitePoint", "", &ret)) return ret;
@@ -20840,6 +21713,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -21161,10 +22037,12 @@
public:
private:
public:
- SkPdfLabColorSpaceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfLabColorSpaceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfLabColorSpaceDictionary& operator=(const SkPdfLabColorSpaceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* WhitePoint() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "WhitePoint", "", &ret)) return ret;
@@ -21373,6 +22251,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -21694,10 +22575,12 @@
public:
private:
public:
- SkPdfIccProfileStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfIccProfileStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfIccProfileStreamDictionary& operator=(const SkPdfIccProfileStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long N() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)) return ret;
@@ -21909,6 +22792,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -22233,10 +23119,12 @@
public:
private:
public:
- SkPdfDeviceNColorSpaceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfDeviceNColorSpaceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfDeviceNColorSpaceDictionary& operator=(const SkPdfDeviceNColorSpaceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* Colorants() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Colorants", "", &ret)) return ret;
@@ -22432,6 +23320,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -22753,10 +23644,12 @@
public:
private:
public:
- SkPdfType1PatternDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType1PatternDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType1PatternDictionary& operator=(const SkPdfType1PatternDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -22966,6 +23859,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -23287,10 +24183,12 @@
public:
private:
public:
- SkPdfType2PatternDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType2PatternDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType2PatternDictionary& operator=(const SkPdfType2PatternDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Type() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -23512,6 +24410,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -23815,10 +24716,12 @@
public:
private:
public:
- SkPdfShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfShadingDictionary& operator=(const SkPdfShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long ShadingType() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ShadingType", "", &ret)) return ret;
@@ -23881,10 +24784,12 @@
public:
private:
public:
- SkPdfType1ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType1ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType1ShadingDictionary& operator=(const SkPdfType1ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Domain() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Domain", "", &ret)) return ret;
@@ -23934,10 +24839,12 @@
public:
private:
public:
- SkPdfType2ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType2ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType2ShadingDictionary& operator=(const SkPdfType2ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Coords() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Coords", "", &ret)) return ret;
@@ -23994,10 +24901,12 @@
public:
private:
public:
- SkPdfType3ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType3ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType3ShadingDictionary& operator=(const SkPdfType3ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Coords() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Coords", "", &ret)) return ret;
@@ -24054,10 +24963,12 @@
public:
private:
public:
- SkPdfType4ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType4ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType4ShadingDictionary& operator=(const SkPdfType4ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long BitsPerCoordinate() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BitsPerCoordinate", "", &ret)) return ret;
@@ -24122,10 +25033,12 @@
public:
private:
public:
- SkPdfType5ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType5ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType5ShadingDictionary& operator=(const SkPdfType5ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long BitsPerCoordinate() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BitsPerCoordinate", "", &ret)) return ret;
@@ -24190,10 +25103,12 @@
public:
private:
public:
- SkPdfType6ShadingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
+ SkPdfType6ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType6ShadingDictionary& operator=(const SkPdfType6ShadingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long BitsPerCoordinate() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BitsPerCoordinate", "", &ret)) return ret;
@@ -24246,10 +25161,12 @@
public:
private:
public:
- SkPdfImageDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfXObjectDictionary(podofoDoc, podofoObj) {}
+ SkPdfImageDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfXObjectDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfImageDictionary& operator=(const SkPdfImageDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -24547,6 +25464,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -24871,10 +25791,12 @@
public:
private:
public:
- SkPdfAlternateImageDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAlternateImageDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAlternateImageDictionary& operator=(const SkPdfAlternateImageDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Image() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Image", "", &ret)) return ret;
@@ -24906,10 +25828,12 @@
public:
private:
public:
- SkPdfType1FormDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfXObjectDictionary(podofoDoc, podofoObj) {}
+ SkPdfType1FormDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfXObjectDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType1FormDictionary& operator=(const SkPdfType1FormDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -24935,31 +25859,6 @@
return """";
}
- SkPdfObject* LastModified() const {
- SkPdfObject* ret;
- if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LastModified", "", &ret)) return ret;
- return NULL;
- }
-
- SkPdfObject* BBox() const {
- SkPdfObject* ret;
- if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BBox", "", &ret)) return ret;
- // TODO(edisonn): warn about missing required field, assert for known good pdfs
- return NULL;
- }
-
- SkPdfObject* Matrix() const {
- SkPdfObject* ret;
- if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Matrix", "", &ret)) return ret;
- return NULL;
- }
-
- SkPdfDictionary* Resources() const {
- SkPdfDictionary* ret;
- if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Resources", "", &ret)) return ret;
- return NULL;
- }
-
};
@@ -25149,6 +26048,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfHideActionDictionary* asHideActionDictionary() {return NULL;}
virtual const SkPdfHideActionDictionary* asHideActionDictionary() const {return NULL;}
@@ -25470,10 +26372,12 @@
public:
private:
public:
- SkPdfGroupAttributesDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfGroupAttributesDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfGroupAttributesDictionary& operator=(const SkPdfGroupAttributesDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -25676,6 +26580,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -25997,10 +26904,12 @@
public:
private:
public:
- SkPdfReferenceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfReferenceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfReferenceDictionary& operator=(const SkPdfReferenceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* F() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
@@ -26210,6 +27119,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -26531,10 +27443,12 @@
public:
private:
public:
- SkPdfPSXobjectDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPSXobjectDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPSXobjectDictionary& operator=(const SkPdfPSXobjectDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -26581,10 +27495,12 @@
public:
private:
public:
- SkPdfType1FontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfType1FontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType1FontDictionary& operator=(const SkPdfType1FontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -26678,10 +27594,12 @@
public:
private:
public:
- SkPdfType3FontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfType3FontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType3FontDictionary& operator=(const SkPdfType3FontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -26902,6 +27820,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -27226,10 +28147,12 @@
public:
private:
public:
- SkPdfEncodingDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEncodingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEncodingDictionary& operator=(const SkPdfEncodingDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -27434,6 +28357,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -27758,10 +28684,12 @@
public:
private:
public:
- SkPdfCIDSystemInfoDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCIDSystemInfoDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCIDSystemInfoDictionary& operator=(const SkPdfCIDSystemInfoDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Registry() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Registry", "", &ret)) return ret;
@@ -27813,10 +28741,12 @@
public:
private:
public:
- SkPdfCIDFontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfCIDFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCIDFontDictionary& operator=(const SkPdfCIDFontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -28067,6 +28997,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -28391,10 +29324,12 @@
public:
private:
public:
- SkPdfCMapDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCMapDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCMapDictionary& operator=(const SkPdfCMapDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -28458,10 +29393,12 @@
public:
private:
public:
- SkPdfType0FontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
+ SkPdfType0FontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfFontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType0FontDictionary& operator=(const SkPdfType0FontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -28689,6 +29626,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -29013,10 +29953,12 @@
public:
private:
public:
- SkPdfFontDescriptorDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFontDescriptorDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFontDescriptorDictionary& operator=(const SkPdfFontDescriptorDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -29326,6 +30268,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -29650,10 +30595,12 @@
public:
private:
public:
- SkPdfCIDFontDescriptorDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCIDFontDescriptorDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCIDFontDescriptorDictionary& operator=(const SkPdfCIDFontDescriptorDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* Style() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Style", "", &ret)) return ret;
@@ -29864,6 +30811,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -30188,10 +31138,12 @@
public:
private:
public:
- SkPdfEmbeddedFontStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEmbeddedFontStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEmbeddedFontStreamDictionary& operator=(const SkPdfEmbeddedFontStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Length1() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Length1", "", &ret)) return ret;
@@ -30411,6 +31363,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -30732,10 +31687,12 @@
public:
private:
public:
- SkPdfType1HalftoneDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType1HalftoneDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType1HalftoneDictionary& operator=(const SkPdfType1HalftoneDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -30977,6 +31934,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -31298,10 +32258,12 @@
public:
private:
public:
- SkPdfType6HalftoneDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType6HalftoneDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType6HalftoneDictionary& operator=(const SkPdfType6HalftoneDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -31530,6 +32492,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -31851,10 +32816,12 @@
public:
private:
public:
- SkPdfType10HalftoneDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType10HalftoneDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType10HalftoneDictionary& operator=(const SkPdfType10HalftoneDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -32083,6 +33050,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -32404,10 +33374,12 @@
public:
private:
public:
- SkPdfType16HalftoneDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType16HalftoneDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType16HalftoneDictionary& operator=(const SkPdfType16HalftoneDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -32648,6 +33620,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -32969,10 +33944,12 @@
public:
private:
public:
- SkPdfType5HalftoneDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfType5HalftoneDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfType5HalftoneDictionary& operator=(const SkPdfType5HalftoneDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -33196,6 +34173,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -33517,10 +34497,12 @@
public:
private:
public:
- SkPdfSoftMaskDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSoftMaskDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSoftMaskDictionary& operator=(const SkPdfSoftMaskDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -33742,6 +34724,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -34063,10 +35048,12 @@
public:
private:
public:
- SkPdfSoftMaskImageDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSoftMaskImageDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSoftMaskImageDictionary& operator=(const SkPdfSoftMaskImageDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Matte() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Matte", "", &ret)) return ret;
@@ -34262,6 +35249,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -34583,10 +35573,12 @@
public:
private:
public:
- SkPdfTransparencyGroupDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTransparencyGroupDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTransparencyGroupDictionary& operator=(const SkPdfTransparencyGroupDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -34789,6 +35781,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -35110,10 +36105,12 @@
public:
private:
public:
- SkPdfViewerPreferencesDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfViewerPreferencesDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfViewerPreferencesDictionary& operator=(const SkPdfViewerPreferencesDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* HideToolbar() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "HideToolbar", "", &ret)) return ret;
@@ -35375,6 +36372,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -35696,10 +36696,12 @@
public:
private:
public:
- SkPdfOutlineDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfOutlineDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfOutlineDictionary& operator=(const SkPdfOutlineDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -35913,6 +36915,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -36234,10 +37239,12 @@
public:
private:
public:
- SkPdfOutlineItemDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfOutlineItemDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfOutlineItemDictionary& operator=(const SkPdfOutlineItemDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Title() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Title", "", &ret)) return ret;
@@ -36500,6 +37507,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -36821,10 +37831,12 @@
public:
private:
public:
- SkPdfPageLabelDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPageLabelDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPageLabelDictionary& operator=(const SkPdfPageLabelDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -37038,6 +38050,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -37359,10 +38374,12 @@
public:
private:
public:
- SkPdfThreadDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfThreadDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfThreadDictionary& operator=(const SkPdfThreadDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -37567,6 +38584,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -37891,10 +38911,12 @@
public:
private:
public:
- SkPdfBeadDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfBeadDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBeadDictionary& operator=(const SkPdfBeadDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -38121,6 +39143,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -38442,10 +39467,12 @@
public:
private:
public:
- SkPdfTransitionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTransitionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTransitionDictionary& operator=(const SkPdfTransitionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -38668,6 +39695,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -38992,10 +40022,12 @@
public:
private:
public:
- SkPdfAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAnnotationDictionary& operator=(const SkPdfAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -39058,6 +40090,60 @@
return NULL;
}
+ SkPdfDictionary* AP() const {
+ SkPdfDictionary* ret;
+ if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AP", "", &ret)) return ret;
+ return NULL;
+ }
+
+ std::string AS() const {
+ std::string ret;
+ if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AS", "", &ret)) return ret;
+ return """";
+ }
+
+ SkPdfObject* C() const {
+ SkPdfObject* ret;
+ if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", &ret)) return ret;
+ return NULL;
+ }
+
+ double CA() const {
+ double ret;
+ if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "CA", "", &ret)) return ret;
+ return 0;
+ }
+
+ std::string T() const {
+ std::string ret;
+ if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "T", "", &ret)) return ret;
+ return "";
+ }
+
+ SkPdfDictionary* Popup() const {
+ SkPdfDictionary* ret;
+ if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Popup", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfDictionary* A() const {
+ SkPdfDictionary* ret;
+ if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "A", "", &ret)) return ret;
+ return NULL;
+ }
+
+ SkPdfDictionary* AA() const {
+ SkPdfDictionary* ret;
+ if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AA", "", &ret)) return ret;
+ return NULL;
+ }
+
+ long StructParent() const {
+ long ret;
+ if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "StructParent", "", &ret)) return ret;
+ return 0;
+ }
+
};
@@ -39244,6 +40330,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -39568,10 +40657,12 @@
public:
private:
public:
- SkPdfBorderStyleDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfBorderStyleDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBorderStyleDictionary& operator=(const SkPdfBorderStyleDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -39782,6 +40873,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -40106,10 +41200,12 @@
public:
private:
public:
- SkPdfAppearanceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAppearanceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAppearanceDictionary& operator=(const SkPdfAppearanceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* N() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)) return ret;
@@ -40318,6 +41414,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -40639,10 +41738,12 @@
public:
private:
public:
- SkPdfTextAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTextAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTextAnnotationDictionary& operator=(const SkPdfTextAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -40855,6 +41956,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -41179,10 +42283,12 @@
public:
private:
public:
- SkPdfALinkAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfALinkAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfALinkAnnotationDictionary& operator=(const SkPdfALinkAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -41400,6 +42506,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -41724,10 +42833,12 @@
public:
private:
public:
- SkPdfFreeTextAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFreeTextAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFreeTextAnnotationDictionary& operator=(const SkPdfFreeTextAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -41944,6 +43055,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -42265,10 +43379,12 @@
public:
private:
public:
- SkPdfLineAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfLineAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfLineAnnotationDictionary& operator=(const SkPdfLineAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -42497,6 +43613,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -42818,10 +43937,12 @@
public:
private:
public:
- SkPdfSquareOrCircleAnnotation(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSquareOrCircleAnnotation(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSquareOrCircleAnnotation& operator=(const SkPdfSquareOrCircleAnnotation& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -43037,6 +44158,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -43358,10 +44482,12 @@
public:
private:
public:
- SkPdfMarkupAnnotationsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMarkupAnnotationsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMarkupAnnotationsDictionary& operator=(const SkPdfMarkupAnnotationsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -43572,6 +44698,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -43893,10 +45022,12 @@
public:
private:
public:
- SkPdfRubberStampAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfRubberStampAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfRubberStampAnnotationDictionary& operator=(const SkPdfRubberStampAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -44106,6 +45237,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -44427,10 +45561,12 @@
public:
private:
public:
- SkPdfInkAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfInkAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfInkAnnotationDictionary& operator=(const SkPdfInkAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -44647,6 +45783,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -44968,10 +46107,12 @@
public:
private:
public:
- SkPdfPopUpAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPopUpAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPopUpAnnotationDictionary& operator=(const SkPdfPopUpAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -45183,6 +46324,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -45507,10 +46651,12 @@
public:
private:
public:
- SkPdfFileAttachmentAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFileAttachmentAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFileAttachmentAnnotationDictionary& operator=(const SkPdfFileAttachmentAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -45727,6 +46873,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -46048,10 +47197,12 @@
public:
private:
public:
- SkPdfSoundAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSoundAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSoundAnnotationDictionary& operator=(const SkPdfSoundAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -46267,6 +47418,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -46588,10 +47742,12 @@
public:
private:
public:
- SkPdfMovieAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMovieAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMovieAnnotationDictionary& operator=(const SkPdfMovieAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -46807,6 +47963,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -47128,10 +48287,12 @@
public:
private:
public:
- SkPdfWidgetAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWidgetAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWidgetAnnotationDictionary& operator=(const SkPdfWidgetAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -47343,6 +48504,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -47667,10 +48831,12 @@
public:
private:
public:
- SkPdfActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfActionDictionary& operator=(const SkPdfActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -47876,6 +49042,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -48200,10 +49369,12 @@
public:
private:
public:
- SkPdfAnnotationActionsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAnnotationActionsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAnnotationActionsDictionary& operator=(const SkPdfAnnotationActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* E() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "E", "", &ret)) return ret;
@@ -48429,6 +49600,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -48750,10 +49924,12 @@
public:
private:
public:
- SkPdfPageObjectActionsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPageObjectActionsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPageObjectActionsDictionary& operator=(const SkPdfPageObjectActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* O() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "O", "", &ret)) return ret;
@@ -48952,6 +50128,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -49276,10 +50455,12 @@
public:
private:
public:
- SkPdfFormFieldActionsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFormFieldActionsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFormFieldActionsDictionary& operator=(const SkPdfFormFieldActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* K() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "", &ret)) return ret;
@@ -49490,6 +50671,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -49814,10 +50998,12 @@
public:
private:
public:
- SkPdfDocumentCatalogActionsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfDocumentCatalogActionsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfDocumentCatalogActionsDictionary& operator=(const SkPdfDocumentCatalogActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* DC() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DC", "", &ret)) return ret;
@@ -50034,6 +51220,9 @@
virtual SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() {return NULL;}
virtual const SkPdfFunctionCommonDictionary* asFunctionCommonDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -50358,10 +51547,12 @@
public:
private:
public:
- SkPdfGoToActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfGoToActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfGoToActionDictionary& operator=(const SkPdfGoToActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -50565,6 +51756,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -50886,10 +52080,12 @@
public:
private:
public:
- SkPdfRemoteGoToActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfRemoteGoToActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfRemoteGoToActionDictionary& operator=(const SkPdfRemoteGoToActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -51106,6 +52302,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -51427,10 +52626,12 @@
public:
private:
public:
- SkPdfLaunchActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfLaunchActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfLaunchActionDictionary& operator=(const SkPdfLaunchActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -51657,6 +52858,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -51978,10 +53182,12 @@
public:
private:
public:
- SkPdfWindowsLaunchActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWindowsLaunchActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWindowsLaunchActionDictionary& operator=(const SkPdfWindowsLaunchActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string F() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
@@ -52196,6 +53402,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -52517,10 +53726,12 @@
public:
private:
public:
- SkPdfThreadActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfThreadActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfThreadActionDictionary& operator=(const SkPdfThreadActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -52736,6 +53947,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -53057,10 +54271,12 @@
public:
private:
public:
- SkPdfURIActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfURIActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfURIActionDictionary& operator=(const SkPdfURIActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -53270,6 +54486,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -53591,10 +54810,12 @@
public:
private:
public:
- SkPdfURIDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfURIDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfURIDictionary& operator=(const SkPdfURIDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Base() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Base", "", &ret)) return ret;
@@ -53790,6 +55011,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -54111,10 +55335,12 @@
public:
private:
public:
- SkPdfSoundActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSoundActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSoundActionDictionary& operator=(const SkPdfSoundActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -54342,6 +55568,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -54663,10 +55892,12 @@
public:
private:
public:
- SkPdfMovieActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMovieActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMovieActionDictionary& operator=(const SkPdfMovieActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -54881,6 +56112,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -55202,10 +56436,12 @@
public:
private:
public:
- SkPdfHideActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfHideActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfHideActionDictionary& operator=(const SkPdfHideActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -55415,6 +56651,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -55736,10 +56975,12 @@
public:
private:
public:
- SkPdfNamedActionsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfNamedActionsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfNamedActionsDictionary& operator=(const SkPdfNamedActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -55943,6 +57184,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -56264,10 +57508,12 @@
public:
private:
public:
- SkPdfInteractiveFormDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfInteractiveFormDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfInteractiveFormDictionary& operator=(const SkPdfInteractiveFormDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Fields() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Fields", "", &ret)) return ret;
@@ -56497,6 +57743,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -56821,10 +58070,12 @@
public:
private:
public:
- SkPdfFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFieldDictionary& operator=(const SkPdfFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string FT() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FT", "", &ret)) return ret;
@@ -57074,6 +58325,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -57395,10 +58649,12 @@
public:
private:
public:
- SkPdfVariableTextFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfVariableTextFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfVariableTextFieldDictionary& operator=(const SkPdfVariableTextFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* DR() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "DR", "", &ret)) return ret;
@@ -57605,6 +58861,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -57929,10 +59188,12 @@
public:
private:
public:
- SkPdfAppearanceCharacteristicsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAppearanceCharacteristicsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAppearanceCharacteristicsDictionary& operator=(const SkPdfAppearanceCharacteristicsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long R() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "R", "", &ret)) return ret;
@@ -58185,6 +59446,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -58509,10 +59773,12 @@
public:
private:
public:
- SkPdfCheckboxFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfCheckboxFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfCheckboxFieldDictionary& operator=(const SkPdfCheckboxFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Opt() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Opt", "", &ret)) return ret;
@@ -58708,6 +59974,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -59029,10 +60298,12 @@
public:
private:
public:
- SkPdfRadioButtonFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfRadioButtonFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfRadioButtonFieldDictionary& operator=(const SkPdfRadioButtonFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Opt() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Opt", "", &ret)) return ret;
@@ -59228,6 +60499,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -59549,10 +60823,12 @@
public:
private:
public:
- SkPdfTextFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTextFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTextFieldDictionary& operator=(const SkPdfTextFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long MaxLen() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "MaxLen", "", &ret)) return ret;
@@ -59745,6 +61021,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -60069,10 +61348,12 @@
public:
private:
public:
- SkPdfChoiceFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfChoiceFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfChoiceFieldDictionary& operator=(const SkPdfChoiceFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Opt() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Opt", "", &ret)) return ret;
@@ -60281,6 +61562,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -60602,10 +61886,12 @@
public:
private:
public:
- SkPdfSignatureDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSignatureDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSignatureDictionary& operator=(const SkPdfSignatureDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -60852,6 +62138,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -61173,10 +62462,12 @@
public:
private:
public:
- SkPdfSubmitFormActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSubmitFormActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSubmitFormActionDictionary& operator=(const SkPdfSubmitFormActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -61392,6 +62683,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -61713,10 +63007,12 @@
public:
private:
public:
- SkPdfResetFormActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfResetFormActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfResetFormActionDictionary& operator=(const SkPdfResetFormActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -61925,6 +63221,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -62246,10 +63545,12 @@
public:
private:
public:
- SkPdfImportDataActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfImportDataActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfImportDataActionDictionary& operator=(const SkPdfImportDataActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -62453,6 +63754,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -62774,10 +64078,12 @@
public:
private:
public:
- SkPdfJavascriptActionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfJavascriptActionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfJavascriptActionDictionary& operator=(const SkPdfJavascriptActionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -62978,6 +64284,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -63302,10 +64611,12 @@
public:
private:
public:
- SkPdfFDFTrailerDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFTrailerDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFTrailerDictionary& operator=(const SkPdfFDFTrailerDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* Root() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Root", "", &ret)) return ret;
@@ -63498,6 +64809,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -63822,10 +65136,12 @@
public:
private:
public:
- SkPdfFDFCatalogDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFCatalogDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFCatalogDictionary& operator=(const SkPdfFDFCatalogDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Version() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Version", "", &ret)) return ret;
@@ -64025,6 +65341,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -64349,10 +65668,12 @@
public:
private:
public:
- SkPdfFDFDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFDictionary& operator=(const SkPdfFDFDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* F() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
@@ -64605,6 +65926,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -64929,10 +66253,12 @@
public:
private:
public:
- SkPdfEncryptedEmbeddedFileStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfEncryptedEmbeddedFileStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfEncryptedEmbeddedFileStreamDictionary& operator=(const SkPdfEncryptedEmbeddedFileStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long EncryptionRevision() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "EncryptionRevision", "", &ret)) return ret;
@@ -65128,6 +66454,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -65449,10 +66778,12 @@
public:
private:
public:
- SkPdfJavascriptDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfJavascriptDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfJavascriptDictionary& operator=(const SkPdfJavascriptDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Before() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Before", "", &ret)) return ret;
@@ -65657,6 +66988,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -65981,10 +67315,12 @@
public:
private:
public:
- SkPdfFDFFieldDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFFieldDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFFieldDictionary& operator=(const SkPdfFDFFieldDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Kids() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Kids", "", &ret)) return ret;
@@ -66265,6 +67601,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -66586,10 +67925,12 @@
public:
private:
public:
- SkPdfIconFitDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfIconFitDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfIconFitDictionary& operator=(const SkPdfIconFitDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string SW() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SW", "", &ret)) return ret;
@@ -66797,6 +68138,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -67121,10 +68465,12 @@
public:
private:
public:
- SkPdfFDFPageDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFPageDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFPageDictionary& operator=(const SkPdfFDFPageDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Templates() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Templates", "", &ret)) return ret;
@@ -67324,6 +68670,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -67648,10 +68997,12 @@
public:
private:
public:
- SkPdfFDFTemplateDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFTemplateDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFTemplateDictionary& operator=(const SkPdfFDFTemplateDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* TRef() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "TRef", "", &ret)) return ret;
@@ -67857,6 +69208,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -68181,10 +69535,12 @@
public:
private:
public:
- SkPdfFDFNamedPageReferenceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFNamedPageReferenceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFNamedPageReferenceDictionary& operator=(const SkPdfFDFNamedPageReferenceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Name() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name", "", &ret)) return ret;
@@ -68384,6 +69740,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -68708,10 +70067,12 @@
public:
private:
public:
- SkPdfFDFFileAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfFDFFileAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfFDFFileAnnotationDictionary& operator=(const SkPdfFDFFileAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long Page() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Page", "", &ret)) return ret;
@@ -68907,6 +70268,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -69228,10 +70592,12 @@
public:
private:
public:
- SkPdfSoundObjectDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSoundObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSoundObjectDictionary& operator=(const SkPdfSoundObjectDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -69464,6 +70830,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -69785,10 +71154,12 @@
public:
private:
public:
- SkPdfMovieDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMovieDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMovieDictionary& operator=(const SkPdfMovieDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* F() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret;
@@ -70003,6 +71374,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -70324,10 +71698,12 @@
public:
private:
public:
- SkPdfMovieActivationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMovieActivationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMovieActivationDictionary& operator=(const SkPdfMovieActivationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Start() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Start", "", &ret)) return ret;
@@ -70568,6 +71944,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -70892,10 +72271,12 @@
public:
private:
public:
- SkPdfDocumentInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfDocumentInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfDocumentInformationDictionary& operator=(const SkPdfDocumentInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Title() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Title", "", &ret)) return ret;
@@ -71139,6 +72520,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -71460,10 +72844,12 @@
public:
private:
public:
- SkPdfMetadataStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMetadataStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMetadataStreamDictionary& operator=(const SkPdfMetadataStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -71664,6 +73050,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -71988,10 +73377,12 @@
public:
private:
public:
- SkPdfComponentsWithMetadataDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfComponentsWithMetadataDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfComponentsWithMetadataDictionary& operator=(const SkPdfComponentsWithMetadataDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Metadata() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Metadata", "", &ret)) return ret;
@@ -72187,6 +73578,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -72508,10 +73902,12 @@
public:
private:
public:
- SkPdfPagePieceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPagePieceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPagePieceDictionary& operator=(const SkPdfPagePieceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
/*
SkPdfDictionary* [any_application_name_or_well_known_data_type]() const {
SkPdfDictionary* ret;
@@ -72706,6 +74102,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -73030,10 +74429,12 @@
public:
private:
public:
- SkPdfApplicationDataDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfApplicationDataDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfApplicationDataDictionary& operator=(const SkPdfApplicationDataDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* LastModified() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LastModified", "", &ret)) return ret;
@@ -73236,6 +74637,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -73557,10 +74961,12 @@
public:
private:
public:
- SkPdfStructureTreeRootDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStructureTreeRootDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStructureTreeRootDictionary& operator=(const SkPdfStructureTreeRootDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -73793,6 +75199,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -74114,10 +75523,12 @@
public:
private:
public:
- SkPdfStructureElementDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStructureElementDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStructureElementDictionary& operator=(const SkPdfStructureElementDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -74386,6 +75797,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -74707,10 +76121,12 @@
public:
private:
public:
- SkPdfMarkedContentReferenceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMarkedContentReferenceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMarkedContentReferenceDictionary& operator=(const SkPdfMarkedContentReferenceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -74932,6 +76348,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -75253,10 +76672,12 @@
public:
private:
public:
- SkPdfObjectReferenceDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfObjectReferenceDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfObjectReferenceDictionary& operator=(const SkPdfObjectReferenceDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -75465,6 +76886,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -75786,10 +77210,12 @@
public:
private:
public:
- SkPdfStructureElementAccessDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStructureElementAccessDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStructureElementAccessDictionary& operator=(const SkPdfStructureElementAccessDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long StructParent() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "StructParent", "", &ret)) return ret;
@@ -75988,6 +77414,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -76312,10 +77741,12 @@
public:
private:
public:
- SkPdfAttributeObjectDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfAttributeObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfAttributeObjectDictionary& operator=(const SkPdfAttributeObjectDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string O() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "O", "", &ret)) return ret;
@@ -76512,6 +77943,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -76833,10 +78267,12 @@
public:
private:
public:
- SkPdfMarkInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfMarkInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMarkInformationDictionary& operator=(const SkPdfMarkInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Marked() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Marked", "", &ret)) return ret;
@@ -77029,6 +78465,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -77353,10 +78792,12 @@
public:
private:
public:
- SkPdfArtifactsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfArtifactsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfArtifactsDictionary& operator=(const SkPdfArtifactsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -77564,6 +79005,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -77885,10 +79329,12 @@
public:
private:
public:
- SkPdfStandardStructureDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfStandardStructureDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfStandardStructureDictionary& operator=(const SkPdfStandardStructureDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Placement() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Placement", "", &ret)) return ret;
@@ -78087,6 +79533,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -78411,10 +79860,12 @@
public:
private:
public:
- SkPdfBlockLevelStructureElementsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfBlockLevelStructureElementsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBlockLevelStructureElementsDictionary& operator=(const SkPdfBlockLevelStructureElementsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
double SpaceBefore() const {
double ret;
if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "SpaceBefore", "", &ret)) return ret;
@@ -78670,6 +80121,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -78991,10 +80445,12 @@
public:
private:
public:
- SkPdfInlineLevelStructureElementsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfInlineLevelStructureElementsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfInlineLevelStructureElementsDictionary& operator=(const SkPdfInlineLevelStructureElementsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* LineHeight() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LineHeight", "", &ret)) return ret;
@@ -79190,6 +80646,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -79511,10 +80970,12 @@
public:
private:
public:
- SkPdfListAttributeDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfListAttributeDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfListAttributeDictionary& operator=(const SkPdfListAttributeDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string ListNumbering() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ListNumbering", "", &ret)) return ret;
@@ -79710,6 +81171,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -80031,10 +81495,12 @@
public:
private:
public:
- SkPdfTableAttributesDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTableAttributesDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTableAttributesDictionary& operator=(const SkPdfTableAttributesDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
long RowSpan() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RowSpan", "", &ret)) return ret;
@@ -80236,6 +81702,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -80557,10 +82026,12 @@
public:
private:
public:
- SkPdfWebCaptureInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCaptureInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCaptureInformationDictionary& operator=(const SkPdfWebCaptureInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
double V() const {
double ret;
if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "V", "", &ret)) return ret;
@@ -80763,6 +82234,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -81084,10 +82558,12 @@
public:
private:
public:
- SkPdfWebCaptureDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCaptureDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCaptureDictionary& operator=(const SkPdfWebCaptureDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -81323,6 +82799,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -81644,10 +83123,12 @@
public:
private:
public:
- SkPdfWebCapturePageSetDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCapturePageSetDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCapturePageSetDictionary& operator=(const SkPdfWebCapturePageSetDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -81856,6 +83337,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -82177,10 +83661,12 @@
public:
private:
public:
- SkPdfWebCaptureImageSetDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCaptureImageSetDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCaptureImageSetDictionary& operator=(const SkPdfWebCaptureImageSetDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
@@ -82384,6 +83870,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -82705,10 +84194,12 @@
public:
private:
public:
- SkPdfSourceInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSourceInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSourceInformationDictionary& operator=(const SkPdfSourceInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* AU() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "AU", "", &ret)) return ret;
@@ -82929,6 +84420,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -83250,10 +84744,12 @@
public:
private:
public:
- SkPdfURLAliasDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfURLAliasDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfURLAliasDictionary& operator=(const SkPdfURLAliasDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string U() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "U", "", &ret)) return ret;
@@ -83456,6 +84952,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -83777,10 +85276,12 @@
public:
private:
public:
- SkPdfWebCaptureCommandDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCaptureCommandDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCaptureCommandDictionary& operator=(const SkPdfWebCaptureCommandDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string URL() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "URL", "", &ret)) return ret;
@@ -84013,6 +85514,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -84334,10 +85838,12 @@
public:
private:
public:
- SkPdfWebCaptureCommandSettingsDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfWebCaptureCommandSettingsDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfWebCaptureCommandSettingsDictionary& operator=(const SkPdfWebCaptureCommandSettingsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* G() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "G", "", &ret)) return ret;
@@ -84536,6 +86042,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -84860,10 +86369,12 @@
public:
private:
public:
- SkPdfBoxColorInformationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfBoxColorInformationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBoxColorInformationDictionary& operator=(const SkPdfBoxColorInformationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* CropBox() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "CropBox", "", &ret)) return ret;
@@ -85074,6 +86585,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -85398,10 +86912,12 @@
public:
private:
public:
- SkPdfBoxStyleDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfBoxStyleDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfBoxStyleDictionary& operator=(const SkPdfBoxStyleDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* C() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", &ret)) return ret;
@@ -85616,6 +87132,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -85937,10 +87456,12 @@
public:
private:
public:
- SkPdfPrinterMarkAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPrinterMarkAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPrinterMarkAnnotationDictionary& operator=(const SkPdfPrinterMarkAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -86143,6 +87664,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -86464,10 +87988,12 @@
public:
private:
public:
- SkPdfPrinterMarkFormDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPrinterMarkFormDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPrinterMarkFormDictionary& operator=(const SkPdfPrinterMarkFormDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string MarkStyle() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "MarkStyle", "", &ret)) return ret;
@@ -86669,6 +88195,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -86990,10 +88519,12 @@
public:
private:
public:
- SkPdfSeparationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfSeparationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfSeparationDictionary& operator=(const SkPdfSeparationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfObject* Pages() const {
SkPdfObject* ret;
if (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Pages", "", &ret)) return ret;
@@ -87203,6 +88734,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -87524,10 +89058,12 @@
public:
private:
public:
- SkPdfPDF_XOutputIntentDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfPDF_XOutputIntentDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfPDF_XOutputIntentDictionary& operator=(const SkPdfPDF_XOutputIntentDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
@@ -87761,6 +89297,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -88082,10 +89621,12 @@
public:
private:
public:
- SkPdfTrapNetworkAnnotationDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTrapNetworkAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTrapNetworkAnnotationDictionary& operator=(const SkPdfTrapNetworkAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -88312,6 +89853,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -88633,10 +90177,12 @@
public:
private:
public:
- SkPdfTrapNetworkAppearanceStreamDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfTrapNetworkAppearanceStreamDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfTrapNetworkAppearanceStreamDictionary& operator=(const SkPdfTrapNetworkAppearanceStreamDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string PCM() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "PCM", "", &ret)) return ret;
@@ -88851,6 +90397,9 @@
virtual SkPdfGoToActionDictionary* asGoToActionDictionary() {return NULL;}
virtual const SkPdfGoToActionDictionary* asGoToActionDictionary() const {return NULL;}
+ virtual SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() {return NULL;}
+ virtual const SkPdfGraphicsStateDictionary* asGraphicsStateDictionary() const {return NULL;}
+
virtual SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() {return NULL;}
virtual const SkPdfGroupAttributesDictionary* asGroupAttributesDictionary() const {return NULL;}
@@ -89172,10 +90721,12 @@
public:
private:
public:
- SkPdfOpiVersionDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfDictionary(podofoDoc, podofoObj) {}
+ SkPdfOpiVersionDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfOpiVersionDictionary& operator=(const SkPdfOpiVersionDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
SkPdfDictionary* version_number() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "version_number", "", &ret)) return ret;
@@ -89198,10 +90749,12 @@
public:
private:
public:
- SkPdfMultiMasterFontDictionary(const PdfMemDocument* podofoDoc, const PdfObject* podofoObj) : SkPdfType1FontDictionary(podofoDoc, podofoObj) {}
+ SkPdfMultiMasterFontDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfType1FontDictionary(podofoDoc, podofoObj) {}
virtual bool valid() const {return true;}
+ SkPdfMultiMasterFontDictionary& operator=(const SkPdfMultiMasterFontDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -89214,25 +90767,33 @@
class PodofoMapper {
public:
- static bool mapObject(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfObject** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
if (!isAObject(podofoDoc, podofoObj)) return false;
- if (mapArray(podofoDoc, podofoObj, out)) return true;
- if (mapBoolean(podofoDoc, podofoObj, out)) return true;
- if (mapDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapHexString(podofoDoc, podofoObj, out)) return true;
- if (mapInteger(podofoDoc, podofoObj, out)) return true;
- if (mapName(podofoDoc, podofoObj, out)) return true;
- if (mapNull(podofoDoc, podofoObj, out)) return true;
- if (mapNumber(podofoDoc, podofoObj, out)) return true;
- if (mapReference(podofoDoc, podofoObj, out)) return true;
- if (mapString(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfArray**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBoolean**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfHexString**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfInteger**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfName**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNull**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNumber**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfReference**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfString**)out)) return true;
*out = new SkPdfObject(&podofoDoc, &podofoObj);
return true;
}
- static bool mapNull(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNull** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNull** out) {
if (!isANull(podofoDoc, podofoObj)) return false;
@@ -89240,7 +90801,11 @@
return true;
}
- static bool mapBoolean(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBoolean** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBoolean** out) {
if (!isABoolean(podofoDoc, podofoObj)) return false;
@@ -89248,7 +90813,11 @@
return true;
}
- static bool mapInteger(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfInteger** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfInteger** out) {
if (!isAInteger(podofoDoc, podofoObj)) return false;
@@ -89256,7 +90825,11 @@
return true;
}
- static bool mapNumber(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNumber** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNumber** out) {
if (!isANumber(podofoDoc, podofoObj)) return false;
@@ -89264,7 +90837,11 @@
return true;
}
- static bool mapName(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfName** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfName** out) {
if (!isAName(podofoDoc, podofoObj)) return false;
@@ -89272,7 +90849,11 @@
return true;
}
- static bool mapReference(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfReference** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfReference** out) {
if (!isAReference(podofoDoc, podofoObj)) return false;
@@ -89280,7 +90861,11 @@
return true;
}
- static bool mapArray(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfArray** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfArray** out) {
if (!isAArray(podofoDoc, podofoObj)) return false;
@@ -89288,7 +90873,11 @@
return true;
}
- static bool mapString(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfString** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfString** out) {
if (!isAString(podofoDoc, podofoObj)) return false;
@@ -89296,7 +90885,11 @@
return true;
}
- static bool mapHexString(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfHexString** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfHexString** out) {
if (!isAHexString(podofoDoc, podofoObj)) return false;
@@ -89304,190 +90897,207 @@
return true;
}
- static bool mapDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfDictionary** out) {
if (!isADictionary(podofoDoc, podofoObj)) return false;
- if (mapALinkAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAlternateImageDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAnnotationActionsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAppearanceCharacteristicsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAppearanceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapApplicationDataDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapArtifactsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapAttributeObjectDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapBeadDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapBlockLevelStructureElementsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapBorderStyleDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapBoxColorInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapBoxStyleDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCIDFontDescriptorDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCIDSystemInfoDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCMapDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCalgrayColorSpaceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCalrgbColorSpaceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCatalogDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCcittfaxdecodeFilterDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapCheckboxFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapChoiceFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapComponentsWithMetadataDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapDctdecodeFilterDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapDeviceNColorSpaceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapDocumentCatalogActionsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapDocumentInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEmbeddedFileParameterDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEmbeddedFileStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEmbeddedFontStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEncodingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEncryptedEmbeddedFileStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapEncryptionCommonDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFCatalogDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFFileAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFNamedPageReferenceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFPageDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFTemplateDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFDFTrailerDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFileAttachmentAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFileSpecificationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFileTrailerDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFontDescriptorDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFontDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFormFieldActionsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFreeTextAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapFunctionCommonDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapGoToActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapGroupAttributesDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapHideActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapIccProfileStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapIconFitDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapImportDataActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapInkAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapInlineLevelStructureElementsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapInteractiveFormDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapJavascriptActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapJavascriptDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapJbig2DecodeFilterDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapLabColorSpaceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapLaunchActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapLineAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapListAttributeDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapLzwdecodeAndFlatedecodeFiltersDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMacOsFileInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMarkInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMarkedContentReferenceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMarkupAnnotationsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMetadataStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMovieActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMovieActivationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMovieAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapMovieDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapNameDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapNameTreeNodeDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapNamedActionsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapNumberTreeNodeDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapObjectReferenceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapOpiVersionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapOutlineDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapOutlineItemDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPDF_XOutputIntentDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPSXobjectDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPageLabelDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPageObjectActionsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPageObjectDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPagePieceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPageTreeNodeDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPopUpAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPrinterMarkAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapPrinterMarkFormDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapRadioButtonFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapReferenceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapRemoteGoToActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapResetFormActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapResourceDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapRubberStampAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSeparationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSignatureDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSoftMaskDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSoftMaskImageDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSoundActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSoundAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSoundObjectDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSourceInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSquareOrCircleAnnotation(podofoDoc, podofoObj, out)) return true;
- if (mapStandardSecurityHandlerDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapStandardStructureDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapStreamCommonDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapStructureElementAccessDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapStructureElementDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapStructureTreeRootDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapSubmitFormActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTableAttributesDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTextAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTextFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapThreadActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapThreadDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTransitionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTransparencyGroupDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTrapNetworkAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTrapNetworkAppearanceStreamDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType0FunctionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType10HalftoneDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType16HalftoneDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType1HalftoneDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType1PatternDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType2FunctionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType2PatternDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType3FunctionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType5HalftoneDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType6HalftoneDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapURIActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapURIDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapURLAliasDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapVariableTextFieldDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapViewerPreferencesDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCaptureCommandDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCaptureCommandSettingsDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCaptureDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCaptureImageSetDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCaptureInformationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWebCapturePageSetDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWidgetAnnotationDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapWindowsLaunchActionDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapXObjectDictionary(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfALinkAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAlternateImageDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAnnotationActionsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAppearanceCharacteristicsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAppearanceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfApplicationDataDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfArtifactsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfAttributeObjectDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBeadDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBlockLevelStructureElementsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBorderStyleDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBoxColorInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfBoxStyleDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCIDFontDescriptorDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCIDSystemInfoDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCMapDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCalgrayColorSpaceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCalrgbColorSpaceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCatalogDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCcittfaxdecodeFilterDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCheckboxFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfChoiceFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfComponentsWithMetadataDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfDctdecodeFilterDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfDeviceNColorSpaceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfDocumentCatalogActionsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfDocumentInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEmbeddedFileParameterDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEmbeddedFileStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEmbeddedFontStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEncodingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEncryptedEmbeddedFileStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfEncryptionCommonDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFCatalogDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFFileAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFNamedPageReferenceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFPageDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFTemplateDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFDFTrailerDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFileAttachmentAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFileSpecificationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFileTrailerDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFontDescriptorDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFontDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFormFieldActionsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFreeTextAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfFunctionCommonDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfGoToActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfGraphicsStateDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfGroupAttributesDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfHideActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfIccProfileStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfIconFitDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfImportDataActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfInkAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfInlineLevelStructureElementsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfInteractiveFormDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfJavascriptActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfJavascriptDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfJbig2DecodeFilterDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfLabColorSpaceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfLaunchActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfLineAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfListAttributeDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfLzwdecodeAndFlatedecodeFiltersDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMacOsFileInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMarkInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMarkedContentReferenceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMarkupAnnotationsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMetadataStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMovieActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMovieActivationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMovieAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMovieDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNameDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNameTreeNodeDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNamedActionsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfNumberTreeNodeDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfObjectReferenceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfOpiVersionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfOutlineDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfOutlineItemDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPDF_XOutputIntentDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPSXobjectDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPageLabelDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPageObjectActionsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPageObjectDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPagePieceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPageTreeNodeDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPopUpAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPrinterMarkAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfPrinterMarkFormDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfRadioButtonFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfReferenceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfRemoteGoToActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfResetFormActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfResourceDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfRubberStampAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSeparationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSignatureDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSoftMaskDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSoftMaskImageDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSoundActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSoundAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSoundObjectDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSourceInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSquareOrCircleAnnotation**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStandardSecurityHandlerDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStandardStructureDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStreamCommonDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStructureElementAccessDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStructureElementDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfStructureTreeRootDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfSubmitFormActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTableAttributesDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTextAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTextFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfThreadActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfThreadDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTransitionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTransparencyGroupDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTrapNetworkAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTrapNetworkAppearanceStreamDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType0FunctionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType10HalftoneDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType16HalftoneDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType1HalftoneDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType1PatternDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType2FunctionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType2PatternDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType3FunctionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType5HalftoneDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType6HalftoneDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfURIActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfURIDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfURLAliasDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfVariableTextFieldDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfViewerPreferencesDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCaptureCommandDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCaptureCommandSettingsDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCaptureDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCaptureImageSetDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCaptureInformationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWebCapturePageSetDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWidgetAnnotationDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfWindowsLaunchActionDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfXObjectDictionary**)out)) return true;
*out = new SkPdfDictionary(&podofoDoc, &podofoObj);
return true;
}
- static bool mapXObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfXObjectDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfXObjectDictionary** out) {
if (!isAXObjectDictionary(podofoDoc, podofoObj)) return false;
- if (mapImageDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType1FormDictionary(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfImageDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType1FormDictionary**)out)) return true;
*out = new SkPdfXObjectDictionary(&podofoDoc, &podofoObj);
return true;
}
- static bool mapFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFontDictionary** out) {
if (!isAFontDictionary(podofoDoc, podofoObj)) return false;
- if (mapCIDFontDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapTrueTypeFontDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType0FontDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType1FontDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType3FontDictionary(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfCIDFontDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfTrueTypeFontDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType0FontDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType1FontDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType3FontDictionary**)out)) return true;
*out = new SkPdfFontDictionary(&podofoDoc, &podofoObj);
return true;
}
- static bool mapTrueTypeFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTrueTypeFontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTrueTypeFontDictionary** out) {
if (!isATrueTypeFontDictionary(podofoDoc, podofoObj)) return false;
@@ -89495,7 +91105,11 @@
return true;
}
- static bool mapStreamCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStreamCommonDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStreamCommonDictionary** out) {
if (!isAStreamCommonDictionary(podofoDoc, podofoObj)) return false;
@@ -89503,7 +91117,11 @@
return true;
}
- static bool mapLzwdecodeAndFlatedecodeFiltersDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfLzwdecodeAndFlatedecodeFiltersDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfLzwdecodeAndFlatedecodeFiltersDictionary** out) {
if (!isALzwdecodeAndFlatedecodeFiltersDictionary(podofoDoc, podofoObj)) return false;
@@ -89511,7 +91129,11 @@
return true;
}
- static bool mapCcittfaxdecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCcittfaxdecodeFilterDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCcittfaxdecodeFilterDictionary** out) {
if (!isACcittfaxdecodeFilterDictionary(podofoDoc, podofoObj)) return false;
@@ -89519,7 +91141,11 @@
return true;
}
- static bool mapJbig2DecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfJbig2DecodeFilterDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfJbig2DecodeFilterDictionary** out) {
if (!isAJbig2DecodeFilterDictionary(podofoDoc, podofoObj)) return false;
@@ -89527,7 +91153,11 @@
return true;
}
- static bool mapDctdecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfDctdecodeFilterDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfDctdecodeFilterDictionary** out) {
if (!isADctdecodeFilterDictionary(podofoDoc, podofoObj)) return false;
@@ -89535,7 +91165,11 @@
return true;
}
- static bool mapFileTrailerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFileTrailerDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFileTrailerDictionary** out) {
if (!isAFileTrailerDictionary(podofoDoc, podofoObj)) return false;
@@ -89543,7 +91177,11 @@
return true;
}
- static bool mapEncryptionCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEncryptionCommonDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEncryptionCommonDictionary** out) {
if (!isAEncryptionCommonDictionary(podofoDoc, podofoObj)) return false;
@@ -89551,7 +91189,11 @@
return true;
}
- static bool mapStandardSecurityHandlerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStandardSecurityHandlerDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStandardSecurityHandlerDictionary** out) {
if (!isAStandardSecurityHandlerDictionary(podofoDoc, podofoObj)) return false;
@@ -89559,7 +91201,11 @@
return true;
}
- static bool mapCatalogDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCatalogDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCatalogDictionary** out) {
if (!isACatalogDictionary(podofoDoc, podofoObj)) return false;
@@ -89567,7 +91213,11 @@
return true;
}
- static bool mapPageTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPageTreeNodeDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPageTreeNodeDictionary** out) {
if (!isAPageTreeNodeDictionary(podofoDoc, podofoObj)) return false;
@@ -89575,7 +91225,11 @@
return true;
}
- static bool mapPageObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPageObjectDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPageObjectDictionary** out) {
if (!isAPageObjectDictionary(podofoDoc, podofoObj)) return false;
@@ -89583,7 +91237,11 @@
return true;
}
- static bool mapNameDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNameDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNameDictionary** out) {
if (!isANameDictionary(podofoDoc, podofoObj)) return false;
@@ -89591,7 +91249,11 @@
return true;
}
- static bool mapResourceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfResourceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfResourceDictionary** out) {
if (!isAResourceDictionary(podofoDoc, podofoObj)) return false;
@@ -89599,7 +91261,11 @@
return true;
}
- static bool mapNameTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNameTreeNodeDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNameTreeNodeDictionary** out) {
if (!isANameTreeNodeDictionary(podofoDoc, podofoObj)) return false;
@@ -89607,7 +91273,11 @@
return true;
}
- static bool mapNumberTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNumberTreeNodeDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNumberTreeNodeDictionary** out) {
if (!isANumberTreeNodeDictionary(podofoDoc, podofoObj)) return false;
@@ -89615,7 +91285,11 @@
return true;
}
- static bool mapFunctionCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFunctionCommonDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFunctionCommonDictionary** out) {
if (!isAFunctionCommonDictionary(podofoDoc, podofoObj)) return false;
@@ -89623,7 +91297,11 @@
return true;
}
- static bool mapType0FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType0FunctionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType0FunctionDictionary** out) {
if (!isAType0FunctionDictionary(podofoDoc, podofoObj)) return false;
@@ -89631,7 +91309,11 @@
return true;
}
- static bool mapType2FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType2FunctionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType2FunctionDictionary** out) {
if (!isAType2FunctionDictionary(podofoDoc, podofoObj)) return false;
@@ -89639,7 +91321,11 @@
return true;
}
- static bool mapType3FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType3FunctionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType3FunctionDictionary** out) {
if (!isAType3FunctionDictionary(podofoDoc, podofoObj)) return false;
@@ -89647,7 +91333,11 @@
return true;
}
- static bool mapFileSpecificationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFileSpecificationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFileSpecificationDictionary** out) {
if (!isAFileSpecificationDictionary(podofoDoc, podofoObj)) return false;
@@ -89655,7 +91345,11 @@
return true;
}
- static bool mapEmbeddedFileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEmbeddedFileStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEmbeddedFileStreamDictionary** out) {
if (!isAEmbeddedFileStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -89663,7 +91357,11 @@
return true;
}
- static bool mapEmbeddedFileParameterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEmbeddedFileParameterDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEmbeddedFileParameterDictionary** out) {
if (!isAEmbeddedFileParameterDictionary(podofoDoc, podofoObj)) return false;
@@ -89671,7 +91369,11 @@
return true;
}
- static bool mapMacOsFileInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMacOsFileInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMacOsFileInformationDictionary** out) {
if (!isAMacOsFileInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -89679,7 +91381,23 @@
return true;
}
- static bool mapCalgrayColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfGraphicsStateDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfGraphicsStateDictionary** out) {
+ if (!isAGraphicsStateDictionary(podofoDoc, podofoObj)) return false;
+
+
+ *out = new SkPdfGraphicsStateDictionary(&podofoDoc, &podofoObj);
+ return true;
+ }
+
+ static bool map(const SkPdfObject& in, SkPdfCalgrayColorSpaceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCalgrayColorSpaceDictionary** out) {
if (!isACalgrayColorSpaceDictionary(podofoDoc, podofoObj)) return false;
@@ -89687,7 +91405,11 @@
return true;
}
- static bool mapCalrgbColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCalrgbColorSpaceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCalrgbColorSpaceDictionary** out) {
if (!isACalrgbColorSpaceDictionary(podofoDoc, podofoObj)) return false;
@@ -89695,7 +91417,11 @@
return true;
}
- static bool mapLabColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfLabColorSpaceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfLabColorSpaceDictionary** out) {
if (!isALabColorSpaceDictionary(podofoDoc, podofoObj)) return false;
@@ -89703,7 +91429,11 @@
return true;
}
- static bool mapIccProfileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfIccProfileStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfIccProfileStreamDictionary** out) {
if (!isAIccProfileStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -89711,7 +91441,11 @@
return true;
}
- static bool mapDeviceNColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfDeviceNColorSpaceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfDeviceNColorSpaceDictionary** out) {
if (!isADeviceNColorSpaceDictionary(podofoDoc, podofoObj)) return false;
@@ -89719,7 +91453,11 @@
return true;
}
- static bool mapType1PatternDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType1PatternDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType1PatternDictionary** out) {
if (!isAType1PatternDictionary(podofoDoc, podofoObj)) return false;
@@ -89727,7 +91465,11 @@
return true;
}
- static bool mapType2PatternDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType2PatternDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType2PatternDictionary** out) {
if (!isAType2PatternDictionary(podofoDoc, podofoObj)) return false;
@@ -89735,21 +91477,29 @@
return true;
}
- static bool mapShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfShadingDictionary** out) {
if (!isAShadingDictionary(podofoDoc, podofoObj)) return false;
- if (mapType1ShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType2ShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType3ShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType4ShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType5ShadingDictionary(podofoDoc, podofoObj, out)) return true;
- if (mapType6ShadingDictionary(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType1ShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType2ShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType3ShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType4ShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType5ShadingDictionary**)out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfType6ShadingDictionary**)out)) return true;
*out = new SkPdfShadingDictionary(&podofoDoc, &podofoObj);
return true;
}
- static bool mapType1ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType1ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType1ShadingDictionary** out) {
if (!isAType1ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89757,7 +91507,11 @@
return true;
}
- static bool mapType2ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType2ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType2ShadingDictionary** out) {
if (!isAType2ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89765,7 +91519,11 @@
return true;
}
- static bool mapType3ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType3ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType3ShadingDictionary** out) {
if (!isAType3ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89773,7 +91531,11 @@
return true;
}
- static bool mapType4ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType4ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType4ShadingDictionary** out) {
if (!isAType4ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89781,7 +91543,11 @@
return true;
}
- static bool mapType5ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType5ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType5ShadingDictionary** out) {
if (!isAType5ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89789,7 +91555,11 @@
return true;
}
- static bool mapType6ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType6ShadingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType6ShadingDictionary** out) {
if (!isAType6ShadingDictionary(podofoDoc, podofoObj)) return false;
@@ -89797,7 +91567,11 @@
return true;
}
- static bool mapImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfImageDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfImageDictionary** out) {
if (!isAImageDictionary(podofoDoc, podofoObj)) return false;
@@ -89805,7 +91579,11 @@
return true;
}
- static bool mapAlternateImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAlternateImageDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAlternateImageDictionary** out) {
if (!isAAlternateImageDictionary(podofoDoc, podofoObj)) return false;
@@ -89813,7 +91591,11 @@
return true;
}
- static bool mapType1FormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType1FormDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType1FormDictionary** out) {
if (!isAType1FormDictionary(podofoDoc, podofoObj)) return false;
@@ -89821,7 +91603,11 @@
return true;
}
- static bool mapGroupAttributesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfGroupAttributesDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfGroupAttributesDictionary** out) {
if (!isAGroupAttributesDictionary(podofoDoc, podofoObj)) return false;
@@ -89829,7 +91615,11 @@
return true;
}
- static bool mapReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfReferenceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfReferenceDictionary** out) {
if (!isAReferenceDictionary(podofoDoc, podofoObj)) return false;
@@ -89837,7 +91627,11 @@
return true;
}
- static bool mapPSXobjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPSXobjectDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPSXobjectDictionary** out) {
if (!isAPSXobjectDictionary(podofoDoc, podofoObj)) return false;
@@ -89845,16 +91639,24 @@
return true;
}
- static bool mapType1FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType1FontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType1FontDictionary** out) {
if (!isAType1FontDictionary(podofoDoc, podofoObj)) return false;
- if (mapMultiMasterFontDictionary(podofoDoc, podofoObj, out)) return true;
+ if (map(podofoDoc, podofoObj, (SkPdfMultiMasterFontDictionary**)out)) return true;
*out = new SkPdfType1FontDictionary(&podofoDoc, &podofoObj);
return true;
}
- static bool mapType3FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType3FontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType3FontDictionary** out) {
if (!isAType3FontDictionary(podofoDoc, podofoObj)) return false;
@@ -89862,7 +91664,11 @@
return true;
}
- static bool mapEncodingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEncodingDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEncodingDictionary** out) {
if (!isAEncodingDictionary(podofoDoc, podofoObj)) return false;
@@ -89870,7 +91676,11 @@
return true;
}
- static bool mapCIDSystemInfoDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCIDSystemInfoDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCIDSystemInfoDictionary** out) {
if (!isACIDSystemInfoDictionary(podofoDoc, podofoObj)) return false;
@@ -89878,7 +91688,11 @@
return true;
}
- static bool mapCIDFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCIDFontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCIDFontDictionary** out) {
if (!isACIDFontDictionary(podofoDoc, podofoObj)) return false;
@@ -89886,7 +91700,11 @@
return true;
}
- static bool mapCMapDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCMapDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCMapDictionary** out) {
if (!isACMapDictionary(podofoDoc, podofoObj)) return false;
@@ -89894,7 +91712,11 @@
return true;
}
- static bool mapType0FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType0FontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType0FontDictionary** out) {
if (!isAType0FontDictionary(podofoDoc, podofoObj)) return false;
@@ -89902,7 +91724,11 @@
return true;
}
- static bool mapFontDescriptorDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFontDescriptorDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFontDescriptorDictionary** out) {
if (!isAFontDescriptorDictionary(podofoDoc, podofoObj)) return false;
@@ -89910,7 +91736,11 @@
return true;
}
- static bool mapCIDFontDescriptorDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCIDFontDescriptorDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCIDFontDescriptorDictionary** out) {
if (!isACIDFontDescriptorDictionary(podofoDoc, podofoObj)) return false;
@@ -89918,7 +91748,11 @@
return true;
}
- static bool mapEmbeddedFontStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEmbeddedFontStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEmbeddedFontStreamDictionary** out) {
if (!isAEmbeddedFontStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -89926,7 +91760,11 @@
return true;
}
- static bool mapType1HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType1HalftoneDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType1HalftoneDictionary** out) {
if (!isAType1HalftoneDictionary(podofoDoc, podofoObj)) return false;
@@ -89934,7 +91772,11 @@
return true;
}
- static bool mapType6HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType6HalftoneDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType6HalftoneDictionary** out) {
if (!isAType6HalftoneDictionary(podofoDoc, podofoObj)) return false;
@@ -89942,7 +91784,11 @@
return true;
}
- static bool mapType10HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType10HalftoneDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType10HalftoneDictionary** out) {
if (!isAType10HalftoneDictionary(podofoDoc, podofoObj)) return false;
@@ -89950,7 +91796,11 @@
return true;
}
- static bool mapType16HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType16HalftoneDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType16HalftoneDictionary** out) {
if (!isAType16HalftoneDictionary(podofoDoc, podofoObj)) return false;
@@ -89958,7 +91808,11 @@
return true;
}
- static bool mapType5HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfType5HalftoneDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfType5HalftoneDictionary** out) {
if (!isAType5HalftoneDictionary(podofoDoc, podofoObj)) return false;
@@ -89966,7 +91820,11 @@
return true;
}
- static bool mapSoftMaskDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSoftMaskDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSoftMaskDictionary** out) {
if (!isASoftMaskDictionary(podofoDoc, podofoObj)) return false;
@@ -89974,7 +91832,11 @@
return true;
}
- static bool mapSoftMaskImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSoftMaskImageDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSoftMaskImageDictionary** out) {
if (!isASoftMaskImageDictionary(podofoDoc, podofoObj)) return false;
@@ -89982,7 +91844,11 @@
return true;
}
- static bool mapTransparencyGroupDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTransparencyGroupDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTransparencyGroupDictionary** out) {
if (!isATransparencyGroupDictionary(podofoDoc, podofoObj)) return false;
@@ -89990,7 +91856,11 @@
return true;
}
- static bool mapViewerPreferencesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfViewerPreferencesDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfViewerPreferencesDictionary** out) {
if (!isAViewerPreferencesDictionary(podofoDoc, podofoObj)) return false;
@@ -89998,7 +91868,11 @@
return true;
}
- static bool mapOutlineDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfOutlineDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfOutlineDictionary** out) {
if (!isAOutlineDictionary(podofoDoc, podofoObj)) return false;
@@ -90006,7 +91880,11 @@
return true;
}
- static bool mapOutlineItemDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfOutlineItemDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfOutlineItemDictionary** out) {
if (!isAOutlineItemDictionary(podofoDoc, podofoObj)) return false;
@@ -90014,7 +91892,11 @@
return true;
}
- static bool mapPageLabelDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPageLabelDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPageLabelDictionary** out) {
if (!isAPageLabelDictionary(podofoDoc, podofoObj)) return false;
@@ -90022,7 +91904,11 @@
return true;
}
- static bool mapThreadDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfThreadDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfThreadDictionary** out) {
if (!isAThreadDictionary(podofoDoc, podofoObj)) return false;
@@ -90030,7 +91916,11 @@
return true;
}
- static bool mapBeadDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBeadDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBeadDictionary** out) {
if (!isABeadDictionary(podofoDoc, podofoObj)) return false;
@@ -90038,7 +91928,11 @@
return true;
}
- static bool mapTransitionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTransitionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTransitionDictionary** out) {
if (!isATransitionDictionary(podofoDoc, podofoObj)) return false;
@@ -90046,7 +91940,11 @@
return true;
}
- static bool mapAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAnnotationDictionary** out) {
if (!isAAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90054,7 +91952,11 @@
return true;
}
- static bool mapBorderStyleDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBorderStyleDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBorderStyleDictionary** out) {
if (!isABorderStyleDictionary(podofoDoc, podofoObj)) return false;
@@ -90062,7 +91964,11 @@
return true;
}
- static bool mapAppearanceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAppearanceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAppearanceDictionary** out) {
if (!isAAppearanceDictionary(podofoDoc, podofoObj)) return false;
@@ -90070,7 +91976,11 @@
return true;
}
- static bool mapTextAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTextAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTextAnnotationDictionary** out) {
if (!isATextAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90078,7 +91988,11 @@
return true;
}
- static bool mapALinkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfALinkAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfALinkAnnotationDictionary** out) {
if (!isAALinkAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90086,7 +92000,11 @@
return true;
}
- static bool mapFreeTextAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFreeTextAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFreeTextAnnotationDictionary** out) {
if (!isAFreeTextAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90094,7 +92012,11 @@
return true;
}
- static bool mapLineAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfLineAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfLineAnnotationDictionary** out) {
if (!isALineAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90102,7 +92024,11 @@
return true;
}
- static bool mapSquareOrCircleAnnotation(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSquareOrCircleAnnotation** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSquareOrCircleAnnotation** out) {
if (!isASquareOrCircleAnnotation(podofoDoc, podofoObj)) return false;
@@ -90110,7 +92036,11 @@
return true;
}
- static bool mapMarkupAnnotationsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMarkupAnnotationsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMarkupAnnotationsDictionary** out) {
if (!isAMarkupAnnotationsDictionary(podofoDoc, podofoObj)) return false;
@@ -90118,7 +92048,11 @@
return true;
}
- static bool mapRubberStampAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfRubberStampAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfRubberStampAnnotationDictionary** out) {
if (!isARubberStampAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90126,7 +92060,11 @@
return true;
}
- static bool mapInkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfInkAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfInkAnnotationDictionary** out) {
if (!isAInkAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90134,7 +92072,11 @@
return true;
}
- static bool mapPopUpAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPopUpAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPopUpAnnotationDictionary** out) {
if (!isAPopUpAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90142,7 +92084,11 @@
return true;
}
- static bool mapFileAttachmentAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFileAttachmentAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFileAttachmentAnnotationDictionary** out) {
if (!isAFileAttachmentAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90150,7 +92096,11 @@
return true;
}
- static bool mapSoundAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSoundAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSoundAnnotationDictionary** out) {
if (!isASoundAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90158,7 +92108,11 @@
return true;
}
- static bool mapMovieAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMovieAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMovieAnnotationDictionary** out) {
if (!isAMovieAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90166,7 +92120,11 @@
return true;
}
- static bool mapWidgetAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWidgetAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWidgetAnnotationDictionary** out) {
if (!isAWidgetAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90174,7 +92132,11 @@
return true;
}
- static bool mapActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfActionDictionary** out) {
if (!isAActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90182,7 +92144,11 @@
return true;
}
- static bool mapAnnotationActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAnnotationActionsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAnnotationActionsDictionary** out) {
if (!isAAnnotationActionsDictionary(podofoDoc, podofoObj)) return false;
@@ -90190,7 +92156,11 @@
return true;
}
- static bool mapPageObjectActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPageObjectActionsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPageObjectActionsDictionary** out) {
if (!isAPageObjectActionsDictionary(podofoDoc, podofoObj)) return false;
@@ -90198,7 +92168,11 @@
return true;
}
- static bool mapFormFieldActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFormFieldActionsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFormFieldActionsDictionary** out) {
if (!isAFormFieldActionsDictionary(podofoDoc, podofoObj)) return false;
@@ -90206,7 +92180,11 @@
return true;
}
- static bool mapDocumentCatalogActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfDocumentCatalogActionsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfDocumentCatalogActionsDictionary** out) {
if (!isADocumentCatalogActionsDictionary(podofoDoc, podofoObj)) return false;
@@ -90214,7 +92192,11 @@
return true;
}
- static bool mapGoToActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfGoToActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfGoToActionDictionary** out) {
if (!isAGoToActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90222,7 +92204,11 @@
return true;
}
- static bool mapRemoteGoToActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfRemoteGoToActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfRemoteGoToActionDictionary** out) {
if (!isARemoteGoToActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90230,7 +92216,11 @@
return true;
}
- static bool mapLaunchActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfLaunchActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfLaunchActionDictionary** out) {
if (!isALaunchActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90238,7 +92228,11 @@
return true;
}
- static bool mapWindowsLaunchActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWindowsLaunchActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWindowsLaunchActionDictionary** out) {
if (!isAWindowsLaunchActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90246,7 +92240,11 @@
return true;
}
- static bool mapThreadActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfThreadActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfThreadActionDictionary** out) {
if (!isAThreadActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90254,7 +92252,11 @@
return true;
}
- static bool mapURIActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfURIActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfURIActionDictionary** out) {
if (!isAURIActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90262,7 +92264,11 @@
return true;
}
- static bool mapURIDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfURIDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfURIDictionary** out) {
if (!isAURIDictionary(podofoDoc, podofoObj)) return false;
@@ -90270,7 +92276,11 @@
return true;
}
- static bool mapSoundActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSoundActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSoundActionDictionary** out) {
if (!isASoundActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90278,7 +92288,11 @@
return true;
}
- static bool mapMovieActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMovieActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMovieActionDictionary** out) {
if (!isAMovieActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90286,7 +92300,11 @@
return true;
}
- static bool mapHideActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfHideActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfHideActionDictionary** out) {
if (!isAHideActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90294,7 +92312,11 @@
return true;
}
- static bool mapNamedActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfNamedActionsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfNamedActionsDictionary** out) {
if (!isANamedActionsDictionary(podofoDoc, podofoObj)) return false;
@@ -90302,7 +92324,11 @@
return true;
}
- static bool mapInteractiveFormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfInteractiveFormDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfInteractiveFormDictionary** out) {
if (!isAInteractiveFormDictionary(podofoDoc, podofoObj)) return false;
@@ -90310,7 +92336,11 @@
return true;
}
- static bool mapFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFieldDictionary** out) {
if (!isAFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90318,7 +92348,11 @@
return true;
}
- static bool mapVariableTextFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfVariableTextFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfVariableTextFieldDictionary** out) {
if (!isAVariableTextFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90326,7 +92360,11 @@
return true;
}
- static bool mapAppearanceCharacteristicsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAppearanceCharacteristicsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAppearanceCharacteristicsDictionary** out) {
if (!isAAppearanceCharacteristicsDictionary(podofoDoc, podofoObj)) return false;
@@ -90334,7 +92372,11 @@
return true;
}
- static bool mapCheckboxFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfCheckboxFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfCheckboxFieldDictionary** out) {
if (!isACheckboxFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90342,7 +92384,11 @@
return true;
}
- static bool mapRadioButtonFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfRadioButtonFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfRadioButtonFieldDictionary** out) {
if (!isARadioButtonFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90350,7 +92396,11 @@
return true;
}
- static bool mapTextFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTextFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTextFieldDictionary** out) {
if (!isATextFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90358,7 +92408,11 @@
return true;
}
- static bool mapChoiceFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfChoiceFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfChoiceFieldDictionary** out) {
if (!isAChoiceFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90366,7 +92420,11 @@
return true;
}
- static bool mapSignatureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSignatureDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSignatureDictionary** out) {
if (!isASignatureDictionary(podofoDoc, podofoObj)) return false;
@@ -90374,7 +92432,11 @@
return true;
}
- static bool mapSubmitFormActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSubmitFormActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSubmitFormActionDictionary** out) {
if (!isASubmitFormActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90382,7 +92444,11 @@
return true;
}
- static bool mapResetFormActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfResetFormActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfResetFormActionDictionary** out) {
if (!isAResetFormActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90390,7 +92456,11 @@
return true;
}
- static bool mapImportDataActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfImportDataActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfImportDataActionDictionary** out) {
if (!isAImportDataActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90398,7 +92468,11 @@
return true;
}
- static bool mapJavascriptActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfJavascriptActionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfJavascriptActionDictionary** out) {
if (!isAJavascriptActionDictionary(podofoDoc, podofoObj)) return false;
@@ -90406,7 +92480,11 @@
return true;
}
- static bool mapFDFTrailerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFTrailerDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFTrailerDictionary** out) {
if (!isAFDFTrailerDictionary(podofoDoc, podofoObj)) return false;
@@ -90414,7 +92492,11 @@
return true;
}
- static bool mapFDFCatalogDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFCatalogDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFCatalogDictionary** out) {
if (!isAFDFCatalogDictionary(podofoDoc, podofoObj)) return false;
@@ -90422,7 +92504,11 @@
return true;
}
- static bool mapFDFDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFDictionary** out) {
if (!isAFDFDictionary(podofoDoc, podofoObj)) return false;
@@ -90430,7 +92516,11 @@
return true;
}
- static bool mapEncryptedEmbeddedFileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfEncryptedEmbeddedFileStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfEncryptedEmbeddedFileStreamDictionary** out) {
if (!isAEncryptedEmbeddedFileStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -90438,7 +92528,11 @@
return true;
}
- static bool mapJavascriptDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfJavascriptDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfJavascriptDictionary** out) {
if (!isAJavascriptDictionary(podofoDoc, podofoObj)) return false;
@@ -90446,7 +92540,11 @@
return true;
}
- static bool mapFDFFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFFieldDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFFieldDictionary** out) {
if (!isAFDFFieldDictionary(podofoDoc, podofoObj)) return false;
@@ -90454,7 +92552,11 @@
return true;
}
- static bool mapIconFitDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfIconFitDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfIconFitDictionary** out) {
if (!isAIconFitDictionary(podofoDoc, podofoObj)) return false;
@@ -90462,7 +92564,11 @@
return true;
}
- static bool mapFDFPageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFPageDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFPageDictionary** out) {
if (!isAFDFPageDictionary(podofoDoc, podofoObj)) return false;
@@ -90470,7 +92576,11 @@
return true;
}
- static bool mapFDFTemplateDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFTemplateDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFTemplateDictionary** out) {
if (!isAFDFTemplateDictionary(podofoDoc, podofoObj)) return false;
@@ -90478,7 +92588,11 @@
return true;
}
- static bool mapFDFNamedPageReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFNamedPageReferenceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFNamedPageReferenceDictionary** out) {
if (!isAFDFNamedPageReferenceDictionary(podofoDoc, podofoObj)) return false;
@@ -90486,7 +92600,11 @@
return true;
}
- static bool mapFDFFileAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfFDFFileAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfFDFFileAnnotationDictionary** out) {
if (!isAFDFFileAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90494,7 +92612,11 @@
return true;
}
- static bool mapSoundObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSoundObjectDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSoundObjectDictionary** out) {
if (!isASoundObjectDictionary(podofoDoc, podofoObj)) return false;
@@ -90502,7 +92624,11 @@
return true;
}
- static bool mapMovieDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMovieDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMovieDictionary** out) {
if (!isAMovieDictionary(podofoDoc, podofoObj)) return false;
@@ -90510,7 +92636,11 @@
return true;
}
- static bool mapMovieActivationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMovieActivationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMovieActivationDictionary** out) {
if (!isAMovieActivationDictionary(podofoDoc, podofoObj)) return false;
@@ -90518,7 +92648,11 @@
return true;
}
- static bool mapDocumentInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfDocumentInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfDocumentInformationDictionary** out) {
if (!isADocumentInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -90526,7 +92660,11 @@
return true;
}
- static bool mapMetadataStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMetadataStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMetadataStreamDictionary** out) {
if (!isAMetadataStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -90534,7 +92672,11 @@
return true;
}
- static bool mapComponentsWithMetadataDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfComponentsWithMetadataDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfComponentsWithMetadataDictionary** out) {
if (!isAComponentsWithMetadataDictionary(podofoDoc, podofoObj)) return false;
@@ -90542,7 +92684,11 @@
return true;
}
- static bool mapPagePieceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPagePieceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPagePieceDictionary** out) {
if (!isAPagePieceDictionary(podofoDoc, podofoObj)) return false;
@@ -90550,7 +92696,11 @@
return true;
}
- static bool mapApplicationDataDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfApplicationDataDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfApplicationDataDictionary** out) {
if (!isAApplicationDataDictionary(podofoDoc, podofoObj)) return false;
@@ -90558,7 +92708,11 @@
return true;
}
- static bool mapStructureTreeRootDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStructureTreeRootDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStructureTreeRootDictionary** out) {
if (!isAStructureTreeRootDictionary(podofoDoc, podofoObj)) return false;
@@ -90566,7 +92720,11 @@
return true;
}
- static bool mapStructureElementDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStructureElementDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStructureElementDictionary** out) {
if (!isAStructureElementDictionary(podofoDoc, podofoObj)) return false;
@@ -90574,7 +92732,11 @@
return true;
}
- static bool mapMarkedContentReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMarkedContentReferenceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMarkedContentReferenceDictionary** out) {
if (!isAMarkedContentReferenceDictionary(podofoDoc, podofoObj)) return false;
@@ -90582,7 +92744,11 @@
return true;
}
- static bool mapObjectReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfObjectReferenceDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObjectReferenceDictionary** out) {
if (!isAObjectReferenceDictionary(podofoDoc, podofoObj)) return false;
@@ -90590,7 +92756,11 @@
return true;
}
- static bool mapStructureElementAccessDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStructureElementAccessDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStructureElementAccessDictionary** out) {
if (!isAStructureElementAccessDictionary(podofoDoc, podofoObj)) return false;
@@ -90598,7 +92768,11 @@
return true;
}
- static bool mapAttributeObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfAttributeObjectDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfAttributeObjectDictionary** out) {
if (!isAAttributeObjectDictionary(podofoDoc, podofoObj)) return false;
@@ -90606,7 +92780,11 @@
return true;
}
- static bool mapMarkInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMarkInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMarkInformationDictionary** out) {
if (!isAMarkInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -90614,7 +92792,11 @@
return true;
}
- static bool mapArtifactsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfArtifactsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfArtifactsDictionary** out) {
if (!isAArtifactsDictionary(podofoDoc, podofoObj)) return false;
@@ -90622,7 +92804,11 @@
return true;
}
- static bool mapStandardStructureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfStandardStructureDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfStandardStructureDictionary** out) {
if (!isAStandardStructureDictionary(podofoDoc, podofoObj)) return false;
@@ -90630,7 +92816,11 @@
return true;
}
- static bool mapBlockLevelStructureElementsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBlockLevelStructureElementsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBlockLevelStructureElementsDictionary** out) {
if (!isABlockLevelStructureElementsDictionary(podofoDoc, podofoObj)) return false;
@@ -90638,7 +92828,11 @@
return true;
}
- static bool mapInlineLevelStructureElementsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfInlineLevelStructureElementsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfInlineLevelStructureElementsDictionary** out) {
if (!isAInlineLevelStructureElementsDictionary(podofoDoc, podofoObj)) return false;
@@ -90646,7 +92840,11 @@
return true;
}
- static bool mapListAttributeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfListAttributeDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfListAttributeDictionary** out) {
if (!isAListAttributeDictionary(podofoDoc, podofoObj)) return false;
@@ -90654,7 +92852,11 @@
return true;
}
- static bool mapTableAttributesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTableAttributesDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTableAttributesDictionary** out) {
if (!isATableAttributesDictionary(podofoDoc, podofoObj)) return false;
@@ -90662,7 +92864,11 @@
return true;
}
- static bool mapWebCaptureInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCaptureInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCaptureInformationDictionary** out) {
if (!isAWebCaptureInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -90670,7 +92876,11 @@
return true;
}
- static bool mapWebCaptureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCaptureDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCaptureDictionary** out) {
if (!isAWebCaptureDictionary(podofoDoc, podofoObj)) return false;
@@ -90678,7 +92888,11 @@
return true;
}
- static bool mapWebCapturePageSetDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCapturePageSetDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCapturePageSetDictionary** out) {
if (!isAWebCapturePageSetDictionary(podofoDoc, podofoObj)) return false;
@@ -90686,7 +92900,11 @@
return true;
}
- static bool mapWebCaptureImageSetDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCaptureImageSetDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCaptureImageSetDictionary** out) {
if (!isAWebCaptureImageSetDictionary(podofoDoc, podofoObj)) return false;
@@ -90694,7 +92912,11 @@
return true;
}
- static bool mapSourceInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSourceInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSourceInformationDictionary** out) {
if (!isASourceInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -90702,7 +92924,11 @@
return true;
}
- static bool mapURLAliasDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfURLAliasDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfURLAliasDictionary** out) {
if (!isAURLAliasDictionary(podofoDoc, podofoObj)) return false;
@@ -90710,7 +92936,11 @@
return true;
}
- static bool mapWebCaptureCommandDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCaptureCommandDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCaptureCommandDictionary** out) {
if (!isAWebCaptureCommandDictionary(podofoDoc, podofoObj)) return false;
@@ -90718,7 +92948,11 @@
return true;
}
- static bool mapWebCaptureCommandSettingsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfWebCaptureCommandSettingsDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfWebCaptureCommandSettingsDictionary** out) {
if (!isAWebCaptureCommandSettingsDictionary(podofoDoc, podofoObj)) return false;
@@ -90726,7 +92960,11 @@
return true;
}
- static bool mapBoxColorInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBoxColorInformationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBoxColorInformationDictionary** out) {
if (!isABoxColorInformationDictionary(podofoDoc, podofoObj)) return false;
@@ -90734,7 +92972,11 @@
return true;
}
- static bool mapBoxStyleDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfBoxStyleDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfBoxStyleDictionary** out) {
if (!isABoxStyleDictionary(podofoDoc, podofoObj)) return false;
@@ -90742,7 +92984,11 @@
return true;
}
- static bool mapPrinterMarkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPrinterMarkAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPrinterMarkAnnotationDictionary** out) {
if (!isAPrinterMarkAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90750,7 +92996,11 @@
return true;
}
- static bool mapPrinterMarkFormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPrinterMarkFormDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPrinterMarkFormDictionary** out) {
if (!isAPrinterMarkFormDictionary(podofoDoc, podofoObj)) return false;
@@ -90758,7 +93008,11 @@
return true;
}
- static bool mapSeparationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfSeparationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfSeparationDictionary** out) {
if (!isASeparationDictionary(podofoDoc, podofoObj)) return false;
@@ -90766,7 +93020,11 @@
return true;
}
- static bool mapPDF_XOutputIntentDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfPDF_XOutputIntentDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfPDF_XOutputIntentDictionary** out) {
if (!isAPDF_XOutputIntentDictionary(podofoDoc, podofoObj)) return false;
@@ -90774,7 +93032,11 @@
return true;
}
- static bool mapTrapNetworkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTrapNetworkAnnotationDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTrapNetworkAnnotationDictionary** out) {
if (!isATrapNetworkAnnotationDictionary(podofoDoc, podofoObj)) return false;
@@ -90782,7 +93044,11 @@
return true;
}
- static bool mapTrapNetworkAppearanceStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfTrapNetworkAppearanceStreamDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfTrapNetworkAppearanceStreamDictionary** out) {
if (!isATrapNetworkAppearanceStreamDictionary(podofoDoc, podofoObj)) return false;
@@ -90790,7 +93056,11 @@
return true;
}
- static bool mapOpiVersionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfOpiVersionDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfOpiVersionDictionary** out) {
if (!isAOpiVersionDictionary(podofoDoc, podofoObj)) return false;
@@ -90798,7 +93068,11 @@
return true;
}
- static bool mapMultiMasterFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfObject** out) {
+ static bool map(const SkPdfObject& in, SkPdfMultiMasterFontDictionary** out) {
+ return map(*in.doc(), *in.podofo(), out);
+ }
+
+ static bool map(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj, SkPdfMultiMasterFontDictionary** out) {
if (!isAMultiMasterFontDictionary(podofoDoc, podofoObj)) return false;
@@ -90859,127 +93133,131 @@
}
static bool isATrueTypeFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStreamCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isALzwdecodeAndFlatedecodeFiltersDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACcittfaxdecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAJbig2DecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isADctdecodeFilterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFileTrailerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEncryptionCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStandardSecurityHandlerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACatalogDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPageTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPageObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isANameDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAResourceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isANameTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isANumberTreeNodeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFunctionCommonDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType0FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType2FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType3FunctionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFileSpecificationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEmbeddedFileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEmbeddedFileParameterDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMacOsFileInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
+ static bool isAGraphicsStateDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
+ return true;
+ }
+
static bool isACalgrayColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACalrgbColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isALabColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAIccProfileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isADeviceNColorSpaceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType1PatternDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType2PatternDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
@@ -90987,27 +93265,27 @@
}
static bool isAType1ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType2ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType3ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType4ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType5ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType6ShadingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
@@ -91019,7 +93297,7 @@
}
static bool isAAlternateImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType1FormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
@@ -91031,15 +93309,15 @@
}
static bool isAGroupAttributesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPSXobjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType1FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
@@ -91047,475 +93325,475 @@
}
static bool isAType3FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEncodingDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACIDSystemInfoDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACIDFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACMapDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType0FontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFontDescriptorDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACIDFontDescriptorDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEmbeddedFontStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType1HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType6HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType10HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType16HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAType5HalftoneDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASoftMaskDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASoftMaskImageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATransparencyGroupDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAViewerPreferencesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAOutlineDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAOutlineItemDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPageLabelDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAThreadDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isABeadDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATransitionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isABorderStyleDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAAppearanceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATextAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAALinkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFreeTextAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isALineAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASquareOrCircleAnnotation(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMarkupAnnotationsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isARubberStampAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAInkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPopUpAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFileAttachmentAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASoundAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMovieAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWidgetAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAAnnotationActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPageObjectActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFormFieldActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isADocumentCatalogActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAGoToActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isARemoteGoToActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isALaunchActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWindowsLaunchActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAThreadActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAURIActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAURIDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASoundActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMovieActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAHideActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isANamedActionsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAInteractiveFormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAVariableTextFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAAppearanceCharacteristicsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isACheckboxFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isARadioButtonFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATextFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAChoiceFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASignatureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASubmitFormActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAResetFormActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAImportDataActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAJavascriptActionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFTrailerDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFCatalogDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAEncryptedEmbeddedFileStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAJavascriptDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFFieldDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAIconFitDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFPageDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFTemplateDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFNamedPageReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAFDFFileAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASoundObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMovieDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMovieActivationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isADocumentInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMetadataStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAComponentsWithMetadataDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPagePieceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAApplicationDataDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStructureTreeRootDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStructureElementDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMarkedContentReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAObjectReferenceDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStructureElementAccessDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAAttributeObjectDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMarkInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAArtifactsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAStandardStructureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isABlockLevelStructureElementsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAInlineLevelStructureElementsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAListAttributeDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATableAttributesDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCaptureInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCaptureDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCapturePageSetDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCaptureImageSetDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASourceInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAURLAliasDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCaptureCommandDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAWebCaptureCommandSettingsDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isABoxColorInformationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isABoxStyleDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPrinterMarkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPrinterMarkFormDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isASeparationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAPDF_XOutputIntentDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATrapNetworkAnnotationDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isATrapNetworkAppearanceStreamDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAOpiVersionDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
- return false;
+ return true;
}
static bool isAMultiMasterFontDictionary(const PdfMemDocument& podofoDoc, const PdfObject& podofoObj) {
« no previous file with comments | « experimental/PdfViewer/generate_code.py ('k') | experimental/PdfViewer/pdf_viewer_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698