2001-11-08 12:06:56 +00:00
|
|
|
// -*- C++ -*-
|
2001-11-09 14:23:44 +00:00
|
|
|
#ifndef MATH_LIMITOPINSET_H
|
|
|
|
#define MATH_LIMITOPINSET_H
|
2001-11-08 12:06:56 +00:00
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
// /\sum_l^u f(x) in one block
|
2001-11-08 12:06:56 +00:00
|
|
|
// for interfacing external programs
|
|
|
|
|
|
|
|
#include "math_scriptinset.h"
|
|
|
|
|
2001-11-09 14:23:44 +00:00
|
|
|
class MathLimitOpInset : public MathInset {
|
2001-11-08 12:06:56 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-11-09 14:23:44 +00:00
|
|
|
MathLimitOpInset(MathScriptInset const &, MathArray const &);
|
2001-11-08 12:06:56 +00:00
|
|
|
///
|
|
|
|
MathInset * clone() const;
|
|
|
|
///
|
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
|
|
|
///
|
|
|
|
void draw(Painter &, int x, int y) const;
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void write(WriteStream & os) const;
|
2001-11-08 12:06:56 +00:00
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
void normalize(NormalStream &) const;
|
2001-11-08 12:06:56 +00:00
|
|
|
///
|
|
|
|
void maplize(MapleStream &) const;
|
|
|
|
///
|
|
|
|
void mathmlize(MathMLStream &) const;
|
|
|
|
private:
|
|
|
|
///
|
|
|
|
MathAtom int_;
|
|
|
|
///
|
|
|
|
MathScriptInset scripts_;
|
|
|
|
///
|
|
|
|
MathArray core_;
|
|
|
|
///
|
|
|
|
MathArray diff_;
|
|
|
|
};
|
|
|
|
#endif
|