Home | History | Annotate | Download | only in pdfapi
      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 "SkPdfType3ShadingDictionary_autogen.h"
      9 #include "SkPdfNativeDoc.h"
     10 
     11 SkPdfArray* SkPdfType3ShadingDictionary::Coords(SkPdfNativeDoc* doc) {
     12   SkPdfNativeObject* ret = get("Coords", "");
     13   if (doc) {ret = doc->resolveReference(ret);}
     14   if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
     15   // TODO(edisonn): warn about missing required field, assert for known good pdfs
     16   return NULL;
     17 }
     18 
     19 bool SkPdfType3ShadingDictionary::has_Coords() const {
     20   return get("Coords", "") != NULL;
     21 }
     22 
     23 SkPdfArray* SkPdfType3ShadingDictionary::Domain(SkPdfNativeDoc* doc) {
     24   SkPdfNativeObject* ret = get("Domain", "");
     25   if (doc) {ret = doc->resolveReference(ret);}
     26   if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
     27   // TODO(edisonn): warn about missing default value for optional fields
     28   return NULL;
     29 }
     30 
     31 bool SkPdfType3ShadingDictionary::has_Domain() const {
     32   return get("Domain", "") != NULL;
     33 }
     34 
     35 SkPdfFunction SkPdfType3ShadingDictionary::Function(SkPdfNativeDoc* doc) {
     36   SkPdfNativeObject* ret = get("Function", "");
     37   if (doc) {ret = doc->resolveReference(ret);}
     38   if ((ret != NULL && ret->isFunction()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->functionValue();
     39   // TODO(edisonn): warn about missing required field, assert for known good pdfs
     40   return SkPdfFunction();
     41 }
     42 
     43 bool SkPdfType3ShadingDictionary::has_Function() const {
     44   return get("Function", "") != NULL;
     45 }
     46 
     47 SkPdfArray* SkPdfType3ShadingDictionary::Extend(SkPdfNativeDoc* doc) {
     48   SkPdfNativeObject* ret = get("Extend", "");
     49   if (doc) {ret = doc->resolveReference(ret);}
     50   if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfArray*)ret;
     51   // TODO(edisonn): warn about missing default value for optional fields
     52   return NULL;
     53 }
     54 
     55 bool SkPdfType3ShadingDictionary::has_Extend() const {
     56   return get("Extend", "") != NULL;
     57 }
     58