mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
5bef65162c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5496 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
#ifndef MATH_UNKNOWNINSET_H
|
|
#define MATH_UNKNOWNINSET_H
|
|
|
|
#include "math_diminset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
/**
|
|
Unknowntions or LaTeX names for objects that we really don't know
|
|
*/
|
|
class MathUnknownInset : public MathDimInset {
|
|
public:
|
|
///
|
|
explicit MathUnknownInset(string const & name,
|
|
bool final = true, bool black = false);
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void metrics(MathMetricsInfo & mi) const;
|
|
///
|
|
void draw(MathPainterInfo & pi, int x, int y) const;
|
|
///
|
|
void setName(string const & name);
|
|
///
|
|
string name() const;
|
|
/// identifies UnknownInsets
|
|
MathUnknownInset const * asUnknownInset() const { return this; }
|
|
/// identifies UnknownInsets
|
|
MathUnknownInset * asUnknownInset() { return this; }
|
|
///
|
|
bool match(MathAtom const & at) const;
|
|
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void maplize(MapleStream &) const;
|
|
///
|
|
void mathematicize(MathematicaStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void octavize(OctaveStream &) const;
|
|
///
|
|
void finalize();
|
|
///
|
|
bool final() const;
|
|
private:
|
|
///
|
|
string name_;
|
|
/// are we finished creating the name?
|
|
bool final_;
|
|
///
|
|
bool black_;
|
|
};
|
|
#endif
|