lyx_mirror/src/mathed/math_xarrowinset.h

37 lines
670 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef MATH_XARROWINSET_H
#define MATH_XARROWINSET_H
#include "math_fracbase.h"
#include "LString.h"
/** Wide arrows like \xrightarrow
* \author Andr<EFBFBD> P<EFBFBD>nitz
*
* Full author contact details are available in file CREDITS
*/
class MathXArrowInset : public MathFracbaseInset {
public:
///
explicit MathXArrowInset(string const & name);
///
InsetBase * clone() const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
void write(WriteStream & os) const;
///
void metrics(MetricsInfo & mi, Dimension & dim) const;
///
void normalize(NormalStream & os) const;
private:
///
bool upper() const;
///
string const name_;
};
#endif