8ee30c3bb3dd1428d7b6db3fbd0643faf48264e1
[ipdf/code.git] / src / ipdf.h
1 #ifndef _IPDF_H
2 #define _IPDF_H
3
4 #include "common.h"
5
6 namespace IPDF
7 {
8         typedef float Real;
9         
10         inline float RealToFloat(Real r) {return r;}
11         inline Real Random(Real max=1, Real min=0)
12         {
13                 return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6);
14         }
15
16         typedef unsigned ObjectID;
17         typedef enum {RECT_FILLED, RECT_OUTLINE} ObjectType;
18
19         enum DocChunkTypes
20         {
21                 CT_OBJTYPES,
22                 CT_OBJBOUNDS
23         };
24
25         struct Rect
26         {
27                 Real x; Real y; Real w; Real h;
28                 Rect() = default; // Needed so we can fread/fwrite this struct
29                 Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {}
30                 std::string Str() 
31                 {
32                         std::stringstream s;
33                         s << "{" << x << ", " << y << ", " << w << ", " << h << "}";
34                         return s.str();
35                 }
36         };
37
38         struct Objects
39         {
40                 std::vector<ObjectType> types;          
41                 std::vector<Rect> bounds;
42         };
43
44         class View;
45 }
46
47
48 #endif //_IPDF_H

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