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

Side by Side Diff: experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfType5ShadingDictionary_autogen.h

Issue 18404006: remove now all the files fro depot for PDF API since we generate them at build time (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 5 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
(Empty)
1 #ifndef __DEFINED__SkPdfType5ShadingDictionary
2 #define __DEFINED__SkPdfType5ShadingDictionary
3
4 #include "SkPdfUtils.h"
5 #include "SkPdfEnums_autogen.h"
6 #include "SkPdfArray_autogen.h"
7 #include "SkPdfShadingDictionary_autogen.h"
8
9 // Additional entries specific to a type 5 shading dictionary
10 class SkPdfType5ShadingDictionary : public SkPdfShadingDictionary {
11 public:
12 virtual SkPdfObjectType getType() const { return kType5ShadingDictionary_SkPdf ObjectType;}
13 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kType5Sh adingDictionary_SkPdfObjectType + 1);}
14 public:
15 virtual SkPdfType5ShadingDictionary* asType5ShadingDictionary() {return this;}
16 virtual const SkPdfType5ShadingDictionary* asType5ShadingDictionary() const {r eturn this;}
17
18 private:
19 virtual SkPdfType1ShadingDictionary* asType1ShadingDictionary() {return NULL;}
20 virtual const SkPdfType1ShadingDictionary* asType1ShadingDictionary() const {r eturn NULL;}
21
22 virtual SkPdfType2ShadingDictionary* asType2ShadingDictionary() {return NULL;}
23 virtual const SkPdfType2ShadingDictionary* asType2ShadingDictionary() const {r eturn NULL;}
24
25 virtual SkPdfType3ShadingDictionary* asType3ShadingDictionary() {return NULL;}
26 virtual const SkPdfType3ShadingDictionary* asType3ShadingDictionary() const {r eturn NULL;}
27
28 virtual SkPdfType4ShadingDictionary* asType4ShadingDictionary() {return NULL;}
29 virtual const SkPdfType4ShadingDictionary* asType4ShadingDictionary() const {r eturn NULL;}
30
31 virtual SkPdfType6ShadingDictionary* asType6ShadingDictionary() {return NULL;}
32 virtual const SkPdfType6ShadingDictionary* asType6ShadingDictionary() const {r eturn NULL;}
33
34 public:
35 private:
36 public:
37 SkPdfType5ShadingDictionary(const PdfMemDocument* podofoDoc = NULL, const PdfO bject* podofoObj = NULL) : SkPdfShadingDictionary(podofoDoc, podofoObj) {}
38
39 SkPdfType5ShadingDictionary(const SkPdfType5ShadingDictionary& from) : SkPdfSh adingDictionary(from.fPodofoDoc, from.fPodofoObj) {}
40
41 virtual bool valid() const {return true;}
42
43 SkPdfType5ShadingDictionary& operator=(const SkPdfType5ShadingDictionary& from ) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; retur n *this;}
44
45 /** (Required) The number of bits used to represent each vertex coordinate.
46 * Valid values are 1, 2, 4, 8, 12, 16, 24, and 32.
47 **/
48 bool has_BitsPerCoordinate() const {
49 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BitsP erCoordinate", "", NULL));
50 }
51
52 long BitsPerCoordinate() const;
53 /** (Required) The number of bits used to represent each color component.
54 * Valid values are 1, 2, 4, 8, 12, and 16.
55 **/
56 bool has_BitsPerComponent() const {
57 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BitsP erComponent", "", NULL));
58 }
59
60 long BitsPerComponent() const;
61 /** (Required) The number of vertices in each row of the lattice; the value
62 * must be greater than or equal to 2. The number of rows need not be
63 * specified.
64 **/
65 bool has_VerticesPerRow() const {
66 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Verti cesPerRow", "", NULL));
67 }
68
69 long VerticesPerRow() const;
70 /** (Required) An array of numbers specifying how to map vertex coordinates
71 * and color components into the appropriate ranges of values. The de-
72 * coding method is similar to that used in image dictionaries (see "Decode
73 * Arrays" on page 271). The ranges are specified as follows:
74 * [ xmin xmax ymin ymax c1,min c1,max ... cn,min cn,max ]
75 * Note that only one pair of c values should be specified if a Function entry
76 * is present.
77 **/
78 bool has_Decode() const {
79 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Decod e", "", NULL));
80 }
81
82 SkPdfArray* Decode() const;
83 /** (Optional) A 1-in, n-out function or an array of n 1-in, 1-out functions
84 * (where n is the number of color components in the shading dictionary's
85 * color space). If this entry is present, the color data for each vertex must be
86 * specified by a single parametric variable rather than by n separate color
87 * components; the designated function(s) will be called with each interpo-
88 * lated value of the parametric variable to determine the actual color at each
89 * point. Each input value will be forced into the range interval specified for
90 * the corresponding color component in the shading dictionary's Decode
91 * array. Each function's domain must be a superset of that interval. If the
92 * value returned by the function for a given color component is out of
93 * range, it will be adjusted to the nearest valid value.
94 * This entry may not be used with an Indexed color space.
95 **/
96 bool has_Function() const {
97 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Funct ion", "", NULL));
98 }
99
100 SkPdfFunction Function() const;
101 };
102
103 #endif // __DEFINED__SkPdfType5ShadingDictionary
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698