X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_exintinset.h;h=b1e11d8814fd0c9fe85b5f8d2e2104f0ddc20be5;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=c92497a3b920ae129c4f6674cd17c33930995232;hpb=c93e9dcbc59d0b404561dbc7c373716f11fc13f1;p=lyx.git diff --git a/src/mathed/math_exintinset.h b/src/mathed/math_exintinset.h index c92497a3b9..b1e11d8814 100644 --- a/src/mathed/math_exintinset.h +++ b/src/mathed/math_exintinset.h @@ -1,38 +1,58 @@ // -*- C++ -*- +/** + * \file math_exintinset.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_EXINTINSET_H #define MATH_EXINTINSET_H -// /\int_l^u f(x) dxin one block (as opposed to 'f','(','x',')' or 'f','x') -// for interfacing external programs -#include "math_scriptinset.h" +// \int_l^u f(x) dx in one block (as opposed to 'f','(','x',')' or 'f','x') +// or \sum, \prod... for interfacing external programs + +#include "math_nestinset.h" + +#include + -class MathExIntInset : public MathInset { +// cell(0) is stuff before the 'd', cell(1) the stuff after +class MathExIntInset : public MathNestInset { public: /// - MathExIntInset(MathScriptInset const &, MathArray const &, MathArray const &); + explicit MathExIntInset(std::string const & name_); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// - void metrics(MathMetricsInfo const & st) const; + void symbol(std::string const &); /// - void draw(Painter &, int x, int y) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void write(WriteStream & os) const; + void draw(PainterInfo &, int x, int y) const; + /// void normalize(NormalStream &) const; /// - void maplize(MapleStream &) const; + void maxima(MaximaStream &) const; /// - void mathmlize(MathMLStream &) const; -private: + void maple(MapleStream &) const; /// - MathAtom int_; + void mathematica(MathematicaStream &) const; /// - MathScriptInset scripts_; + void mathmlize(MathMLStream &) const; /// - MathArray core_; + void write(WriteStream & os) const; +private: /// - MathArray diff_; + bool hasScripts() const; + + /// + std::string symbol_; }; + #endif