lyx_mirror/src/mathed/math_notinset.h
André Pönitz 858355fb69 - reduce sizeof(MathCharInset) by 20 by better font caching
(lots of subsequent changes)
- ascii art drawing for \frac and \sqrt


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3780 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-19 16:55:58 +00:00

28 lines
447 B
C++

// -*- C++ -*-
#ifndef MATH_NOTINSET_H
#define MATH_NOTINSET_H
#include "math_diminset.h"
// \\not
class MathNotInset : public MathDimInset {
public:
///
MathNotInset();
///
MathInset * clone() const;
///
void write(WriteStream & os) const;
///
void normalize(NormalStream & ns) const;
///
void metrics(MathMetricsInfo const & mi) const;
///
void draw(Painter &, int x, int y) const;
private:
///
mutable LyXFont font_;
};
#endif