]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
Modify the headers of files in src/graphics as discussed on the list.
[lyx.git] / src / graphics / GraphicsParams.h
index d25d5de543caa8edd65667c5a40b8a28cdc5311c..15baf2aa3ca27af34e6b4cb1e39c013aa55dd159 100644 (file)
@@ -1,12 +1,13 @@
 // -*- C++ -*-
 /**
  *  \file GraphicsParams.h
- *  Copyright 2002 the LyX Team
  *  Read the file COPYING
  *
- *  \author Angus Leeming <a.leeming@ic.ac.uk>
+ *  \author Angus Leeming 
  *
- *  Used internally by the GraphicsCache.
+ * Full author contact details available in file CREDITS
+ *
+ *  Used internally by the grfx::Image.
  */
 
 #ifndef GRAPHICSPARAMS_H
@@ -34,10 +35,10 @@ struct BoundingBox {
        /// 0 0 0 0 is empty!
        bool empty() const;
 
-       int xl;
-       int yb;
-       int xr;
-       int yt;
+       unsigned int xl;
+       unsigned int yb;
+       unsigned int xr;
+       unsigned int yt;
 };
 
 bool operator==(BoundingBox const &, BoundingBox const &);
@@ -48,6 +49,7 @@ struct Params
        Params();
 
        DisplayType display;
+       unsigned int scale;
 
        /// The image filename.
        string filename;
@@ -61,12 +63,8 @@ struct Params
        /** The size of the view inside lyx in pixels or the scaling of the
         *  image.
         */
-       unsigned int width;
-       unsigned int height;
-       unsigned int scale;
-
        /// Rotation angle.
-       int angle;
+       float angle;
 };
 
 bool operator==(Params const &, Params const &);