]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_deliminset.h
introduce namespace lyx::support
[lyx.git] / src / mathed / math_deliminset.h
index 757b36598379df5b56f0165acc72c856be225316..84a3ac14512f335c30d27bacf0c212aac351f103 100644 (file)
@@ -2,32 +2,59 @@
 #ifndef MATH_DELIMINSET_H
 #define MATH_DELIMINSET_H
 
-#include "math_inset.h"
+#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 MathInset {
+
+class MathDelimInset : public MathNestInset {
 public:
        ///
-       MathDelimInset(int, int);
+       MathDelimInset(string const & left, string const & right);
        ///
-       MathInset * Clone() const;
+       MathDelimInset(string const & left, string const & right, MathArray const &);
        ///
-       void draw(Painter &, int, int);
+       InsetBase * clone() const;
        ///
-       void Write(std::ostream &, bool fragile) const;
+       MathDelimInset * asDelimInset() { return this; }
        ///
-       void Metrics(MathStyles st);
-private:
-       int dw() const;
+       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 left_;
+       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:
        ///
-       int right_;
+       mutable int dw_;
 };
 #endif