mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
4ba8a4d6f6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7356 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
936 B
C++
46 lines
936 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_EXINTINSET_H
|
|
#define MATH_EXINTINSET_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"
|
|
|
|
// cell(0) is stuff before the 'd', cell(1) the stuff after
|
|
class MathExIntInset : public MathNestInset {
|
|
public:
|
|
///
|
|
explicit MathExIntInset(string const & name_);
|
|
///
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
void symbol(string const &);
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo &, int x, int y) const;
|
|
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void maxima(MaximaStream &) const;
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void mathematica(MathematicaStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
private:
|
|
///
|
|
bool hasScripts() const;
|
|
|
|
///
|
|
string symbol_;
|
|
};
|
|
|
|
#endif
|