mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
add purple markers for \array
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6917 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cd50f3ae85
commit
42320e7be3
@ -67,6 +67,7 @@ void MathArrayInset::metrics(MetricsInfo & mi) const
|
|||||||
{
|
{
|
||||||
ArrayChanger dummy(mi.base);
|
ArrayChanger dummy(mi.base);
|
||||||
MathGridInset::metrics(mi);
|
MathGridInset::metrics(mi);
|
||||||
|
metricsMarkers2();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -74,6 +75,7 @@ void MathArrayInset::draw(PainterInfo & pi, int x, int y) const
|
|||||||
{
|
{
|
||||||
ArrayChanger dummy(pi.base);
|
ArrayChanger dummy(pi.base);
|
||||||
MathGridInset::draw(pi, x, y);
|
MathGridInset::draw(pi, x, y);
|
||||||
|
drawMarkers2(pi, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -97,6 +99,12 @@ void MathArrayInset::write(WriteStream & os) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathArrayInset::infoize(std::ostream & os) const
|
||||||
|
{
|
||||||
|
os << "Array";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void MathArrayInset::normalize(NormalStream & os) const
|
void MathArrayInset::normalize(NormalStream & os) const
|
||||||
{
|
{
|
||||||
os << '[' << name_ << ' ';
|
os << '[' << name_ << ' ';
|
||||||
|
@ -38,9 +38,11 @@ public:
|
|||||||
///
|
///
|
||||||
void write(WriteStream & os) const;
|
void write(WriteStream & os) const;
|
||||||
///
|
///
|
||||||
void normalize(NormalStream &) const;
|
void infoize(std::ostream & os) const;
|
||||||
///
|
///
|
||||||
void maple(MapleStream &) const;
|
void normalize(NormalStream & os) const;
|
||||||
|
///
|
||||||
|
void maple(MapleStream & os) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user