]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_deliminset.h
index 89240db8cbfa722315481f3596ef54049152d104..84a3ac14512f335c30d27bacf0c212aac351f103 100644 (file)
@@ -5,34 +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 MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(string const &, string const &);
+       MathDelimInset(string const & left, string const & right);
        ///
-       MathInset * clone() const;
+       MathDelimInset(string const & left, string const & right, MathArray const &);
        ///
-       void draw(Painter &, int x, int y) const;
+       InsetBase * clone() const;
        ///
-       void write(MathWriteInfo & os) const;
+       MathDelimInset * asDelimInset() { return this; }
        ///
-       void metrics(MathMetricsInfo const & st) const;
-private:
+       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;
+
+       ///
+       void write(WriteStream & os) const;
+       /// write normalized content
+       void normalize(NormalStream &) const;
        ///
-       int dw() const;
+       void maple(MapleStream &) const;
+       ///
+       void maxima(MaximaStream &) const;
+       ///
+       void mathematica(MathematicaStream &) const;
+       ///
+       void mathmlize(MathMLStream &) const;
+       ///
+       void octave(OctaveStream &) const;
        ///
        string left_;
        ///
        string right_;
+private:
        ///
-       static string latexName(string const & name);
+       mutable int dw_;
 };
 #endif