X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.h;h=4bcff89c2ca1b31a055ed4c925ed206e2b75dc45;hp=5ea06a0da060700ecca321ac5956e04eba4463c6;hb=f3452f32fba45b1f317e4a6a1906d16068ce3bdf;hpb=58a6719da2337b3e6e20b581885f170bbe5fc480 diff --git a/src/view.h b/src/view.h index 5ea06a0..4bcff89 100644 --- a/src/view.h +++ b/src/view.h @@ -5,19 +5,27 @@ #include "document.h" #include "framebuffer.h" #include "objectrenderer.h" +#include "path.h" +#include "transformationtype.h" #define USE_GPU_TRANSFORM true #define USE_GPU_RENDERING true #define USE_SHADING !(USE_GPU_RENDERING) && true -#ifdef QUADTREE_DISABLED - -#define TRANSFORM_OBJECTS_NOT_VIEW - +#ifdef TRANSFORM_BEZIERS_TO_PATH +#include "gmprat.h" +#include "paranoidnumber.h" #endif namespace IPDF { + #ifdef TRANSFORM_BEZIERS_TO_PATH + typedef Gmprat VReal; + #else + typedef Real VReal; + #endif + typedef TRect VRect; + class Screen; /** * The View class manages a rectangular view into the document. @@ -27,7 +35,7 @@ namespace IPDF class View { public: - View(Document & document, Screen & screen, const Rect & bounds = Rect(0,0,1,1), const Colour & colour = Colour(0.f,0.f,0.f,1.f)); + View(Document & document, Screen & screen, const VRect & bounds = VRect(0,0,1,1), const Colour & colour = Colour(0.f,0.f,0.f,1.f)); virtual ~View(); void Render(int width = 0, int height = 0); @@ -38,7 +46,7 @@ namespace IPDF Rect TransformToViewCoords(const Rect& inp) const; - const Rect& GetBounds() const { return m_bounds; } + const VRect& GetBounds() const { return m_bounds; } const bool UsingGPUTransform() const { return m_use_gpu_transform; } // whether view transform calculated on CPU or GPU @@ -95,7 +103,7 @@ namespace IPDF Document & m_document; Screen & m_screen; FrameBuffer m_cached_display; - Rect m_bounds; + VRect m_bounds; Colour m_colour; // Stores the view bounds.