]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetGraphicsParams.h
Fix text frame drawing.
[lyx.git] / src / insets / InsetGraphicsParams.h
index 05c65da5c6fc0e7181abfda9d6d34c053d259d0b..b6cea1fd9bae7f05c02bd6024a13c595c2f1ca82 100644 (file)
@@ -15,7 +15,7 @@
 
 
 #include "graphics/GraphicsTypes.h"
-#include "LyXLength.h"
+#include "Length.h"
 #include "support/FileName.h"
 
 namespace lyx {
@@ -38,15 +38,17 @@ public:
        /// Scaling for output (LaTeX)
        std::string scale;
        /// sizes for output (LaTeX)
-       LyXLength width;
+       Length width;
        ///
-       LyXLength height;
+       Length height;
        /// Keep the ratio between height and width when resizing.
        bool keepAspectRatio;
        /// draft mode
        bool draft;
        /// what to do with zipped files
        bool noUnzip;
+       /// scale image before rotating
+       bool scaleBeforeRotation;
 
        /// The bounding box with "xLB yLB yRT yRT ", divided by a space!
        std::string bb;