X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fgraphics%2FGraphicsParams.h;h=b1eb1a05c53d7c9d63ffe57c44b4b944cbdb9a6b;hb=99c5a46c68bd605c03d4e3a86811831ed7dd3d37;hp=678566e2bdc387bd679746df286ed992cf7c7bc3;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/graphics/GraphicsParams.h b/src/graphics/GraphicsParams.h index 678566e2bd..b1eb1a05c5 100644 --- a/src/graphics/GraphicsParams.h +++ b/src/graphics/GraphicsParams.h @@ -14,7 +14,7 @@ #ifndef GRAPHICSPARAMS_H #define GRAPHICSPARAMS_H -#include "GraphicsTypes.h" +#include "support/FileName.h" #include #include @@ -26,7 +26,8 @@ namespace graphics { /** Parse a string of the form "200pt 500pt 300mm 5in" into a * usable bounding box. */ -struct BoundingBox { +class BoundingBox { +public: /// BoundingBox(); /// @@ -47,15 +48,16 @@ bool operator!=(BoundingBox const &, BoundingBox const &); std::ostream & operator<<(std::ostream &, BoundingBox const &); -struct Params +class Params { +public: Params(); - DisplayType display; + bool display; unsigned int scale; /// The image filename. - std::string filename; + support::FileName filename; /** Note that the BoundingBox is always relative to the BoundingBox * as stored in the EPS file. @@ -67,7 +69,7 @@ struct Params * image. */ /// Rotation angle. - float angle; + double angle; }; bool operator==(Params const &, Params const &);