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

Unified Diff: experimental/PdfViewer/SkPdfInkAnnotationDictionary_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 side-by-side diff with in-line comments
Download patch
Index: experimental/PdfViewer/SkPdfInkAnnotationDictionary_autogen.h
===================================================================
--- experimental/PdfViewer/SkPdfInkAnnotationDictionary_autogen.h (revision 9684)
+++ experimental/PdfViewer/SkPdfInkAnnotationDictionary_autogen.h (working copy)
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Additional entries specific to an ink annotation
class SkPdfInkAnnotationDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kInkAnnotationDictionary_SkPdfObjectType;}
@@ -521,6 +522,13 @@
SkPdfInkAnnotationDictionary& operator=(const SkPdfInkAnnotationDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Required) The type of annotation that this dictionary describes; must be Ink for
+ * an ink annotation.
+**/
+ bool has_Subtype() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", NULL));
+ }
+
std::string Subtype() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "", &ret)) return ret;
@@ -528,6 +536,13 @@
return "";
}
+/** (Required) The text to be displayed in the pop-up window when the annotation
+ * is opened. Carriage returns may be used to separate the text into paragraphs.
+**/
+ bool has_Contents() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents", "", NULL));
+ }
+
std::string Contents() const {
std::string ret;
if (StringFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Contents", "", &ret)) return ret;
@@ -535,6 +550,16 @@
return "";
}
+/** (Required) An array of n arrays, each representing a stroked path. Each array is a
+ * series of alternating horizontal and vertical coordinates in default user space,
+ * specifying points along the path. When drawn, the points are connected by
+ * straight lines or curves in an implementation-dependent way. (See implementa-
+ * tion note 68 in Appendix H.)
+**/
+ bool has_InkList() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "InkList", "", NULL));
+ }
+
SkPdfArray InkList() const {
SkPdfArray ret;
if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "InkList", "", &ret)) return ret;
@@ -542,6 +567,16 @@
return SkPdfArray();
}
+/** (Optional) A border style dictionary (see Table 8.12 on page 495) specifying the
+ * line width and dash pattern to be used in drawing the paths.
+ * Note: The annotation dictionary's AP entry, if present, takes precedence over the
+ * InkList and BS entries; see Table 8.10 on page 490 and Section 8.4.4, "Appearance
+ * Streams."
+**/
+ bool has_BS() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BS", "", NULL));
+ }
+
SkPdfDictionary* BS() const {
SkPdfDictionary* ret;
if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BS", "", &ret)) return ret;

Powered by Google App Engine
This is Rietveld 408576698