]> 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 88a3414bac0f2188cd6675adc7ee9236ff927768..0de6781ed307709d5d4c8a8af5e1312ae32b2aae 100644 (file)
@@ -6,30 +6,58 @@
 
 struct latexkeys;
 
-/// big operators
+// "normal" symbols that don't take limits and don't grow in displayed
+// formulae
+
 class MathSymbolInset : public MathDimInset {
 public:
        ///
        explicit MathSymbolInset(latexkeys const *);
        ///
+       explicit MathSymbolInset(char const *);
+       ///
+       explicit MathSymbolInset(string const &);
+       ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo const & st) const;
        ///
-       void writeNormal(std::ostream &) const;
+       void draw(Painter &, int x, int y) const;
+       ///
+       bool isRelOp() const;
+       /// do we take scripts?
+       bool isScriptable() const;
+       /// 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;
+
        ///
-       void metrics(MathStyles st);
+       void normalize(NormalStream &) const;
        ///
-       void draw(Painter &, int, int);
+       void maplize(MapleStream &) const;
        ///
-       bool isScriptable() const { return true; }
+       void mathmlize(MathMLStream &) const;
+       ///
+       void octavize(OctaveStream &) const;
+       ///
+       void write(WriteStream & os) const;
 
 private:
+       ///
+       MathTextCodes code() const;
+       ///
+       MathTextCodes code2() const;
+
        ///
        latexkeys const * sym_;
        ///
-       string ssym_;
+       mutable int h_;
        ///
-       MathTextCodes code_;
+       mutable MathMetricsInfo mi_;
 };
 #endif