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

Unified Diff: experimental/PdfViewer/SkPdfTableAttributesDictionary_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/SkPdfTableAttributesDictionary_autogen.h
===================================================================
--- experimental/PdfViewer/SkPdfTableAttributesDictionary_autogen.h (revision 9684)
+++ experimental/PdfViewer/SkPdfTableAttributesDictionary_autogen.h (working copy)
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Standard table attributes
class SkPdfTableAttributesDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kTableAttributesDictionary_SkPdfObjectType;}
@@ -521,6 +522,14 @@
SkPdfTableAttributesDictionary& operator=(const SkPdfTableAttributesDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Optional) The number of rows in the enclosing table that are spanned by the
+ * cell. The cell expands by adding rows in the block-progression direction speci-
+ * fied by the table's WritingMode attribute. Default value: 1.
+**/
+ bool has_RowSpan() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RowSpan", "", NULL));
+ }
+
long RowSpan() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RowSpan", "", &ret)) return ret;
@@ -528,6 +537,14 @@
return 0;
}
+/** (Optional) The number of columns in the enclosing table that are spanned by
+ * the cell. The cell expands by adding columns in the inline-progression direction
+ * specified by the table's WritingMode attribute. Default value: 1.
+**/
+ bool has_ColSpan() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColSpan", "", NULL));
+ }
+
long ColSpan() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColSpan", "", &ret)) return ret;

Powered by Google App Engine
This is Rietveld 408576698