]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathPar.cpp
Rm dup "Float" in "Insert>Float>Figure Wrap Float"
[features.git] / src / mathed / InsetMathPar.cpp
index cb63ec84543aacbb5d525ce696d8545479c99b29..2e72a02b2128c9a26ade3aa91c4ea6b4358ce0af 100644 (file)
@@ -3,7 +3,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 #include <config.h>
 
 #include "InsetMathPar.h"
+
 #include "MathData.h"
 #include "MathStream.h"
-#include "support/std_ostream.h"
-
 
-namespace lyx {
+#include "MetricsInfo.h"
 
+#include <ostream>
 
-using std::auto_ptr;
-
+namespace lyx {
 
-InsetMathPar::InsetMathPar(MathData const & ar)
+InsetMathPar::InsetMathPar(Buffer * buf, MathData const & ar)
+       : InsetMathHull(buf)
 {
        cells_[0] = ar;
 }
 
 
-bool InsetMathPar::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetMathPar::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       dim = dim_;
-       FontSetChanger dummy1(mi.base, "textnormal");
-       InsetMathGrid::metrics(mi);
-       if (dim_ == dim)
-               return false;
-       dim = dim_;
-       return true;
+       Changer dummy = mi.base.changeFontSet("textnormal");
+       InsetMathGrid::metrics(mi, dim);
 }
 
 
 void InsetMathPar::draw(PainterInfo & pi, int x, int y) const
 {
-       FontSetChanger dummy1(pi.base, "textnormal");
+       Changer dummy = pi.base.changeFontSet("textnormal");
        InsetMathGrid::draw(pi, x, y);
 }
 
 
-void InsetMathPar::write(WriteStream & os) const
+void InsetMathPar::write(TeXMathStream & os) const
 {
        for (idx_type i = 0; i < nargs(); ++i)
                os << cell(i) << "\n";
@@ -60,9 +55,9 @@ void InsetMathPar::infoize(odocstream & os) const
 }
 
 
-auto_ptr<Inset> InsetMathPar::doClone() const
+Inset * InsetMathPar::clone() const
 {
-       return auto_ptr<Inset>(new InsetMathPar(*this));
+       return new InsetMathPar(*this);
 }