]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.h
make naming a bit saner...
[lyx.git] / src / mathed / math_symbolinset.h
index 4f7db6d9557e1efca55ba1cdf8fc53d6f0c721af..7aa6ac1a13582c71f8cc195d1a52d697f63d5d9b 100644 (file)
@@ -2,6 +2,7 @@
 #ifndef MATH_SYMBOLINSET_H
 #define MATH_SYMBOLINSET_H
 
+
 #include "math_diminset.h"
 
 struct latexkeys;
@@ -16,43 +17,51 @@ public:
        ///
        explicit MathSymbolInset(char const *);
        ///
+       explicit MathSymbolInset(string const &);
+       ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, 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(MathAtom const &) const;
+       /// request "external features"
+       void validate(LaTeXFeatures & features) const;
 
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void maxima(MaximaStream &) const;
        ///
-       void octavize(OctaveStream &) const;
+       void mathematica(MathematicaStream &) const;
        ///
-       void write(WriteStream & os) const;
+       void mathmlize(MathMLStream &) const;
        ///
-       string name() const;
-private:
+       void octave(OctaveStream &) const;
        ///
-       MathTextCodes code() const;
+       void write(WriteStream & os) const;
        ///
-       MathTextCodes code2() const;
+       void infoize2(std::ostream & os) const;
 
+private:
        ///
        latexkeys const * sym_;
        ///
        mutable int h_;
        ///
-       mutable MathMetricsInfo mi_;
+       mutable bool scriptable_;
 };
 #endif