]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.h
GuiTabular.cpp: don't hardcode decimal align combobox item
[lyx.git] / src / graphics / GraphicsParams.h
index 1f633e768560c795f93652f42cf28a43deb163a7..7213aaa3a150ba06864cf922c6478eda0bbdd2c5 100644 (file)
@@ -16,6 +16,8 @@
 
 #include "GraphicsTypes.h"
 
+#include "support/FileName.h"
+
 #include <string>
 #include <iosfwd>
 
@@ -53,11 +55,11 @@ 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.
@@ -69,7 +71,7 @@ public:
         *  image.
         */
        /// Rotation angle.
-       float angle;
+       double angle;
 };
 
 bool operator==(Params const &, Params const &);