]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.C
Change the color of the background widget to red.
[lyx.git] / src / mathed / math_sizeinset.C
index 8587e570479198cd474c7dce735cfe57e29a9308..b6e3a8176914f88ee7310b0d6946ce333129d477 100644 (file)
@@ -1,51 +1,70 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
+/**
+ * \file math_sizeinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
+#include <config.h>
 
 #include "math_sizeinset.h"
+#include "math_data.h"
+#include "math_mathmlstream.h"
 #include "math_parser.h"
-#include "support/LOstream.h"
+#include "math_streamstr.h"
+#include "support/std_ostream.h"
+
+#ifndef CXX_GLOBAL_CSTD
+using std::atoi;
+#endif
+
+using std::auto_ptr;
 
 
 MathSizeInset::MathSizeInset(latexkeys const * l)
-       : MathNestInset(1), key_(l)
+       : MathNestInset(1), key_(l), style_(Styles(atoi(l->extra.c_str())))
 {}
 
 
-MathInset * MathSizeInset::clone() const
+auto_ptr<InsetBase> MathSizeInset::clone() const
+{
+       return auto_ptr<InsetBase>(new MathSizeInset(*this));
+}
+
+
+void MathSizeInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       return new MathSizeInset(*this);
+       StyleChanger dummy(mi.base, style_);
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
-void MathSizeInset::draw(Painter & pain, int x, int y) const
+void MathSizeInset::draw(PainterInfo & pi, int x, int y) const
 {
-       xo(x);
-       yo(y);
-       xcell(0).draw(pain, x, y);
+       StyleChanger dummy(pi.base, style_);
+       cell(0).draw(pi, x + 1, y);
+       drawMarkers(pi, x, y);
 }
 
 
-void MathSizeInset::metrics(MathStyles /* st */) const
+void MathSizeInset::write(WriteStream & os) const
 {
-       xcell(0).metrics(MathStyles(key_->id));
-       ascent_   = xcell(0).ascent_;
-       descent_  = xcell(0).descent_;
-       width_    = xcell(0).width_;
+       os << "{\\" << key_->name << ' ' << cell(0) << '}';
 }
 
 
-void MathSizeInset::write(std::ostream & os, bool fragile) const
+void MathSizeInset::normalize(NormalStream & os) const
 {
-       os << "{\\" << key_->name << " ";
-       cell(0).write(os, fragile);
-       os << "}";
+       os << '[' << key_->name << ' ' << cell(0) << ']';
 }
 
 
-void MathSizeInset::writeNormal(std::ostream & os) const
+void MathSizeInset::infoize(std::ostream & os) const
 {
-       os << "[" << key_->name << " ";
-       cell(0).writeNormal(os);
-       os << "]";
+       os << "Size: " << key_->name;
 }