| OLD | NEW |
| 1 #ifndef __DEFINED__SkPdfRubberStampAnnotationDictionary | 1 #ifndef __DEFINED__SkPdfRubberStampAnnotationDictionary |
| 2 #define __DEFINED__SkPdfRubberStampAnnotationDictionary | 2 #define __DEFINED__SkPdfRubberStampAnnotationDictionary |
| 3 | 3 |
| 4 #include "SkPdfEnums_autogen.h" | 4 #include "SkPdfEnums_autogen.h" |
| 5 #include "SkPdfArray_autogen.h" | 5 #include "SkPdfArray_autogen.h" |
| 6 #include "SkPdfDictionary_autogen.h" | 6 #include "SkPdfDictionary_autogen.h" |
| 7 | 7 |
| 8 // Additional entries specific to a rubber stamp annotation |
| 8 class SkPdfRubberStampAnnotationDictionary : public SkPdfDictionary { | 9 class SkPdfRubberStampAnnotationDictionary : public SkPdfDictionary { |
| 9 public: | 10 public: |
| 10 virtual SkPdfObjectType getType() const { return kRubberStampAnnotationDiction
ary_SkPdfObjectType;} | 11 virtual SkPdfObjectType getType() const { return kRubberStampAnnotationDiction
ary_SkPdfObjectType;} |
| 11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kRubberS
tampAnnotationDictionary_SkPdfObjectType + 1);} | 12 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kRubberS
tampAnnotationDictionary_SkPdfObjectType + 1);} |
| 12 public: | 13 public: |
| 13 virtual SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionar
y() {return this;} | 14 virtual SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDictionar
y() {return this;} |
| 14 virtual const SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDic
tionary() const {return this;} | 15 virtual const SkPdfRubberStampAnnotationDictionary* asRubberStampAnnotationDic
tionary() const {return this;} |
| 15 | 16 |
| 16 private: | 17 private: |
| 17 virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return
NULL;} | 18 virtual SkPdfALinkAnnotationDictionary* asALinkAnnotationDictionary() {return
NULL;} |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 | 515 |
| 515 public: | 516 public: |
| 516 private: | 517 private: |
| 517 public: | 518 public: |
| 518 SkPdfRubberStampAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, c
onst PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {} | 519 SkPdfRubberStampAnnotationDictionary(const PdfMemDocument* podofoDoc = NULL, c
onst PdfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {} |
| 519 | 520 |
| 520 virtual bool valid() const {return true;} | 521 virtual bool valid() const {return true;} |
| 521 | 522 |
| 522 SkPdfRubberStampAnnotationDictionary& operator=(const SkPdfRubberStampAnnotati
onDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from
.fPodofoObj; return *this;} | 523 SkPdfRubberStampAnnotationDictionary& operator=(const SkPdfRubberStampAnnotati
onDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from
.fPodofoObj; return *this;} |
| 523 | 524 |
| 525 /** (Required) The type of annotation that this dictionary describes; must be St
amp |
| 526 * for a rubber stamp annotation. |
| 527 **/ |
| 528 bool has_Subtype() const { |
| 529 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subty
pe", "", NULL)); |
| 530 } |
| 531 |
| 524 std::string Subtype() const { | 532 std::string Subtype() const { |
| 525 std::string ret; | 533 std::string ret; |
| 526 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "
", &ret)) return ret; | 534 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "
", &ret)) return ret; |
| 527 // TODO(edisonn): warn about missing required field, assert for known good p
dfs | 535 // TODO(edisonn): warn about missing required field, assert for known good p
dfs |
| 528 return ""; | 536 return ""; |
| 529 } | 537 } |
| 530 | 538 |
| 539 /** (Required) The text to be displayed in the pop-up window when the annotation |
| 540 * is opened. Carriage returns may be used to separate the text into paragraphs
. |
| 541 **/ |
| 542 bool has_Contents() const { |
| 543 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Conte
nts", "", NULL)); |
| 544 } |
| 545 |
| 531 std::string Contents() const { | 546 std::string Contents() const { |
| 532 std::string ret; | 547 std::string ret; |
| 533 if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents"
, "", &ret)) return ret; | 548 if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents"
, "", &ret)) return ret; |
| 534 // TODO(edisonn): warn about missing required field, assert for known good p
dfs | 549 // TODO(edisonn): warn about missing required field, assert for known good p
dfs |
| 535 return ""; | 550 return ""; |
| 536 } | 551 } |
| 537 | 552 |
| 553 /** (Optional) The name of an icon to be used in displaying the annotation. View
er |
| 554 * applications should provide predefined icon appearances for at least the fol
low- |
| 555 * ing standard names: |
| 556 * Approved Experimental NotApproved |
| 557 * AsIs Expired NotForPublicRelease |
| 558 * Confidential Final Sold |
| 559 * Departmental ForComment TopSecret |
| 560 * Draft ForPublicRelease |
| 561 * Additional names may be supported as well. Default value: Draft. |
| 562 * Note: The annotation dictionary's AP entry, if present, takes precedence ove
r the |
| 563 * Name entry; see Table 8.10 on page 490 and Section 8.4.4, "Appearance Stream
s." |
| 564 **/ |
| 565 bool has_Name() const { |
| 566 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name"
, "", NULL)); |
| 567 } |
| 568 |
| 538 std::string Name() const { | 569 std::string Name() const { |
| 539 std::string ret; | 570 std::string ret; |
| 540 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name", "",
&ret)) return ret; | 571 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name", "",
&ret)) return ret; |
| 541 // TODO(edisonn): warn about missing required field, assert for known good p
dfs | 572 // TODO(edisonn): warn about missing required field, assert for known good p
dfs |
| 542 return ""; | 573 return ""; |
| 543 } | 574 } |
| 544 | 575 |
| 545 }; | 576 }; |
| 546 | 577 |
| 547 #endif // __DEFINED__SkPdfRubberStampAnnotationDictionary | 578 #endif // __DEFINED__SkPdfRubberStampAnnotationDictionary |
| OLD | NEW |