aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h')
-rw-r--r--experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h b/experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h
index 012ed62123..2b200f6068 100644
--- a/experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h
+++ b/experimental/PdfViewer/SkPdfMovieAnnotationDictionary_autogen.h
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Additional entries specific to a movie annotation
class SkPdfMovieAnnotationDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kMovieAnnotationDictionary_SkPdfObjectType;}
@@ -521,6 +522,13 @@ public:
SkPdfMovieAnnotationDictionary& operator=(const SkPdfMovieAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Required) The type of annotation that this dictionary describes; must be Movie
+ * for a movie annotation.
+**/
+ bool has_Subtype() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", NULL));
+ }
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -528,6 +536,13 @@ public:
return "";
}
+/** (Required) A movie dictionary describing the movie's static characteristics (see
+ * Section 8.8, "Movies").
+**/
+ bool has_Movie() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Movie", "", NULL));
+ }
+
SkPdfDictionary* Movie() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Movie", "", &ret)) return ret;
@@ -535,6 +550,15 @@ public:
return NULL;
}
+/** (Optional; PDF 1.4) An alternate representation of the annotation's contents in
+ * human-readable form, useful when extracting the document's contents in sup-
+ * port of accessibility to disabled users or for other purposes (see Section 9.8.2,
+ * "Alternate Descriptions").
+**/
+ bool has_Contents() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents", "", NULL));
+ }
+
std::string Contents() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents", "", &ret)) return ret;
@@ -542,6 +566,17 @@ public:
return "";
}
+/** (Optional) A flag or dictionary specifying whether and how to play the movie
+ * when the annotation is activated. If this value is a dictionary, it is a movie activa-
+ * tion dictionary (see Section 8.8, "Movies") specifying how to play the movie; if it
+ * is the boolean value true, the movie should be played using default activation
+ * parameters; if it is false, the movie should not be played at all. Default value:
+ * true.
+**/
+ bool has_A() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "A", "", NULL));
+ }
+
bool isAABoolean() const {
SkPdfObject* ret = NULL;
if (!ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "A", "", &ret)) return false;