lyx_mirror/src/mathed/math_xarrowinset.h

38 lines
632 B
C
Raw Normal View History

// -*- 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<EFBFBD> P<EFBFBD>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