]> git.lyx.org Git - lyx.git/blobdiff - src/graphics/GraphicsParams.C
Store an InsetBase & in MailInset.
[lyx.git] / src / graphics / GraphicsParams.C
index a952895e93cde7900fe58375d930f48a5e25e3b2..0c7123ee818a0fd99ea520be6171ff9e799d0b28 100644 (file)
@@ -1,29 +1,28 @@
-/*
+/**
  * \file GraphicsParams.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include <cstdlib>
 
 #include "GraphicsParams.h"
 #include "Lsstream.h"
 #include "lyxlength.h"
 
+using std::abs;
 
 namespace grfx {
 
 Params::Params()
        : display(ColorDisplay),
-         width(0),
-         height(0),
-         scale(0),
+         scale(100),
          angle(0)
 {}
 
@@ -31,12 +30,10 @@ Params::Params()
 bool operator==(Params const & a, Params const & b)
 {
        return (a.filename == b.filename &&
-               a.display  == b.display &&
-               a.bb       == b.bb &&
-               a.width    == b.width &&
-               a.height   == b.height &&
-               a.scale    == b.scale &&
-               a.angle    == b.angle);
+               a.display == b.display &&
+               a.bb == b.bb &&
+               a.scale == b.scale &&
+               a.angle == b.angle);
 }
 
 
@@ -63,10 +60,10 @@ BoundingBox::BoundingBox(string const & bb)
 
        // inBP returns the length in Postscript points.
        // Note further that there are 72 Postscript pixels per inch.
-       int const xl_tmp = LyXLength(a).inBP();
-       int const yb_tmp = LyXLength(b).inBP();
-       int const xr_tmp = LyXLength(c).inBP();
-       int const yt_tmp = LyXLength(d).inBP();
+       unsigned int const xl_tmp = abs(LyXLength(a).inBP());
+       unsigned int const yb_tmp = abs(LyXLength(b).inBP());
+       unsigned int const xr_tmp = abs(LyXLength(c).inBP());
+       unsigned int const yt_tmp = abs(LyXLength(d).inBP());
 
        if (xr_tmp <= xl_tmp || yt_tmp <= yb_tmp)
                return;