]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetgraphicsParams.C
Translate labels for float:algorithm, float:figure and float:table.
[lyx.git] / src / insets / insetgraphicsParams.C
index 5332132e36927b64bde91c7507312228f271abd2..9cb6ceb70a67682ceb26404ea37af51f73d39f00 100644 (file)
@@ -1,6 +1,6 @@
 /* This file is part of
  * =================================================
- * 
+ *
  *          LyX, The Document Processor
  *          Copyright 1995 Matthias Ettrich.
  *          Copyright 1995-2001 The LyX Team.
  *
  * ================================================= */
 
-#include <config.h> 
+#include <config.h>
 
 #ifdef __GNUG__
 #pragma implementation
-#endif 
+#endif
 
 #include "insetgraphicsParams.h"
+
 #include "support/translator.h"
 #include "support/filetools.h"
 #include "support/lyxlib.h"
 #include "support/LOstream.h"
 #include "support/LAssert.h"
 
+
+using std::ostream;
+
+
 namespace {
 
 /// This variable keeps a tab on whether the translator was set with the
@@ -34,26 +39,6 @@ bool translatorsSet = false;
 Translator< InsetGraphicsParams::DisplayType, string >
 displayTranslator(InsetGraphicsParams::DEFAULT, "default");
 
-// this is only compatibility stuff for the first 1.2 version
-// it is obselete until 1.3
-LyXLength convertResizeValue(string const token, LyXLex & lex) {
-    lex.next();
-    string value = lex.getString();    // "width" or "height"  
-    lex.next();                                // anyway not interesting
-    value = lex.getString();
-    if (token == "default")
-       return (LyXLength(value+"pt"));
-    else if (token == "cm")
-       return (LyXLength(value+"cm"));
-    else if (token == "inch")
-       return (LyXLength(value+"in"));
-    else if (token == "percentOfColumn")
-       return (LyXLength(value+"c%"));
-    else if (token == "percentOfPage")
-       return (LyXLength(value+"p%"));
-    else return LyXLength("0pt");      // nothing with figinset
-}
-
 } // namespace anon
 
 
@@ -97,18 +82,20 @@ void InsetGraphicsParams::init()
        bb = string();                  // bounding box
        draft = false;                  // draft mode
        clip = false;                   // clip image
-       display = DEFAULT;
+       display = DEFAULT;              // see pref
        subcaption = false;             // subfigure
+       noUnzip = false;                // unzip files
        width = LyXLength();            // set to 0pt
        height = LyXLength();
        lyxwidth = LyXLength();         // for the view in lyx
-       lyxheight = LyXLength();
-       scale = 0;
-       lyxscale = 0;
+       lyxheight = LyXLength();        // also set to 0pt
+       scale = 0;                      // unit is %
+       lyxscale = 0;                   // same for lyxview
        size_type = DEFAULT_SIZE;       // do nothing
        lyxsize_type = DEFAULT_SIZE;    // do nothing
-       keepAspectRatio = false;        //
-       rotateOrigin = "center";        // 
+       keepAspectRatio = false;        // only for latex
+       rotate = false;                 // Rotating
+       rotateOrigin = "center";        // Origin
        rotateAngle = 0.0;              // in degrees
        special = string();             // userdefined stuff
 }
@@ -122,6 +109,7 @@ void InsetGraphicsParams::copy(InsetGraphicsParams const & igp)
        display = igp.display;
        subcaption = igp.subcaption;
        subcaptionText = igp.subcaptionText;
+       noUnzip = igp.noUnzip;
        keepAspectRatio = igp.keepAspectRatio;
        width = igp.width;
        height = igp.height;
@@ -131,53 +119,54 @@ void InsetGraphicsParams::copy(InsetGraphicsParams const & igp)
        lyxwidth = igp.lyxwidth;
        lyxheight = igp.lyxheight;
        lyxscale = igp.lyxscale;
+       rotate = igp.rotate;
        rotateOrigin = igp.rotateOrigin;
        rotateAngle = igp.rotateAngle;
        special = igp.special;
 }
 
 bool operator==(InsetGraphicsParams const & left,
-                InsetGraphicsParams const & right)
+               InsetGraphicsParams const & right)
 {
        if (left.filename == right.filename &&
-               left.bb == right.bb &&
-               left.draft == right.draft &&
-               left.clip == right.clip &&
-               left.display == right.display &&
-               left.subcaption == right.subcaption &&
-               left.subcaptionText == right.subcaptionText &&
-               left.keepAspectRatio == right.keepAspectRatio &&
-               left.width == right.width &&
-               left.height == right.height &&
-               left.scale == right.scale &&
-               left.size_type == right.size_type &&
-               left.lyxsize_type == right.lyxsize_type &&
-               left.lyxwidth == right.lyxwidth &&
-               left.lyxheight == right.lyxheight &&
-               left.lyxscale == right.lyxscale &&
-               left.rotateOrigin == right.rotateOrigin &&
-               lyx::float_equal(left.rotateAngle, right.rotateAngle, 0.001 &&
-               left.special == right.special) 
-          )
+               left.bb == right.bb &&
+               left.draft == right.draft &&
+               left.clip == right.clip &&
+               left.display == right.display &&
+               left.subcaption == right.subcaption &&
+               left.noUnzip == right.noUnzip &&
+               left.subcaptionText == right.subcaptionText &&
+               left.keepAspectRatio == right.keepAspectRatio &&
+               left.width == right.width &&
+               left.height == right.height &&
+               left.scale == right.scale &&
+               left.size_type == right.size_type &&
+               left.lyxsize_type == right.lyxsize_type &&
+               left.lyxwidth == right.lyxwidth &&
+               left.lyxheight == right.lyxheight &&
+               left.lyxscale == right.lyxscale &&
+               left.rotate == right.rotate &&
+               left.rotateOrigin == right.rotateOrigin &&
+               lyx::float_equal(left.rotateAngle, right.rotateAngle, 0.001 &&
+               left.special == right.special)
+         )
                return true;
 
        return false;
 }
 
 bool operator!=(InsetGraphicsParams const & left,
-                InsetGraphicsParams const & right)
+               InsetGraphicsParams const & right)
 {
-       return  !(left == right);
+       return  !(left == right);
 }
 
 
