lyx_mirror/src/mathed/math_exintinset.h
André Pönitz a31e65aa9f math-extern: some support for things like d/dx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3031 a592a061-630c-0410-9148-cb99ea01b6c8
2001-11-15 14:14:37 +00:00

41 lines
813 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_);
///
MathInset * clone() const;
///
void symbol(string const &);
///
void metrics(MathMetricsInfo const & st) const;
///
void draw(Painter &, int x, int y) const;
///
void normalize(NormalStream &) const;
///
void maplize(MapleStream &) const;
///
void mathmlize(MathMLStream &) const;
///
void write(WriteStream & os) const;
private:
///
bool hasScripts() const;
///
string symbol_;
};
#endif