]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_deliminset.h
index e9a7a01b08ba6226ae95d4a012ad6eb1e0f4e5b2..84a3ac14512f335c30d27bacf0c212aac351f103 100644 (file)
@@ -5,41 +5,56 @@
 #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 latexkeys;
-
 class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(latexkeys const *, latexkeys const *);
-
-#warning Remove this ass soon the Math panel patch is applied
+       MathDelimInset(string const & left, string const & right);
+       ///
+       MathDelimInset(string const & left, string const & right, MathArray const &);
+       ///
+       InsetBase * clone() const;
+       ///
+       MathDelimInset * asDelimInset() { return this; }
        ///
-       MathDelimInset(int, int);
+       MathDelimInset const * asDelimInset() const { return this; }
+       /// is it (...)?
+       bool isParanthesis() const;
+       /// is it [...]?
+       bool isBrackets() const;
+       /// is it |...|?
+       bool isAbs() const;
+       ///
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       ///
+       void draw(PainterInfo &, int x, int y) const;
 
        ///
-       MathInset * clone() const;
+       void write(WriteStream & os) const;
+       /// write normalized content
+       void normalize(NormalStream &) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void maple(MapleStream &) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void maxima(MaximaStream &) const;
        ///
-       void metrics(MathStyles st) const;
-private:
+       void mathematica(MathematicaStream &) const;
        ///
-       static string latexName(latexkeys const *);
+       void mathmlize(MathMLStream &) const;
        ///
-       int dw() const;
+       void octave(OctaveStream &) const;
        ///
-       latexkeys const * left_;
+       string left_;
+       ///
+       string right_;
+private:
        ///
-       latexkeys const * right_;
+       mutable int dw_;
 };
 #endif