]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
Remove obsolete (and false) comment.
[lyx.git] / src / graphics / GraphicsParams.h
index d086a2585765856d57d87219c4ad7d2834b14df1..052b006bff719aa42c1977904be4d2115ec3ea29 100644 (file)
@@ -14,7 +14,7 @@
 #ifndef GRAPHICSPARAMS_H
 #define GRAPHICSPARAMS_H
 
-#include "GraphicsTypes.h"
+#include "Length.h"
 
 #include "support/FileName.h"
 
@@ -38,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,8 +56,9 @@ class Params
 public:
        Params();
 
-       DisplayType display;
+       bool display;
        unsigned int scale;
+       double pixel_ratio;
 
        /// The image filename.
        support::FileName filename;
@@ -72,12 +74,6 @@ public:
         */
        /// Rotation angle.
        double angle;
-
-       /** The icon to be displayed to the top-left corner of an image.
-        *  It is mutable because an icon reflects a temporary state of
-        *  the image, and is variable.
-        */
-       mutable std::string icon;
 };
 
 bool operator==(Params const &, Params const &);