A bunch of OpenGL debug annotations.
[ipdf/code.git] / src / document.h
1 #ifndef _DOCUMENT_H
2 #define _DOCUMENT_H
3
4 #include "ipdf.h"
5 #include "quadtree.h"
6
7 #include "../contrib/pugixml-1.4/src/pugixml.hpp"
8 #include "stb_truetype.h"
9
10 typedef struct stbtt_fontinfo stbtt_fontinfo;
11
12 namespace IPDF
13 {
14         struct SVGMatrix
15         {
16                 Real a; // width
17                 Real c; // skew x by y
18                 Real e; // translate x
19                 
20                 Real b; // skew y by x
21                 Real d; // height
22                 Real f; // translate y
23         };
24         // SVG matrix transforms (x,y) <- (a x' + c y' + e, b x' + d y' + f)
25         // Equivelant to OpenGL 3d matrix transform ((a, c, e) (b, d, f) (0,0,1))
26         
27         class Document
28         {
29                 public:
30                         Document(const std::string & filename = "", const std::string & font_filename = "DejaVuSansMono.ttf") : m_objects(), m_count(0), m_font_data(NULL), m_font()
31                         {
32                                 Load(filename);
33                                 if (font_filename != "")
34                                         SetFont(font_filename);
35                         }
36                         virtual ~Document() 
37                         {
38                                 free(m_font_data);
39                         }
40                         
41                         
42
43                         void Load(const std::string & filename = "");
44                         void Save(const std::string & filename);
45                         void DebugDumpObjects();
46
47                         unsigned ObjectCount() const {return m_count;}
48                         inline const Objects & GetObjects() const {return m_objects;}
49
50                         bool operator==(const Document & equ) const;
51                         bool operator!=(const Document & equ) const {return !(this->operator==(equ));}
52
53                         void Add(ObjectType type, const Rect & bounds, unsigned data_index = 0);
54                         unsigned AddBezierData(const Bezier & bezier);
55                         
56
57
58                         
59
60                         
61                         
62                         /** SVG Related functions **/
63                         
64                         /** Load an SVG text file and add to the document **/
65                         void LoadSVG(const std::string & filename, const Rect & bounds = Rect(0,0,1,1));
66                         
67                         /** Parse an SVG node or SVG-group node, adding children to the document **/
68                         void ParseSVGNode(pugi::xml_node & root, SVGMatrix & transform);
69                         /** Parse an SVG path with string **/
70                         void ParseSVGPathData(const std::string & d, const SVGMatrix & transform);
71                         
72                         /** Modify an SVG transformation matrix **/
73                         static void ParseSVGTransform(const std::string & s, SVGMatrix & transform);
74
75                         /** Font related functions **/
76                         void SetFont(const std::string & font_filename);
77                         void AddText(const std::string & text, Real scale, Real x, Real y);
78                         
79                         void AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y);
80
81 #ifndef QUADTREE_DISABLED
82                         inline const QuadTree& GetQuadTree() { if (m_quadtree.root_id == QUADTREE_EMPTY) { GenBaseQuadtree(); } return m_quadtree; }
83                         QuadTreeIndex GenQuadChild(QuadTreeIndex parent, QuadTreeNodeChildren type);
84                         QuadTreeIndex GenQuadParent(QuadTreeIndex child, QuadTreeNodeChildren mytype);
85 #endif
86
87                 private:
88                         friend class View;
89                         Objects m_objects;
90 #ifndef QUADTREE_DISABLED
91                         QuadTree m_quadtree;
92                         void GenBaseQuadtree();
93 #endif
94                         unsigned m_count;
95                         unsigned char * m_font_data;
96                         stbtt_fontinfo m_font;
97                 
98                         
99
100         };
101 }
102
103 #endif //_DOCUMENT_H

UCC git Repository :: git.ucc.asn.au