X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=b1eb1a05c53d7c9d63ffe57c44b4b944cbdb9a6b;hb=99c5a46c68bd605c03d4e3a86811831ed7dd3d37;hp=fbba4d1a1c1a327cf262a9da640da4f7608503e3;hpb=cf216cd7fc8ec452e3147171ab6a107c88906b06;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index fbba4d1a1c..b1eb1a05c5 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -1,35 +1,37 @@ // -*- C++ -*- /** - * \file GraphicsParams.h - * Copyright 2002 the LyX Team - * 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 * - * Used internally by the grfx::Image. + * Full author contact details are available in file CREDITS. + * + * Used internally by the lyx::graphics::Image. */ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "support/FileName.h" -#include "GraphicsTypes.h" -#include "LString.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; @@ -43,15 +45,19 @@ struct BoundingBox { bool operator==(BoundingBox const &, BoundingBox const &); bool operator!=(BoundingBox const &, BoundingBox const &); -struct Params +std::ostream & operator<<(std::ostream &, BoundingBox const &); + + +class Params { +public: Params(); - DisplayType display; + bool display; unsigned int scale; /// The image filename. - string filename; + support::FileName filename; /** Note that the BoundingBox is always relative to the BoundingBox * as stored in the EPS file. @@ -63,12 +69,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