]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
fix #1073
[lyx.git] / src / mathed / math_deliminset.h
index 16ff2f20d362cc9e74ed43b64751a01b324a2675..54ec58cab9bc44d3980bc63417b90bd5a950c806 100644 (file)
@@ -5,18 +5,19 @@
 #include "math_nestinset.h"
 #include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** A delimiter
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
 */
 
 class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(string const &, string const &);
+       MathDelimInset(string const & left, string const & right);
+       ///
+       MathDelimInset(string const & left, string const & right, MathArray const &);
        ///
        MathInset * clone() const;
        ///
@@ -30,20 +31,24 @@ public:
        /// is it |...|?
        bool isAbs() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
 
        ///
        void write(WriteStream & os) const;
        /// write normalized content
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
+       ///
+       void maxima(MaximaStream &) const;
+       ///
+       void mathematica(MathematicaStream &) const;
        ///
        void mathmlize(MathMLStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void octave(OctaveStream &) const;
        ///
        string left_;
        ///
@@ -51,7 +56,5 @@ public:
 private:
        ///
        int dw() const;
-       ///
-       static string latexName(string const & name);
 };
 #endif