OLD | NEW |
(Empty) | |
| 1 #include "SkPdfPDF_XOutputIntentDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkString SkPdfPDF_XOutputIntentDictionary::Type(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("Type", ""); |
| 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 default value for optional fields |
| 10 return SkString(); |
| 11 } |
| 12 |
| 13 bool SkPdfPDF_XOutputIntentDictionary::has_Type() const { |
| 14 return get("Type", "") != NULL; |
| 15 } |
| 16 |
| 17 SkString SkPdfPDF_XOutputIntentDictionary::S(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("S", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe
ference())) return ret->nameValue2(); |
| 21 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 22 return SkString(); |
| 23 } |
| 24 |
| 25 bool SkPdfPDF_XOutputIntentDictionary::has_S() const { |
| 26 return get("S", "") != NULL; |
| 27 } |
| 28 |
| 29 SkString SkPdfPDF_XOutputIntentDictionary::OutputCondition(SkPdfNativeDoc* doc)
{ |
| 30 SkPdfNativeObject* ret = get("OutputCondition", ""); |
| 31 if (doc) {ret = doc->resolveReference(ret);} |
| 32 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); |
| 33 // TODO(edisonn): warn about missing default value for optional fields |
| 34 return SkString(); |
| 35 } |
| 36 |
| 37 bool SkPdfPDF_XOutputIntentDictionary::has_OutputCondition() const { |
| 38 return get("OutputCondition", "") != NULL; |
| 39 } |
| 40 |
| 41 SkString SkPdfPDF_XOutputIntentDictionary::OutputConditionIdentifier(SkPdfNative
Doc* doc) { |
| 42 SkPdfNativeObject* ret = get("OutputConditionIdentifier", ""); |
| 43 if (doc) {ret = doc->resolveReference(ret);} |
| 44 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); |
| 45 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 46 return SkString(); |
| 47 } |
| 48 |
| 49 bool SkPdfPDF_XOutputIntentDictionary::has_OutputConditionIdentifier() const { |
| 50 return get("OutputConditionIdentifier", "") != NULL; |
| 51 } |
| 52 |
| 53 SkString SkPdfPDF_XOutputIntentDictionary::RegistryName(SkPdfNativeDoc* doc) { |
| 54 SkPdfNativeObject* ret = get("RegistryName", ""); |
| 55 if (doc) {ret = doc->resolveReference(ret);} |
| 56 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); |
| 57 // TODO(edisonn): warn about missing default value for optional fields |
| 58 return SkString(); |
| 59 } |
| 60 |
| 61 bool SkPdfPDF_XOutputIntentDictionary::has_RegistryName() const { |
| 62 return get("RegistryName", "") != NULL; |
| 63 } |
| 64 |
| 65 SkString SkPdfPDF_XOutputIntentDictionary::Info(SkPdfNativeDoc* doc) { |
| 66 SkPdfNativeObject* ret = get("Info", ""); |
| 67 if (doc) {ret = doc->resolveReference(ret);} |
| 68 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret-
>isReference())) return ret->stringValue2(); |
| 69 // TODO(edisonn): warn about missing default value for optional fields |
| 70 return SkString(); |
| 71 } |
| 72 |
| 73 bool SkPdfPDF_XOutputIntentDictionary::has_Info() const { |
| 74 return get("Info", "") != NULL; |
| 75 } |
| 76 |
| 77 SkPdfStream* SkPdfPDF_XOutputIntentDictionary::DestOutputProfile(SkPdfNativeDoc*
doc) { |
| 78 SkPdfNativeObject* ret = get("DestOutputProfile", ""); |
| 79 if (doc) {ret = doc->resolveReference(ret);} |
| 80 if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->i
sReference())) return ret->getStream(); |
| 81 // TODO(edisonn): warn about missing default value for optional fields |
| 82 return NULL; |
| 83 } |
| 84 |
| 85 bool SkPdfPDF_XOutputIntentDictionary::has_DestOutputProfile() const { |
| 86 return get("DestOutputProfile", "") != NULL; |
| 87 } |
| 88 |
OLD | NEW |