-void InsetGraphicsParams::Write(Buffer const * buf, ostream & os) const
+void InsetGraphicsParams::Write(ostream & os) const
 {
        // If there is no filename, write nothing for it.
-       if (! filename.empty()) {
-               os << "\tfilename "
-               << MakeRelPath(filename, buf->filePath())
-               << '\n';
+       if (!filename.empty()) {
+               os << "\tfilename " << filename << '\n';
        }
        if (!bb.empty())                // bounding box
                os << "\tBoundingBox " << bb << '\n';
@@ -185,13 +174,15 @@ void InsetGraphicsParams::Write(Buffer const * buf, ostream & os) const
                os << "\tclip\n";
        if (draft)                      // draft mode
                os << "\tdraft\n";
-       // Save the display type
+       // Save the display type for the view inside lyx
        os << "\tdisplay " << displayTranslator.find(display) << '\n';
        // Save the subcaption status
        if (subcaption)
            os << "\tsubcaption\n";
        if (!subcaptionText.empty())
            os << "\tsubcaptionText \"" << subcaptionText << '\"' << '\n';
+       if (noUnzip)
+           os << "\tnoUnzip\n";
     // we always need the size type
     // 0: no special
     // 1: width/height combination
@@ -205,12 +196,15 @@ void InsetGraphicsParams::Write(Buffer const * buf, ostream & os) const
            os << "\tscale " << scale << '\n';
        if (keepAspectRatio)
                os << "\tkeepAspectRatio\n";
-       if (!lyx::float_equal(rotateAngle, 0.0, 0.001))
+       if (rotate)
+               os << "\trotate\n";
+       if (rotateAngle != 0.0)
                os << "\trotateAngle " << rotateAngle << '\n';
        if (!rotateOrigin.empty())
                os << "\trotateOrigin " << rotateOrigin << '\n';
        if (!special.empty())
                os << "\tspecial " << special << '\n';
+       // the values for the view in lyx
        os << "\tlyxsize_type " <<  lyxsize_type << '\n';
        if (!lyxwidth.zero())           // the lyx-viewsize
            os << "\tlyxwidth " << lyxwidth.asString() << '\n';
@@ -221,16 +215,11 @@ void InsetGraphicsParams::Write(Buffer const * buf, ostream & os) const
 }
 
 
-bool InsetGraphicsParams::Read(Buffer const * buf, LyXLex & lex,
-                               string const& token)
+bool InsetGraphicsParams::Read(LyXLex & lex, string const& token)
 {
        if (token == "filename") {
                lex.next();
                filename = lex.getString();
-               if (!filename.empty()) {
-                       // Make the filename with absolute directory.
-                       filename = MakeAbsPath(filename, buf->filePath());
-               }
        } else if (token == "BoundingBox") {
                for (int i=0; i<4 ;i++) {
                    lex.next();
@@ -249,19 +238,8 @@ bool InsetGraphicsParams::Read(Buffer const * buf, LyXLex & lex,
        } else if (token == "subcaptionText") {
                lex.next();
                subcaptionText = lex.getString();
-       } else if (token == "widthResize") {
-               if (lex.next()) {
-                   string const token = lex.getString();
-                   if (token == "scale") {
-                       lex.next();
-                       scale = lex.getInteger();
-                       size_type = SCALE;
-                   }
-                   else {
-                       width = convertResizeValue(token, lex);
-                       size_type = WH;
-                   }
-               }
+       } else if (token == "noUnzip") {
+               noUnzip = true;
        } else if (token == "size_type") {
                lex.next();
                switch (lex.getInteger()) {
@@ -275,9 +253,6 @@ bool InsetGraphicsParams::Read(Buffer const * buf, LyXLex & lex,
                lex.next();
                width = LyXLength(lex.getString());
                size_type = WH;
-       } else if (token == "heightResize") {
-               if (lex.next())
-                       height = convertResizeValue(lex.getString(), lex);
        } else if (token == "height") {
                lex.next();
                height = LyXLength(lex.getString());
@@ -287,6 +262,8 @@ bool InsetGraphicsParams::Read(Buffer const * buf, LyXLex & lex,
        } else if (token == "scale") {
                lex.next();
                scale = lex.getInteger();
+       } else if (token == "rotate") {
+               rotate = true;
        } else if (token == "rotateAngle") {
                lex.next();
                rotateAngle = lex.getFloat();
@@ -311,8 +288,10 @@ bool InsetGraphicsParams::Read(Buffer const * buf, LyXLex & lex,
        } else if (token == "lyxscale") {
                lex.next();
                lyxscale = lex.getInteger();
-       } else {
-               // If it's none of the above, its not ours.
+       } else if (token == "special") {
+               lex.eatLine();
+               special = lex.getString();
+       } else {        // If it's none of the above, its not ours.
                return false;
        }
        return true;