skia2/experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfDocumentInformationDictionary_autogen.cpp
skia.committer@gmail.com b74bdf0249 Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@10842 2bbb7eff-a529-9590-31e7-b0007b416f81
2013-08-21 07:01:29 +00:00

112 lines
4.4 KiB
C++

#include "SkPdfDocumentInformationDictionary_autogen.h"
#include "SkPdfNativeDoc.h"
SkString SkPdfDocumentInformationDictionary::Title(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Title", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Title() const {
return get("Title", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Author(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Author", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Author() const {
return get("Author", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Subject(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Subject", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Subject() const {
return get("Subject", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Keywords(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Keywords", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Keywords() const {
return get("Keywords", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Creator(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Creator", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Creator() const {
return get("Creator", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Producer(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Producer", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Producer() const {
return get("Producer", "") != NULL;
}
SkPdfDate SkPdfDocumentInformationDictionary::CreationDate(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("CreationDate", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isDate()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->dateValue();
// TODO(edisonn): warn about missing default value for optional fields
return SkPdfDate();
}
bool SkPdfDocumentInformationDictionary::has_CreationDate() const {
return get("CreationDate", "") != NULL;
}
SkPdfDate SkPdfDocumentInformationDictionary::ModDate(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("ModDate", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isDate()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->dateValue();
// TODO(edisonn): warn about missing default value for optional fields
return SkPdfDate();
}
bool SkPdfDocumentInformationDictionary::has_ModDate() const {
return get("ModDate", "") != NULL;
}
SkString SkPdfDocumentInformationDictionary::Trapped(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Trapped", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfDocumentInformationDictionary::has_Trapped() const {
return get("Trapped", "") != NULL;
}