]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.h
several small fixes for mathed
[lyx.git] / src / mathed / math_symbolinset.h
index 42a4bc1c93ef7a1f44d8eadb0332c859520ff2a0..ebda7fc20f2d4e9ab8d67aeb4c04f60cbdce1fd8 100644 (file)
@@ -27,13 +27,16 @@ public:
        ///
        explicit MathSymbolInset(char const * name);
        ///
-       explicit MathSymbolInset(string const & name);
+       explicit MathSymbolInset(std::string const & name);
        ///
        virtual std::auto_ptr<InsetBase> clone() const;
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
+       ///
+       int width() const { return width_; }
+
        ///
        bool isRelOp() const;
        /// do we take scripts?
@@ -43,9 +46,7 @@ public:
        /// identifies SymbolInset as such
        MathSymbolInset const * asSymbolInset() const { return this; }
        /// the LaTeX name of the symbol (without the backslash)
-       string name() const;
-       ///
-       bool match(MathAtom const &) const;
+       std::string name() const;
        /// request "external features"
        void validate(LaTeXFeatures & features) const;
 
@@ -71,6 +72,8 @@ private:
        latexkeys const * sym_;
        ///
        mutable int h_;
+       /// cached width
+       mutable int width_;
        ///
        mutable bool scriptable_;
 };