]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_symbolinset.h
oh well
[lyx.git] / src / mathed / math_symbolinset.h
index a42f01ba59d21f933c9a7b8c2074d427eef8fe41..018fc63b8540229880905febbcca3d544cb48ef4 100644 (file)
@@ -14,21 +14,44 @@ public:
        ///
        explicit MathSymbolInset(latexkeys const *);
        ///
-       MathInset * clone() const;
+       explicit MathSymbolInset(char const *);
        ///
-       void write(MathWriteInfo & os) const;
+       explicit MathSymbolInset(string const &);
        ///
-       void writeNormal(std::ostream &) const;
+       MathInset * clone() const;
        ///
        void metrics(MathMetricsInfo const & st) const;
        ///
        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;
+       ///
+       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;
+       ///
+       void maplize(MapleStream &) const;
+       ///
+       void mathmlize(MathMLStream &) const;
+       ///
+       void octavize(OctaveStream &) const;
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void infoize(std::ostream & os) const;
 
 private:
        ///
@@ -40,5 +63,7 @@ private:
        latexkeys const * sym_;
        ///
        mutable int h_;
+       ///
+       mutable MathMetricsInfo mi_;
 };
 #endif