lyx_mirror/src/mathed/math_xarrowinset.h
André Pönitz ef77daf1bc forgotten files
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3485 a592a061-630c-0410-9148-cb99ea01b6c8
2002-02-05 13:27:34 +00:00

38 lines
630 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(Painter &, int x, int y) const;
///
void write(WriteStream & os) const;
///
void metrics(MathMetricsInfo const & st) const;
///
void normalize(NormalStream & os) const;
private:
///
bool upper() const;
///
string const name_;
};
#endif