]> git.lyx.org Git - features.git/commitdiff
add purple markers for \array
authorAndré Pönitz <poenitz@gmx.net>
Fri, 2 May 2003 07:42:08 +0000 (07:42 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Fri, 2 May 2003 07:42:08 +0000 (07:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6917 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_arrayinset.C
src/mathed/math_arrayinset.h

index e035cebee64dd54f83364c559501c5b8efb4bc3a..e130f43d17f3b45bfeb51c575097c70a1a0ac42e 100644 (file)
@@ -67,6 +67,7 @@ void MathArrayInset::metrics(MetricsInfo & mi) const
 {
        ArrayChanger dummy(mi.base);
        MathGridInset::metrics(mi);
+       metricsMarkers2();
 }
 
 
@@ -74,6 +75,7 @@ void MathArrayInset::draw(PainterInfo & pi, int x, int y) const
 {
        ArrayChanger dummy(pi.base);
        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
 {
        os << '[' << name_ << ' ';
index 51cde07e0e4de06fae3c43d194e71a0d1a33b726..3ddc83cfdaba23830097c5eef86b6e7242f13e9b 100644 (file)
@@ -38,9 +38,11 @@ public:
        ///
        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:
        ///