2001-02-28 11:56:36 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_FUNCINSET_H
|
|
|
|
#define MATH_FUNCINSET_H
|
|
|
|
|
|
|
|
#include "math_inset.h"
|
2001-02-13 19:10:18 +00:00
|
|
|
#include "math_defs.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
/**
|
|
|
|
Functions or LaTeX names for objects that I don't know how to draw.
|
|
|
|
*/
|
2001-02-28 11:56:36 +00:00
|
|
|
class MathFuncInset : public MathedInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
explicit
|
|
|
|
MathFuncInset(string const & nm,
|
|
|
|
short ot = LM_OT_FUNC, short st = LM_ST_TEXT);
|
|
|
|
///
|
|
|
|
MathedInset * Clone();
|
|
|
|
///
|
|
|
|
void draw(Painter &, int, int);
|
|
|
|
///
|
|
|
|
void Write(std::ostream &, bool fragile);
|
|
|
|
///
|
|
|
|
void Metrics();
|
|
|
|
///
|
2001-02-13 16:40:19 +00:00
|
|
|
bool GetLimits() const;
|
2001-02-28 11:56:36 +00:00
|
|
|
private:
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-02-28 11:56:36 +00:00
|
|
|
bool lims_;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|