lyx_mirror/src/mathed/math_diffinset.h
André Pönitz f3c27aa1f5 add paranthesis around numerator and denominator when exporting fractions
new inset for derivatives


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3024 a592a061-630c-0410-9148-cb99ea01b6c8
2001-11-13 16:27:06 +00:00

34 lines
604 B
C++

// -*- C++ -*-
#ifndef MATH_DIFFINSET_H
#define MATH_DIFFINSET_H
// d f(x)/dx in one block
// for interfacing external programs
#include "math_nestinset.h"
class MathDiffInset : public MathNestInset {
public:
///
explicit MathDiffInset();
///
MathInset * clone() const;
///
void addDer(MathArray const & der);
///
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;
};
#endif