X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=052b006bff719aa42c1977904be4d2115ec3ea29;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=e2407a0e8ecba84ed17ac35605736d5108c4c6bc;hpb=6fac1dc98003a6a6e02765f078b3d3426d426508;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index e2407a0e8e..052b006bff 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -1,58 +1,67 @@ // -*- C++ -*- /** - * \file GraphicsParams.h - * Read the file COPYING + * \file GraphicsParams.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Angus Leeming + * \author Angus Leeming * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. * - * Used internally by the grfx::Image. + * Used internally by the lyx::graphics::Image. */ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "Length.h" -#include "GraphicsTypes.h" -#include "LString.h" +#include "support/FileName.h" +#include +#include -namespace grfx { + +namespace lyx { +namespace graphics { /** Parse a string of the form "200pt 500pt 300mm 5in" into a * usable bounding box. */ -struct BoundingBox { +class BoundingBox { +public: /// BoundingBox(); /// - BoundingBox(string const &); + BoundingBox(std::string const &); /// 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 &); -struct Params +/// output bounding box in LyX file format +std::ostream & operator<<(std::ostream &, BoundingBox const &); + + +class Params { +public: Params(); - DisplayType display; + bool display; unsigned int scale; + double pixel_ratio; /// The image filename. - string filename; + support::FileName filename; /** Note that the BoundingBox is always relative to the BoundingBox * as stored in the EPS file. @@ -64,12 +73,13 @@ struct Params * image. */ /// Rotation angle. - float angle; + double angle; }; bool operator==(Params const &, Params const &); bool operator!=(Params const &, Params const &); -} // namespace grfx +} // namespace graphics +} // namespace lyx #endif // GRAPHICSPARAMS_H