]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
Remove obsolete (and false) comment.
[lyx.git] / src / graphics / GraphicsParams.h
index b1eb1a05c53d7c9d63ffe57c44b4b944cbdb9a6b..052b006bff719aa42c1977904be4d2115ec3ea29 100644 (file)
@@ -14,6 +14,8 @@
 #ifndef GRAPHICSPARAMS_H
 #define GRAPHICSPARAMS_H
 
+#include "Length.h"
+
 #include "support/FileName.h"
 
 #include <string>
@@ -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 &);
 
 
@@ -55,6 +58,7 @@ public:
 
        bool display;
        unsigned int scale;
+       double pixel_ratio;
 
        /// The image filename.
        support::FileName filename;