Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(820)

Side by Side Diff: experimental/PdfViewer/SkPdfAttributeObjectDictionary_autogen.h

Issue 16975013: Deal with ca and CA transparency operators in pdf. add comments to generated classes. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #ifndef __DEFINED__SkPdfAttributeObjectDictionary 1 #ifndef __DEFINED__SkPdfAttributeObjectDictionary
2 #define __DEFINED__SkPdfAttributeObjectDictionary 2 #define __DEFINED__SkPdfAttributeObjectDictionary
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 // Entry common to all attribute objects
8 class SkPdfAttributeObjectDictionary : public SkPdfDictionary { 9 class SkPdfAttributeObjectDictionary : public SkPdfDictionary {
9 public: 10 public:
10 virtual SkPdfObjectType getType() const { return kAttributeObjectDictionary_Sk PdfObjectType;} 11 virtual SkPdfObjectType getType() const { return kAttributeObjectDictionary_Sk PdfObjectType;}
11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kAttribu teObjectDictionary_SkPdfObjectType + 1);} 12 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kAttribu teObjectDictionary_SkPdfObjectType + 1);}
12 public: 13 public:
13 virtual SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() {return this;} 14 virtual SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() {return this;}
14 virtual const SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() co nst {return this;} 15 virtual const SkPdfAttributeObjectDictionary* asAttributeObjectDictionary() co nst {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
514 515
515 public: 516 public:
516 private: 517 private:
517 public: 518 public:
518 SkPdfAttributeObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const P dfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {} 519 SkPdfAttributeObjectDictionary(const PdfMemDocument* podofoDoc = NULL, const P dfObject* podofoObj = NULL) : SkPdfDictionary(podofoDoc, podofoObj) {}
519 520
520 virtual bool valid() const {return true;} 521 virtual bool valid() const {return true;}
521 522
522 SkPdfAttributeObjectDictionary& operator=(const SkPdfAttributeObjectDictionary & from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;} 523 SkPdfAttributeObjectDictionary& operator=(const SkPdfAttributeObjectDictionary & from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
523 524
525 /** (Required) The name of the application or plug-in extension owning the attri bute data.
526 * The name must conform to the guidelines described in Appendix E.
527 **/
528 bool has_O() const {
529 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "O", " ", NULL));
530 }
531
524 std::string O() const { 532 std::string O() const {
525 std::string ret; 533 std::string ret;
526 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "O", "", &re t)) return ret; 534 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "O", "", &re t)) 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
531 }; 539 };
532 540
533 #endif // __DEFINED__SkPdfAttributeObjectDictionary 541 #endif // __DEFINED__SkPdfAttributeObjectDictionary
OLDNEW
« no previous file with comments | « experimental/PdfViewer/SkPdfArtifactsDictionary_autogen.h ('k') | experimental/PdfViewer/SkPdfBeadDictionary_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698