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

Unified Diff: experimental/PdfViewer/SkPdfListAttributeDictionary_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/SkPdfListAttributeDictionary_autogen.h
===================================================================
--- experimental/PdfViewer/SkPdfListAttributeDictionary_autogen.h (revision 9684)
+++ experimental/PdfViewer/SkPdfListAttributeDictionary_autogen.h (working copy)
@@ -5,6 +5,7 @@
#include "SkPdfArray_autogen.h"
#include "SkPdfDictionary_autogen.h"
+// Standard list attribute
class SkPdfListAttributeDictionary : public SkPdfDictionary {
public:
virtual SkPdfObjectType getType() const { return kListAttributeDictionary_SkPdfObjectType;}
@@ -521,6 +522,29 @@
SkPdfListAttributeDictionary& operator=(const SkPdfListAttributeDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
+/** (Optional) The numbering system used to generate the content of the Lbl (Label)
+ * elements in an autonumbered list, or the symbol used to identify each item in an
+ * unnumbered list:
+ * None No autonumbering; Lbl elements (if present) contain arbi-
+ * trary text not subject to any numbering scheme
+ * Disc Solid circular bullet
+ * Circle Open circular bullet
+ * Square Solid square bullet
+ * Decimal Decimal arabic numerals (1'9, 10'99, ...)
+ * UpperRoman Uppercase roman numerals (I, II, III, IV, ...)
+ * LowerRoman Lowercase roman numerals (i, ii, iii, iv, ...)
+ * UpperAlpha Uppercase letters (A, B, C, ...)
+ * LowerAlpha Lowercase letters (a, b, c, ...)
+ * Default value: None.
+ * Note: The alphabet used for UpperAlpha and LowerAlpha is determined by the pre-
+ * vailing Lang entry (see Section 9.8.1, "Natural Language Specification").
+ * Note: The set of possible values may be expanded as Unicode identifies additional
+ * numbering systems.
+**/
+ bool has_ListNumbering() const {
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ListNumbering", "", NULL));
+ }
+
std::string ListNumbering() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ListNumbering", "", &ret)) return ret;

Powered by Google App Engine
This is Rietveld 408576698