]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
small up/down tweaking
[lyx.git] / src / mathed / math_deliminset.h
index 16ff2f20d362cc9e74ed43b64751a01b324a2675..786c48529c116c3c93d29cd12d14528495dd258f 100644 (file)
 #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,9 +34,9 @@ public:
        /// is it |...|?
        bool isAbs() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, int x, int y) const;
 
        ///
        void write(WriteStream & os) const;
@@ -41,6 +45,10 @@ public:
        ///
        void maplize(MapleStream &) const;
        ///
+       void maximize(MaximaStream &) const;
+       ///
+       void mathematicize(MathematicaStream &) const;
+       ///
        void mathmlize(MathMLStream &) const;
        ///
        void octavize(OctaveStream &) const;
@@ -51,7 +59,5 @@ public:
 private:
        ///
        int dw() const;
-       ///
-       static string latexName(string const & name);
 };
 #endif