X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fipdf.h;h=ff31533e5b452297f8f83b27698ca5c9415b8ae2;hp=211f2c33f79c5b8a7947fa5ffecd7857782670e3;hb=84fa5d1b2504a3fe14554d6f175dd387e5b672b4;hpb=8942bd699d8e1ddede1127421ad18bed53232ff3 diff --git a/src/ipdf.h b/src/ipdf.h index 211f2c3..ff31533 100644 --- a/src/ipdf.h +++ b/src/ipdf.h @@ -3,10 +3,13 @@ #include "common.h" #include "real.h" +#include "bezier.h" +#include "rect.h" #define C_RED Colour(1,0,0,1) #define C_GREEN Colour(0,1,0,1) #define C_BLUE Colour(0,0,1,1) +#define C_BLACK Colour(0,0,0,1); namespace IPDF { @@ -25,6 +28,8 @@ namespace IPDF CIRCLE_FILLED = 0, RECT_FILLED, RECT_OUTLINE, + BEZIER, + GROUP, NUMBER_OF_OBJECT_TYPES } ObjectType; @@ -33,33 +38,40 @@ namespace IPDF CT_NUMOBJS, CT_OBJTYPES, CT_OBJBOUNDS, + CT_OBJINDICES, + CT_OBJBEZIERS, + CT_OBJGROUPS }; - struct Rect - { - Real x; Real y; Real w; Real h; - Rect() = default; // Needed so we can fread/fwrite this struct - Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {} - std::string Str() const - { - std::stringstream s; - // float conversion needed because it is fucking impossible to get ostreams working with template classes - s << "{" << Float(x) << ", " << Float(y) << ", " << Float(w) << ", " << Float(h) << "}"; - return s.str(); - } - }; + + + struct Colour { float r; float g; float b; float a; Colour() = default; Colour(float _r, float _g, float _b, float _a) : r(_r), g(_g), b(_b), a(_a) {} }; + + struct Group + { + Colour shading; + }; struct Objects { - std::vector types; - std::vector bounds; + /** Used by all objects **/ + std::vector types; // types of objects + std::vector bounds; // rectangle bounds of objects + + /** Used by BEZIER to identify data position in relevant vector **/ + std::vector data_indices; + + /** Used by BEZIER only **/ + std::vector beziers; // bezier curves - look up by data_indices + + std::vector > groups; }; class View;