1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#include "SkPdfSoundActionDictionary_autogen.h"
#include "SkPdfNativeDoc.h"
SkString SkPdfSoundActionDictionary::S(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("S", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkString();
}
bool SkPdfSoundActionDictionary::has_S() const {
return get("S", "") != NULL;
}
SkPdfStream* SkPdfSoundActionDictionary::Sound(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Sound", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return NULL;
}
bool SkPdfSoundActionDictionary::has_Sound() const {
return get("Sound", "") != NULL;
}
double SkPdfSoundActionDictionary::Volume(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Volume", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isNumber()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->numberValue();
// TODO(edisonn): warn about missing default value for optional fields
return 0;
}
bool SkPdfSoundActionDictionary::has_Volume() const {
return get("Volume", "") != NULL;
}
bool SkPdfSoundActionDictionary::Synchronous(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Synchronous", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isBoolean()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->boolValue();
// TODO(edisonn): warn about missing default value for optional fields
return false;
}
bool SkPdfSoundActionDictionary::has_Synchronous() const {
return get("Synchronous", "") != NULL;
}
bool SkPdfSoundActionDictionary::Repeat(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Repeat", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isBoolean()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->boolValue();
// TODO(edisonn): warn about missing default value for optional fields
return false;
}
bool SkPdfSoundActionDictionary::has_Repeat() const {
return get("Repeat", "") != NULL;
}
bool SkPdfSoundActionDictionary::Mix(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Mix", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isBoolean()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->boolValue();
// TODO(edisonn): warn about missing default value for optional fields
return false;
}
bool SkPdfSoundActionDictionary::has_Mix() const {
return get("Mix", "") != NULL;
}
|