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

Side by Side Diff: experimental/PdfViewer/autogen/SkPdfMultiMasterFontDictionary_autogen.h

Issue 17748002: Basic support for Type3 Fonts in Pdf + various refactorings (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__SkPdfMultiMasterFontDictionary
2 #define __DEFINED__SkPdfMultiMasterFontDictionary
3
4 #include "SkPdfUtils.h"
5 #include "SkPdfEnums_autogen.h"
6 #include "SkPdfArray_autogen.h"
7 #include "SkPdfType1FontDictionary_autogen.h"
8
9 class SkPdfMultiMasterFontDictionary : public SkPdfType1FontDictionary {
10 public:
11 virtual SkPdfObjectType getType() const { return kMultiMasterFontDictionary_Sk PdfObjectType;}
12 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kMultiMa sterFontDictionary_SkPdfObjectType + 1);}
13 public:
14 virtual SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() {return this;}
15 virtual const SkPdfMultiMasterFontDictionary* asMultiMasterFontDictionary() co nst {return this;}
16
17 private:
18 virtual SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() {return NULL;}
19 virtual const SkPdfTrueTypeFontDictionary* asTrueTypeFontDictionary() const {r eturn NULL;}
20
21 virtual SkPdfType3FontDictionary* asType3FontDictionary() {return NULL;}
22 virtual const SkPdfType3FontDictionary* asType3FontDictionary() const {return NULL;}
23
24 public:
25 private:
26 public:
27 SkPdfMultiMasterFontDictionary(const PdfMemDocument* podofoDoc = NULL, const P dfObject* podofoObj = NULL) : SkPdfType1FontDictionary(podofoDoc, podofoObj) {}
28
29 SkPdfMultiMasterFontDictionary(const SkPdfMultiMasterFontDictionary& from) : S kPdfType1FontDictionary(from.fPodofoDoc, from.fPodofoObj) {}
30
31 virtual bool valid() const {return true;}
32
33 SkPdfMultiMasterFontDictionary& operator=(const SkPdfMultiMasterFontDictionary & from) {this->fPodofoDoc = from.fPodofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
34
35 bool has_Subtype() const {
36 return (ObjectFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subty pe", "", NULL));
37 }
38
39 std::string Subtype() const {
40 std::string ret;
41 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", " ", &ret)) return ret;
42 // TODO(edisonn): warn about missing required field, assert for known good p dfs
43 return "";
44 }
45
46 };
47
48 #endif // __DEFINED__SkPdfMultiMasterFontDictionary
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698