lyx_mirror/src/mathed/math_unknowninset.h
André Pönitz fe87869cb7 fonts as insets
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4289 a592a061-630c-0410-9148-cb99ea01b6c8
2002-05-30 07:09:54 +00:00

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