]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
The free_spacing patch and fix to the mess that Rob discovered.
[lyx.git] / src / graphics / GraphicsParams.h
index d25d5de543caa8edd65667c5a40b8a28cdc5311c..b366f9a0c6f94e911ff7ac8a63dc7c4b3ccedbdc 100644 (file)
@@ -1,21 +1,19 @@
 // -*- C++ -*-
 /**
  *  \file GraphicsParams.h
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  \author Angus Leeming <a.leeming@ic.ac.uk>
+ *  \author Angus Leeming
  *
- *  Used internally by the GraphicsCache.
+ * Full author contact details are available in file CREDITS
+ *
+ *  Used internally by the grfx::Image.
  */
 
 #ifndef GRAPHICSPARAMS_H
 #define GRAPHICSPARAMS_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "GraphicsTypes.h"
 #include "LString.h"
 
@@ -34,10 +32,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 +46,7 @@ struct Params
        Params();
 
        DisplayType display;
+       unsigned int scale;
 
        /// The image filename.
        string filename;
@@ -61,12 +60,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 &);