lyx_mirror/src/mathed/math_xarrowinset.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

38 lines
632 B
C++

// -*- C++ -*-
#ifndef MATH_XARROWINSET_H
#define MATH_XARROWINSET_H
#include "math_nestinset.h"
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
/** Wide arrows like \xrightarrow
\author André Pönitz
*/
class MathXArrowInset : public MathNestInset {
public:
///
explicit MathXArrowInset(string const & name);
///
MathInset * clone() const;
///
void draw(MathPainterInfo &, int x, int y) const;
///
void write(WriteStream & os) const;
///
void metrics(MathMetricsInfo & st) const;
///
void normalize(NormalStream & os) const;
private:
///
bool upper() const;
///
string const name_;
};
#endif