lyx_mirror/src/mathed/math_splitinset.C

42 lines
720 B
C++
Raw Normal View History

#include "math_splitinset.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
MathSplitInset::MathSplitInset(string const & name)
: MathGridInset(1, 1), name_(name)
{
setDefaults();
}
InsetBase * MathSplitInset::clone() const
{
return new MathSplitInset(*this);
}
char MathSplitInset::defaultColAlign(col_type col)
{
if (name_ == "split")
return 'l';
if (name_ == "gathered")
return 'c';
if (name_ == "aligned")
return (col & 1) ? 'l' : 'r';
return 'l';
}
void MathSplitInset::write(WriteStream & ws) const
{
if (ws.fragile())
ws << "\\protect";
ws << "\\begin{" << name_ << '}';
MathGridInset::write(ws);
if (ws.fragile())
ws << "\\protect";
ws << "\\end{" << name_ << "}\n";
}