X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=15baf2aa3ca27af34e6b4cb1e39c013aa55dd159;hb=3aa7e91a827fa15b3e0906b975c4755a2dcdb76d;hp=611fe9959889b4548359b948920ee7d8793cd79d;hpb=ddb684f332750fef0ae2c6d6c32f4c120f30fdb4;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index 611fe99598..15baf2aa3c 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -1,10 +1,11 @@ // -*- C++ -*- /** * \file GraphicsParams.h - * Copyright 2002 the LyX Team * Read the file COPYING * - * \author Angus Leeming + * \author Angus Leeming + * + * Full author contact details available in file CREDITS * * Used internally by the grfx::Image. */ @@ -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 &);