1 /*
2 * Copyright 2013 Google Inc.
3
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkPdfSoundAnnotationDictionary_autogen.h"
9 #include "SkPdfNativeDoc.h"
10
Subtype(SkPdfNativeDoc * doc)11 SkString SkPdfSoundAnnotationDictionary::Subtype(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Subtype", "");
13 if (doc) {ret = doc->resolveReference(ret);}
14 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
15 // TODO(edisonn): warn about missing required field, assert for known good pdfs
16 return SkString();
17 }
18
has_Subtype() const19 bool SkPdfSoundAnnotationDictionary::has_Subtype() const {
20 return get("Subtype", "") != NULL;
21 }
22
Sound(SkPdfNativeDoc * doc)23 SkPdfStream* SkPdfSoundAnnotationDictionary::Sound(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Sound", "");
25 if (doc) {ret = doc->resolveReference(ret);}
26 if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();
27 // TODO(edisonn): warn about missing required field, assert for known good pdfs
28 return NULL;
29 }
30
has_Sound() const31 bool SkPdfSoundAnnotationDictionary::has_Sound() const {
32 return get("Sound", "") != NULL;
33 }
34
Contents(SkPdfNativeDoc * doc)35 SkString SkPdfSoundAnnotationDictionary::Contents(SkPdfNativeDoc* doc) {
36 SkPdfNativeObject* ret = get("Contents", "");
37 if (doc) {ret = doc->resolveReference(ret);}
38 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
39 // TODO(edisonn): warn about missing default value for optional fields
40 return SkString();
41 }
42
has_Contents() const43 bool SkPdfSoundAnnotationDictionary::has_Contents() const {
44 return get("Contents", "") != NULL;
45 }
46
Name(SkPdfNativeDoc * doc)47 SkString SkPdfSoundAnnotationDictionary::Name(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Name", "");
49 if (doc) {ret = doc->resolveReference(ret);}
50 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
51 // TODO(edisonn): warn about missing default value for optional fields
52 return SkString();
53 }
54
has_Name() const55 bool SkPdfSoundAnnotationDictionary::has_Name() const {
56 return get("Name", "") != NULL;
57 }
58