b74bdf0249
git-svn-id: http://skia.googlecode.com/svn/trunk@10842 2bbb7eff-a529-9590-31e7-b0007b416f81
52 lines
1.9 KiB
C++
52 lines
1.9 KiB
C++
#include "SkPdfWindowsLaunchActionDictionary_autogen.h"
|
|
|
|
|
|
#include "SkPdfNativeDoc.h"
|
|
SkString SkPdfWindowsLaunchActionDictionary::F(SkPdfNativeDoc* doc) {
|
|
SkPdfNativeObject* ret = get("F", "");
|
|
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 required field, assert for known good pdfs
|
|
return SkString();
|
|
}
|
|
|
|
bool SkPdfWindowsLaunchActionDictionary::has_F() const {
|
|
return get("F", "") != NULL;
|
|
}
|
|
|
|
SkString SkPdfWindowsLaunchActionDictionary::D(SkPdfNativeDoc* doc) {
|
|
SkPdfNativeObject* ret = get("D", "");
|
|
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 SkPdfWindowsLaunchActionDictionary::has_D() const {
|
|
return get("D", "") != NULL;
|
|
}
|
|
|
|
SkString SkPdfWindowsLaunchActionDictionary::O(SkPdfNativeDoc* doc) {
|
|
SkPdfNativeObject* ret = get("O", "");
|
|
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 SkPdfWindowsLaunchActionDictionary::has_O() const {
|
|
return get("O", "") != NULL;
|
|
}
|
|
|
|
SkString SkPdfWindowsLaunchActionDictionary::P(SkPdfNativeDoc* doc) {
|
|
SkPdfNativeObject* ret = get("P", "");
|
|
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 SkPdfWindowsLaunchActionDictionary::has_P() const {
|
|
return get("P", "") != NULL;
|
|
}
|