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

Unified Diff: experimental/PdfViewer/SkPdfFDFPageDictionary_autogen.h

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

Powered by Google App Engine
This is Rietveld 408576698