X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_symbolinset.h;h=29fcafb4eab681390b53be7a48de4500ec7bad91;hb=701b99ecd70ac472aa53c8b2317af44def4f9670;hp=e327799c54e093e35ab99f5f85e61a3bb96db0c2;hpb=8b7b3a589507e2bed9777f2854ea731c454492e4;p=lyx.git diff --git a/src/mathed/math_symbolinset.h b/src/mathed/math_symbolinset.h index e327799c54..29fcafb4ea 100644 --- a/src/mathed/math_symbolinset.h +++ b/src/mathed/math_symbolinset.h @@ -1,33 +1,79 @@ // -*- C++ -*- +/** + * \file math_symbolinset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + #ifndef MATH_SYMBOLINSET_H #define MATH_SYMBOLINSET_H -#include "math_diminset.h" +#include "math_inset.h" struct latexkeys; -// "normal" symbols that don't take limits and don't grow in displayed -// formulae -class MathSymbolInset : public MathDimInset { +/** "normal" symbols that don't take limits and don't grow in displayed + * formulae. + */ +class MathSymbolInset : public MathInset { public: /// - explicit MathSymbolInset(latexkeys const *); + explicit MathSymbolInset(latexkeys const * l); + /// + explicit MathSymbolInset(char const * name); + /// + explicit MathSymbolInset(std::string const & name); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo &, int x, int y) const; + /// + int width() const { return width_; } + + /// + 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) + std::string name() const; + /// request "external features" + void validate(LaTeXFeatures & features) const; + + /// + void normalize(NormalStream &) const; + /// + void maple(MapleStream &) const; /// - MathInset * clone() const; + void maxima(MaximaStream &) const; /// - void write(std::ostream &, bool fragile) const; + void mathematica(MathematicaStream &) const; /// - void writeNormal(std::ostream &) const; + void mathmlize(MathMLStream &) const; /// - void metrics(MathStyles st) const; + void octave(OctaveStream &) const; /// - void draw(Painter &, int x, int y) const; + void write(WriteStream & os) const; + /// + void infoize2(std::ostream & os) const; private: + virtual std::auto_ptr doClone() const; /// latexkeys const * sym_; - /// cache for the symbol's onscreen string representation - mutable string ssym_; + /// + mutable int h_; + /// cached width + mutable int width_; + /// + mutable bool scriptable_; }; #endif