]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathBig.h
"fix" bug #3332 (plain text export depends on the menu language)
[lyx.git] / src / mathed / InsetMathBig.h
index 2c3c9ca7d6694634fd768515c6e02f8074edb955..80a2199f85aabe7a305642fa07234b9715d09d3c 100644 (file)
 #ifndef MATH_BIGINSET_H
 #define MATH_BIGINSET_H
 
-#include "InsetMathDim.h"
+#include "InsetMath.h"
 
 #include <string>
 
+
+namespace lyx {
+
 /// Inset for \\bigl & Co.
-class InsetMathBig : public InsetMathDim {
+class InsetMathBig : public InsetMath {
 public:
        ///
-       InsetMathBig(std::string const & name, std::string const & delim);
+       InsetMathBig(docstring const & name, docstring const & delim);
        ///
-       std::string name() const;
+       docstring name() const;
        ///
-       void metrics(MetricsInfo & mi, Dimension & dim) const;
+       bool metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -32,21 +35,24 @@ public:
        ///
        void normalize(NormalStream & os) const;
        ///
-       void infoize2(std::ostream & os) const;
+       void infoize2(odocstream & os) const;
        ///
-       static bool isBigInsetDelim(std::string const &);
+       static bool isBigInsetDelim(docstring const &);
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual std::auto_ptr<Inset> doClone() const;
        ///
        size_type size() const;
        ///
        double increase() const;
 
        /// \\bigl or what?
-       std::string const name_;
+       docstring const name_;
        /// ( or [ or \\Vert...
-       std::string const delim_;
+       docstring const delim_;
 };
 
+
+} // namespace lyx
+
 #endif