X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exfuncinset.h;h=222cb482cc8e0ca9efdf30e0f7ef8e3fb297f1f6;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=7ff103b01d89bd29430b493b7cbe6f8c17195ff4;hpb=7cccd80619f757b705ea14020b1fd00043607224;p=lyx.git diff --git a/src/mathed/math_exfuncinset.h b/src/mathed/math_exfuncinset.h index 7ff103b01d..222cb482cc 100644 --- a/src/mathed/math_exfuncinset.h +++ b/src/mathed/math_exfuncinset.h @@ -1,33 +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: /// - explicit MathExFuncInset(string const & name); + explicit MathExFuncInset(std::string const & name); + /// + MathExFuncInset(std::string const & name, MathArray const & ar); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void write(MathWriteInfo & os) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void writeNormal(std::ostream &) const; + void draw(PainterInfo & pi, int x, int y) const; /// - void metrics(MathMetricsInfo const & st) const; + std::string name() const; + + /// + void maple(MapleStream &) const; + /// + void maxima(MaximaStream &) const; /// - void draw(Painter &, int x, int y) const; + void mathematica(MathematicaStream &) const; /// - void octavize(OctaveStream &) const; + void mathmlize(MathMLStream &) const; + /// + void octave(OctaveStream &) const; private: /// - string const name_; - /// - mutable MathMetricsInfo mi_; + std::string const name_; }; #endif