X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_stringinset.h;h=bbbd670348893bdab95da87e4e4d0b26c0f48ac5;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=79774ff7577a615f5fe1d3ad76877c4b9931ee0b;hpb=c93e9dcbc59d0b404561dbc7c373716f11fc13f1;p=lyx.git diff --git a/src/mathed/math_stringinset.h b/src/mathed/math_stringinset.h index 79774ff757..bbbd670348 100644 --- a/src/mathed/math_stringinset.h +++ b/src/mathed/math_stringinset.h @@ -1,50 +1,54 @@ // -*- C++ -*- +/** + * \file math_stringinset.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_STRINGINSET_H #define MATH_STRINGINSET_H #include "math_inset.h" -#ifdef __GNUG__ -#pragma interface -#endif -/** Some cllection of chars with similar properties - \author André Pönitz +/** Some collection of chars with similar properties + * mainly for math-extern */ class MathStringInset : public MathInset { public: /// - MathStringInset(string const & s, MathTextCodes t); + explicit MathStringInset(std::string const & s); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo const & st) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(Painter &, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const; /// - void write(WriteStream & os) const; + std::string str() const { return str_; } /// - void normalize(NormalStream &) const; - /// - int ascent() const; + MathStringInset * asStringInset() { return this; } + /// - int descent() const; + void normalize(NormalStream &) const; /// - int width() const; + void octave(OctaveStream &) const; /// - void octavize(OctaveStream &) const; + void maple(MapleStream &) const; /// - void maplize(MapleStream &) const; + void mathematica(MathematicaStream &) const; /// void mathmlize(MathMLStream &) const; + /// + void write(WriteStream & os) const; private: /// the string - string str_; - /// the font to be used on screen - MathTextCodes code_; - /// - mutable MathMetricsInfo mi_; + std::string str_; }; #endif