mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
7cccd80619
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2977 a592a061-630c-0410-9148-cb99ea01b6c8
53 lines
981 B
C++
53 lines
981 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_SYMBOLINSET_H
|
|
#define MATH_SYMBOLINSET_H
|
|
|
|
#include "math_diminset.h"
|
|
|
|
struct latexkeys;
|
|
|
|
// "normal" symbols that don't take limits and don't grow in displayed
|
|
// formulae
|
|
|
|
class MathSymbolInset : public MathDimInset {
|
|
public:
|
|
///
|
|
explicit MathSymbolInset(latexkeys const *);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void write(MathWriteInfo & os) const;
|
|
///
|
|
void writeNormal(std::ostream &) const;
|
|
///
|
|
void metrics(MathMetricsInfo const & st) const;
|
|
///
|
|
void draw(Painter &, int x, int y) const;
|
|
///
|
|
bool isRelOp() const;
|
|
///
|
|
bool isScriptable() const;
|
|
/// identifies things that can get \limits or \nolimits
|
|
bool takesLimits() const;
|
|
|
|
///
|
|
void maplize(MapleStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void octavize(OctaveStream &) const;
|
|
private:
|
|
///
|
|
MathTextCodes code() const;
|
|
///
|
|
MathTextCodes code2() const;
|
|
|
|
///
|
|
latexkeys const * sym_;
|
|
///
|
|
mutable int h_;
|
|
///
|
|
mutable MathMetricsInfo mi_;
|
|
};
|
|
#endif
|