| OLD | NEW |
| (Empty) |
| 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 "SkPdfBeadDictionary_autogen.h" | |
| 9 #include "SkPdfNativeDoc.h" | |
| 10 | |
| 11 SkString SkPdfBeadDictionary::Type(SkPdfNativeDoc* doc) { | |
| 12 SkPdfNativeObject* ret = get("Type", ""); | |
| 13 if (doc) {ret = doc->resolveReference(ret);} | |
| 14 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe
ference())) return ret->nameValue2(); | |
| 15 // TODO(edisonn): warn about missing default value for optional fields | |
| 16 return SkString(); | |
| 17 } | |
| 18 | |
| 19 bool SkPdfBeadDictionary::has_Type() const { | |
| 20 return get("Type", "") != NULL; | |
| 21 } | |
| 22 | |
| 23 SkPdfDictionary* SkPdfBeadDictionary::T(SkPdfNativeDoc* doc) { | |
| 24 SkPdfNativeObject* ret = get("T", ""); | |
| 25 if (doc) {ret = doc->resolveReference(ret);} | |
| 26 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; | |
| 27 // TODO(edisonn): warn about missing default value for optional fields | |
| 28 return NULL; | |
| 29 } | |
| 30 | |
| 31 bool SkPdfBeadDictionary::has_T() const { | |
| 32 return get("T", "") != NULL; | |
| 33 } | |
| 34 | |
| 35 SkPdfDictionary* SkPdfBeadDictionary::N(SkPdfNativeDoc* doc) { | |
| 36 SkPdfNativeObject* ret = get("N", ""); | |
| 37 if (doc) {ret = doc->resolveReference(ret);} | |
| 38 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; | |
| 39 // TODO(edisonn): warn about missing default value for optional fields | |
| 40 return NULL; | |
| 41 } | |
| 42 | |
| 43 bool SkPdfBeadDictionary::has_N() const { | |
| 44 return get("N", "") != NULL; | |
| 45 } | |
| 46 | |
| 47 SkPdfDictionary* SkPdfBeadDictionary::V(SkPdfNativeDoc* doc) { | |
| 48 SkPdfNativeObject* ret = get("V", ""); | |
| 49 if (doc) {ret = doc->resolveReference(ret);} | |
| 50 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; | |
| 51 // TODO(edisonn): warn about missing default value for optional fields | |
| 52 return NULL; | |
| 53 } | |
| 54 | |
| 55 bool SkPdfBeadDictionary::has_V() const { | |
| 56 return get("V", "") != NULL; | |
| 57 } | |
| 58 | |
| 59 SkPdfDictionary* SkPdfBeadDictionary::P(SkPdfNativeDoc* doc) { | |
| 60 SkPdfNativeObject* ret = get("P", ""); | |
| 61 if (doc) {ret = doc->resolveReference(ret);} | |
| 62 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; | |
| 63 // TODO(edisonn): warn about missing default value for optional fields | |
| 64 return NULL; | |
| 65 } | |
| 66 | |
| 67 bool SkPdfBeadDictionary::has_P() const { | |
| 68 return get("P", "") != NULL; | |
| 69 } | |
| 70 | |
| 71 SkRect SkPdfBeadDictionary::R(SkPdfNativeDoc* doc) { | |
| 72 SkPdfNativeObject* ret = get("R", ""); | |
| 73 if (doc) {ret = doc->resolveReference(ret);} | |
| 74 if ((ret != NULL && ret->isRectangle()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->rectangleValue(); | |
| 75 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
| 76 return SkRect::MakeEmpty(); | |
| 77 } | |
| 78 | |
| 79 bool SkPdfBeadDictionary::has_R() const { | |
| 80 return get("R", "") != NULL; | |
| 81 } | |
| OLD | NEW |