d67b0b20f6e1bf907fc4b011bfd789cdfaed175d
[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 <map>
8
9 #include "../contrib/pugixml-1.4/src/pugixml.hpp"
10 #include "stb_truetype.h"
11
12 typedef struct stbtt_fontinfo stbtt_fontinfo;
13
14 namespace IPDF
15 {
16         struct SVGMatrix
17         {
18                 Real a; // width
19                 Real c; // skew x by y
20                 Real e; // translate x
21                 
22                 Real b; // skew y by x
23                 Real d; // height
24                 Real f; // translate y
25         };
26         // SVG matrix transforms (x,y) <- (a x' + c y' + e, b x' + d y' + f)
27         // Equivelant to OpenGL 3d matrix transform ((a, c, e) (b, d, f) (0,0,1))
28         
29         class Document
30         {
31                 public:
32                         Document(const std::string & filename = "", const std::string & font_filename = "fonts/DejaVuSansMono.ttf") : m_objects(), m_count(0), m_font_data(NULL), m_font()
33                         {
34                                 Load(filename);
35                                 if (font_filename != "")
36                                         SetFont(font_filename);
37                         }
38                         virtual ~Document() 
39                         {
40                                 free(m_font_data);
41                         }
42                         
43                         
44
45                         void Load(const std::string & filename = "");
46                         void Save(const std::string & filename);
47                         void DebugDumpObjects();
48
49                         unsigned ObjectCount() const {return m_count;}
50                         inline const Objects & GetObjects() const {return m_objects;}
51
52                         bool operator==(const Document & equ) const;
53                         bool operator!=(const Document & equ) const {return !(this->operator==(equ));}
54
55                         unsigned AddPath(unsigned start_index, unsigned end_index, const Colour & shading=Colour(0.6,0.6,0.6,1), const Colour & stroke=Colour(0,0,0,0));
56                         unsigned AddBezier(const Bezier & bezier);
57                         unsigned Add(ObjectType type, const Rect & bounds, unsigned data_index = 0, QuadTreeIndex qtnode = 0);
58                         unsigned AddBezierData(const Bezier & bezier);
59                         unsigned AddPathData(const Path & path);
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                         void ParseSVG(const std::string & svg, const Rect & bounds = Rect(0,0,1,1));
67                         
68                         /** Parse an SVG node or SVG-group node, adding children to the document **/
69                         void ParseSVGNode(pugi::xml_node & root, SVGMatrix & transform);
70                         /** Parse an SVG path with string **/
71                         std::pair<unsigned, unsigned> ParseSVGPathData(const std::string & d, const SVGMatrix & transform, bool & closed);
72                         
73                         /** Modify an SVG transformation matrix **/
74                         static void ParseSVGTransform(const std::string & s, SVGMatrix & transform);
75                         
76                         /** Extract CSS values (shudder) from style **/
77                         static void ParseSVGStyleData(const std::string & style, std::map<std::string, std::string> & results);
78
79                         /** Font related functions **/
80                         void SetFont(const std::string & font_filename);
81                         void AddText(const std::string & text, Real scale, Real x, Real y);
82                         
83                         void AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y);
84                         
85                         void TransformObjectBounds(const SVGMatrix & transform);
86                         void TranslateObjects(const Real & x, const Real & y, ObjectType type = NUMBER_OF_OBJECT_TYPES);
87                         void ScaleObjectsAboutPoint(const Real & x, const Real & y, const Real & scale_amount, ObjectType type = NUMBER_OF_OBJECT_TYPES);
88                         
89 #ifndef QUADTREE_DISABLED
90                         inline const QuadTree& GetQuadTree() { if (m_quadtree.root_id == QUADTREE_EMPTY) { GenBaseQuadtree(); } return m_quadtree; }
91                         QuadTreeIndex GenQuadChild(QuadTreeIndex parent, QuadTreeNodeChildren type);
92                         QuadTreeIndex GenQuadParent(QuadTreeIndex child, QuadTreeNodeChildren mytype);
93                         // Returns the number of objects the current object formed when clipped, the objects in question are added to the end of the document.
94                         int ClipObjectToQuadChild(int object_id, QuadTreeNodeChildren type);
95 #endif
96
97                         void ClearObjects()
98                         {
99                                 m_count = 0;
100                                 m_objects.Clear();
101                         }
102
103
104                 private:
105                         friend class View;
106                         Objects m_objects;
107 #ifndef QUADTREE_DISABLED
108                         QuadTree m_quadtree;
109                         void GenBaseQuadtree();
110 #endif
111                         unsigned m_count;
112                         unsigned char * m_font_data;
113                         stbtt_fontinfo m_font;
114                 
115                         
116
117         };
118 }
119
120 #endif //_DOCUMENT_H

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