aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h')
-rw-r--r--experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h b/experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
index ca953189ed..88f7f9a01f 100644
--- a/experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
+++ b/experimental/PdfViewer/SkPdfWebCaptureCommandSettingsDictionary_autogen.h
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Entries in a Web Capture command settings dictionary
class SkPdfWebCaptureCommandSettingsDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kWebCaptureCommandSettingsDictionary_SkPdfObjectType;}
@@ -521,6 +522,13 @@ public:
SkPdfWebCaptureCommandSettingsDictionary& operator=(const SkPdfWebCaptureCommandSettingsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Optional) A dictionary containing global conversion engine settings relevant to all con-
+ * version engines. If this key is absent, default settings will be used.
+**/
+ bool has_G() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "G", "", NULL));
+ }
+
SkPdfDictionary* G() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "G", "", &ret)) return ret;
@@ -528,6 +536,15 @@ public:
return NULL;
}
+/** (Optional) Settings for specific conversion engines. Each key in this dictionary is the
+ * internal name of a conversion engine (see below). The associated value is a dictionary
+ * containing the settings associated with that conversion engine. If the settings for a par-
+ * ticular conversion engine are not found in the dictionary, default settings will be used.
+**/
+ bool has_C() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", NULL));
+ }
+
SkPdfDictionary* C() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "C", "", &ret)) return ret;