X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=86cc9dc9b16daeb648fde7454c1bfc3c4fb6d5f2;hb=689e54f34a4d735e6081b1b1ac8487bf028f3982;hp=9759643ccbaaa09003859d01f7a90d0f291bcf13;hpb=236ea81bc5c0ce7101c9460d1ee97b8f3c9be9df;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index 9759643ccb..86cc9dc9b1 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -14,8 +14,10 @@ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H -#include "GraphicsTypes.h" -#include "support/std_string.h" +#include "support/FileName.h" + +#include +#include namespace lyx { @@ -24,11 +26,12 @@ 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; @@ -42,15 +45,20 @@ 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; + 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 +70,7 @@ struct Params * image. */ /// Rotation angle. - float angle; + double angle; }; bool operator==(Params const &, Params const &);