]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_splitinset.C
index 02a0d567b5404cae4adbdce429bc34e7c2c9bb03..8f752680860c6f416d21f4c5c3efae78c4418fba 100644 (file)
@@ -1,31 +1,42 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "math_splitinset.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
+
+using std::auto_ptr;
 
 
-MathSplitInset::MathSplitInset(int n)
-       : MathGridInset(2, n)
+MathSplitInset::MathSplitInset(string const & name)
+       : MathGridInset(1, 1), name_(name)
 {
        setDefaults();
 }
 
 
-MathInset * MathSplitInset::clone() const
+auto_ptr<InsetBase> MathSplitInset::clone() const
+{
+       return auto_ptr<InsetBase>(new MathSplitInset(*this));
+}
+
+
+char MathSplitInset::defaultColAlign(col_type col)
 {
-       return new MathSplitInset(*this);
+       if (name_ == "split")
+               return 'l';
+       if (name_ == "gathered")
+               return 'c';
+       if (name_ == "aligned")
+               return (col & 1) ? 'l' : 'r';
+       return 'l';
 }
 
 
-void MathSplitInset::write(WriteStream & os) const
+void MathSplitInset::write(WriteStream & ws) const
 {
-       if (os.fragile)
-               os << "\\protect";
-       os << "\\begin{split}";
-       MathGridInset::write(os);
-       if (os.fragile)
-               os << "\\protect";
-       os << "\\end{split}\n";
+       if (ws.fragile())
+               ws << "\\protect";
+       ws << "\\begin{" << name_ << '}';
+       MathGridInset::write(ws);
+       if (ws.fragile())
+               ws << "\\protect";
+       ws << "\\end{" << name_ << "}\n";
 }