mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 19:59:46 +00:00
fe87869cb7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
34 lines
627 B
C++
34 lines
627 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_FUNCLIMINSET_H
|
|
#define MATH_FUNCLIMINSET_H
|
|
|
|
#include "math_diminset.h"
|
|
|
|
// "normal" symbols that don't take limits and don't grow in displayed
|
|
// formulae
|
|
|
|
class MathFuncLimInset : public MathDimInset {
|
|
public:
|
|
///
|
|
explicit MathFuncLimInset(string const & name);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void metrics(MathMetricsInfo & st) const;
|
|
///
|
|
void draw(MathPainterInfo &, int x, int y) const;
|
|
///
|
|
bool isScriptable() const;
|
|
|
|
private:
|
|
///
|
|
string const name_;
|
|
///
|
|
mutable bool scriptable_;
|
|
};
|
|
#endif
|