X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_stringinset.h;h=bbbd670348893bdab95da87e4e4d0b26c0f48ac5;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=f1aa039d2fa857e3cc81e408a2a766227788f757;hpb=858355fb69e30dbfbe84fb023076b5ac4ad7b0ec;p=lyx.git diff --git a/src/mathed/math_stringinset.h b/src/mathed/math_stringinset.h index f1aa039d2f..bbbd670348 100644 --- a/src/mathed/math_stringinset.h +++ b/src/mathed/math_stringinset.h @@ -1,59 +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(); - /// - MathStringInset(string const & s, MathTextCodes t = LM_TC_TEXTRM); - /// - MathInset * clone() const; + explicit MathStringInset(std::string const & s); /// - void metrics(MathMetricsInfo const & st) const; + virtual std::auto_ptr clone() const; /// - void draw(Painter &, int x, int y) const; - /// - int ascent() const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - int descent() const; + void draw(PainterInfo & pi, int x, int y) const; /// - int width() const; - /// - string str() const { return str_; } + std::string str() const { return str_; } /// MathStringInset * asStringInset() { return this; } - /// request "external features" - void validate(LaTeXFeatures & features) const; /// void normalize(NormalStream &) const; /// - void octavize(OctaveStream &) const; + void octave(OctaveStream &) const; + /// + void maple(MapleStream &) const; /// - void maplize(MapleStream &) const; + void mathematica(MathematicaStream &) const; /// void mathmlize(MathMLStream &) const; /// void write(WriteStream & os) const; -public: +private: /// the string - string str_; - /// the font to be used on screen - MathTextCodes code_; - /// - mutable LyXFont font_; + std::string str_; }; #endif