X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=052b006bff719aa42c1977904be4d2115ec3ea29;hb=47973dc2b448dd2753f0b55c057ceda9e349a5f1;hp=d7cb0038577dbe99dede0d8efac9a9f7b7e4bdd4;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index d7cb003857..052b006bff 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -14,8 +14,12 @@ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H -#include "GraphicsTypes.h" -#include "LString.h" +#include "Length.h" + +#include "support/FileName.h" + +#include +#include namespace lyx { @@ -24,33 +28,40 @@ 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. @@ -62,7 +73,7 @@ struct Params * image. */ /// Rotation angle. - float angle; + double angle; }; bool operator==(Params const &, Params const &);