mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
fe87869cb7
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.1 KiB
C++
59 lines
1.1 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 & st) const;
|
|
///
|
|
void draw(MathPainterInfo &, int x, int y) const;
|
|
///
|
|
string & name();
|
|
///
|
|
string const & name() const;
|
|
/// identifies UnknownInsets
|
|
MathUnknownInset const * asUnknownInset() const { return this; }
|
|
/// identifies UnknownInsets
|
|
MathUnknownInset * asUnknownInset() { return this; }
|
|
///
|
|
bool match(MathInset * p) const;
|
|
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void maplize(MapleStream &) const;
|
|
///
|
|
void mathmlize(MathMLStream &) const;
|
|
///
|
|
void octavize(OctaveStream &) const;
|
|
///
|
|
void write(WriteStream &) const;
|
|
///
|
|
void finalize();
|
|
///
|
|
bool final() const;
|
|
private:
|
|
///
|
|
string name_;
|
|
/// are we finished creating the name?
|
|
bool final_;
|
|
///
|
|
bool black_;
|
|
};
|
|
#endif
|