]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.h
oh well
[lyx.git] / src / mathed / math_symbolinset.h
index 4f7db6d9557e1efca55ba1cdf8fc53d6f0c721af..018fc63b8540229880905febbcca3d544cb48ef4 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,12 +25,20 @@ 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;
+       /// identifies SymbolInset as such
+       MathSymbolInset const * asSymbolInset() const { return this; }
+       /// the LaTeX name of the symbol (without the backslash)
+       string name() const;
        ///
-       MathSymbolInset * asSymbolInset() { return this; }
+       bool match(MathInset *) const;
+       /// request "external features"
+       void validate(LaTeXFeatures & features) const;
+       /// identifies complicated things that need braces if used as arg
+       bool needsBraces() const { return false; }
 
        ///
        void normalize(NormalStream &) const;
@@ -41,7 +51,8 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       string name() const;
+       void infoize(std::ostream & os) const;
+
 private:
        ///
        MathTextCodes code() const;