X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exfuncinset.h;h=222cb482cc8e0ca9efdf30e0f7ef8e3fb297f1f6;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=d7832cd28dbe9d59571ece8a1c79fdfa1feb6a80;hpb=3516a9a2fcaac4aad47039ee244d2c6601803b9f;p=lyx.git diff --git a/src/mathed/math_exfuncinset.h b/src/mathed/math_exfuncinset.h index d7832cd28d..222cb482cc 100644 --- a/src/mathed/math_exfuncinset.h +++ b/src/mathed/math_exfuncinset.h @@ -1,38 +1,54 @@ // -*- C++ -*- +/** + * \file math_exfuncinset.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_EXFUNCINSET_H #define MATH_EXFUNCINSET_H + #include "math_nestinset.h" +#include + + // f(x) in one block (as opposed to 'f','(','x',')' or 'f','x') // for interfacing external programs class MathExFuncInset : public MathNestInset { public: /// - MathExFuncInset(string const & name, MathArray const & arg); + explicit MathExFuncInset(std::string const & name); + /// + MathExFuncInset(std::string const & name, MathArray const & ar); /// - 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; + /// + std::string name() const; /// - void normalize(NormalStream &) const; + void maple(MapleStream &) const; /// - void maplize(MapleStream &) const; + void maxima(MaximaStream &) const; /// - void mathmlize(MathMLStream &) const; + void mathematica(MathematicaStream &) const; /// - void octavize(OctaveStream &) const; + void mathmlize(MathMLStream &) const; /// - void write(WriteStream & os) const; + void octave(OctaveStream &) const; private: /// - string const name_; - /// - mutable MathMetricsInfo mi_; + std::string const name_; }; #endif