Index: experimental/PdfViewer/SkPdfNamedActionsDictionary_autogen.h |
=================================================================== |
--- experimental/PdfViewer/SkPdfNamedActionsDictionary_autogen.h (revision 9684) |
+++ experimental/PdfViewer/SkPdfNamedActionsDictionary_autogen.h (working copy) |
@@ -5,6 +5,7 @@ |
#include "SkPdfArray_autogen.h" |
#include "SkPdfDictionary_autogen.h" |
+// Additional entries specific to named actions |
class SkPdfNamedActionsDictionary : public SkPdfDictionary { |
public: |
virtual SkPdfObjectType getType() const { return kNamedActionsDictionary_SkPdfObjectType;} |
@@ -521,6 +522,13 @@ |
SkPdfNamedActionsDictionary& operator=(const SkPdfNamedActionsDictionary& from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;} |
+/** (Required) The type of action that this dictionary describes; must be Named for a named |
+ * action. |
+**/ |
+ bool has_S() const { |
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", NULL)); |
+ } |
+ |
std::string S() const { |
std::string ret; |
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret; |
@@ -528,6 +536,12 @@ |
return ""; |
} |
+/** (Required) The name of the action to be performed (see Table 8.45). |
+**/ |
+ bool has_N() const { |
+ return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", NULL)); |
+ } |
+ |
std::string N() const { |
std::string ret; |
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "N", "", &ret)) return ret; |