]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathDelim.h
Rm dup "Float" in "Insert>Float>Figure Wrap Float"
[features.git] / src / mathed / InsetMathDelim.h
index 894eccaff853616ef9395b4049712eedfafa3290..cad8da49de71dd9a084b32b827ba487e9ee4a1f7 100644 (file)
@@ -5,7 +5,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Alejandro Aguilar Sierra
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #include "InsetMathNest.h"
 
-#include <string>
 
+namespace lyx {
 
-/// A delimiter
+/// A delimiter like '{' or '(' or '<'
 class InsetMathDelim : public InsetMathNest {
 public:
        ///
-       InsetMathDelim(std::string const & left, std::string const & right);
+       InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right);
        ///
-       InsetMathDelim(std::string const & left, std::string const & right, MathArray const &);
+       InsetMathDelim(Buffer * buf, docstring const & left, docstring const & right,
+               MathData const &);
        ///
-       InsetMathDelim * asDelimInset() { return this; }
+       InsetMathDelim * asDelimInset() override { return this; }
        ///
-       InsetMathDelim const * asDelimInset() const { return this; }
+       InsetMathDelim const * asDelimInset() const override { return this; }
+       ///
+       MathClass mathClass() const override { return MC_INNER; }
        /// is it (...)?
        bool isParenthesis() const;
        /// is it [...]?
@@ -36,33 +39,42 @@ public:
        /// is it |...|?
        bool isAbs() const;
        ///
-       mode_type currentMode() const { return MATH_MODE; }
+       mode_type currentMode() const override { return MATH_MODE; }
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       void metrics(MetricsInfo & mi, Dimension & dim) const override;
        ///
-       void draw(PainterInfo &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const override;
 
        ///
-       void write(WriteStream & os) const;
+       void validate(LaTeXFeatures & features) const override;
+       ///
+       void write(TeXMathStream & os) const override;
        /// write normalized content
-       void normalize(NormalStream &) const;
+       void normalize(NormalStream &) const override;
+       ///
+       void maple(MapleStream &) const override;
        ///
-       void maple(MapleStream &) const;
+       void maxima(MaximaStream &) const override;
        ///
-       void maxima(MaximaStream &) const;
+       void mathematica(MathematicaStream &) const override;
        ///
-       void mathematica(MathematicaStream &) const;
+       void mathmlize(MathMLStream &) const override;
        ///
-       void mathmlize(MathMLStream &) const;
+       void htmlize(HtmlStream &) const override;
        ///
-       void octave(OctaveStream &) const;
+       void octave(OctaveStream &) const override;
        ///
-       std::string left_;
+       InsetCode lyxCode() const override { return MATH_DELIM_CODE; }
        ///
-       std::string right_;
+       docstring left_;
+       ///
+       docstring right_;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       Inset * clone() const override;
        ///
        mutable int dw_;
 };
+
+} // namespace lyx
+
 #endif