OLD | NEW |
(Empty) | |
| 1 #include "SkPdfFormFieldActionsDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkPdfDictionary* SkPdfFormFieldActionsDictionary::K(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("K", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 9 // TODO(edisonn): warn about missing default value for optional fields |
| 10 return NULL; |
| 11 } |
| 12 |
| 13 bool SkPdfFormFieldActionsDictionary::has_K() const { |
| 14 return get("K", "") != NULL; |
| 15 } |
| 16 |
| 17 SkPdfDictionary* SkPdfFormFieldActionsDictionary::F(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("F", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 21 // TODO(edisonn): warn about missing default value for optional fields |
| 22 return NULL; |
| 23 } |
| 24 |
| 25 bool SkPdfFormFieldActionsDictionary::has_F() const { |
| 26 return get("F", "") != NULL; |
| 27 } |
| 28 |
| 29 SkPdfDictionary* SkPdfFormFieldActionsDictionary::V(SkPdfNativeDoc* doc) { |
| 30 SkPdfNativeObject* ret = get("V", ""); |
| 31 if (doc) {ret = doc->resolveReference(ret);} |
| 32 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 33 // TODO(edisonn): warn about missing default value for optional fields |
| 34 return NULL; |
| 35 } |
| 36 |
| 37 bool SkPdfFormFieldActionsDictionary::has_V() const { |
| 38 return get("V", "") != NULL; |
| 39 } |
| 40 |
| 41 SkPdfDictionary* SkPdfFormFieldActionsDictionary::C(SkPdfNativeDoc* doc) { |
| 42 SkPdfNativeObject* ret = get("C", ""); |
| 43 if (doc) {ret = doc->resolveReference(ret);} |
| 44 if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret
->isReference())) return (SkPdfDictionary*)ret; |
| 45 // TODO(edisonn): warn about missing default value for optional fields |
| 46 return NULL; |
| 47 } |
| 48 |
| 49 bool SkPdfFormFieldActionsDictionary::has_C() const { |
| 50 return get("C", "") != NULL; |
| 51 } |
| 52 |
OLD | NEW |