X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=052b006bff719aa42c1977904be4d2115ec3ea29;hb=a700d657b3b06541b10ddae8cc5847bd46d06aae;hp=86cc9dc9b16daeb648fde7454c1bfc3c4fb6d5f2;hpb=9c55af4a223ce4db29d643251109e245665344bd;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index 86cc9dc9b1..052b006bff 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -14,6 +14,8 @@ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H +#include "Length.h" + #include "support/FileName.h" #include @@ -36,15 +38,16 @@ public: /// 0 0 0 0 is empty! bool empty() const; - unsigned int xl; - unsigned int yb; - unsigned int xr; - unsigned int yt; + Length xl; + Length yb; + Length xr; + Length yt; }; bool operator==(BoundingBox const &, BoundingBox const &); bool operator!=(BoundingBox const &, BoundingBox const &); +/// output bounding box in LyX file format std::ostream & operator<<(std::ostream &, BoundingBox const &);