]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.h
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_symbolinset.h
index b83f5b5f9b6b88bba9576b5af1d0a92a3695d983..0de6781ed307709d5d4c8a8af5e1312ae32b2aae 100644 (file)
@@ -16,6 +16,8 @@ public:
        ///
        explicit MathSymbolInset(char const *);
        ///
+       explicit MathSymbolInset(string const &);
+       ///
        MathInset * clone() const;
        ///
        void metrics(MathMetricsInfo const & st) const;
@@ -23,13 +25,13 @@ public:
        void draw(Painter &, int x, int y) const;
        ///
        bool isRelOp() const;
-       ///
+       /// do we take scripts?
        bool isScriptable() const;
-       /// identifies things that can get \limits or \nolimits
+       /// do we take \limits or \nolimits?
        bool takesLimits() const;
-       ///
-       MathSymbolInset * asSymbolInset() { return this; }
-       ///
+       /// identifies SymbolInset as such
+       MathSymbolInset const * asSymbolInset() const { return this; }
+       /// the LaTeX name of the symbol (without the backslash)
        string name() const;
        ///
        bool match(MathInset *) const;