X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBig.h;h=80a2199f85aabe7a305642fa07234b9715d09d3c;hb=a746aa52146257c0e7a2d60123f63dccad5b2751;hp=6ffa83fd18c0256d8c55f807963312403f3d63da;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathBig.h b/src/mathed/InsetMathBig.h index 6ffa83fd18..80a2199f85 100644 --- a/src/mathed/InsetMathBig.h +++ b/src/mathed/InsetMathBig.h @@ -12,7 +12,7 @@ #ifndef MATH_BIGINSET_H #define MATH_BIGINSET_H -#include "InsetMathDim.h" +#include "InsetMath.h" #include @@ -20,14 +20,14 @@ 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; /// @@ -35,21 +35,21 @@ 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 doClone() const; + virtual std::auto_ptr 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_; };