OLD | NEW |
(Empty) | |
| 1 #include "SkPdfURIActionDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkString SkPdfURIActionDictionary::S(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("S", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe
ference())) return ret->nameValue2(); |
| 9 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 10 return SkString(); |
| 11 } |
| 12 |
| 13 bool SkPdfURIActionDictionary::has_S() const { |
| 14 return get("S", "") != NULL; |
| 15 } |
| 16 |
| 17 SkString SkPdfURIActionDictionary::URI(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("URI", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); |
| 21 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 22 return SkString(); |
| 23 } |
| 24 |
| 25 bool SkPdfURIActionDictionary::has_URI() const { |
| 26 return get("URI", "") != NULL; |
| 27 } |
| 28 |
| 29 bool SkPdfURIActionDictionary::IsMap(SkPdfNativeDoc* doc) { |
| 30 SkPdfNativeObject* ret = get("IsMap", ""); |
| 31 if (doc) {ret = doc->resolveReference(ret);} |
| 32 if ((ret != NULL && ret->isBoolean()) || (doc == NULL && ret != NULL && ret->i
sReference())) return ret->boolValue(); |
| 33 // TODO(edisonn): warn about missing default value for optional fields |
| 34 return false; |
| 35 } |
| 36 |
| 37 bool SkPdfURIActionDictionary::has_IsMap() const { |
| 38 return get("IsMap", "") != NULL; |
| 39 } |
| 40 |
OLD | NEW |