mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
32 lines
493 B
C
32 lines
493 B
C
|
// -*- C++ -*-
|
||
|
#ifndef MATH_XYARROWINSET_H
|
||
|
#define MATH_ARROWINSET_H
|
||
|
|
||
|
#include "math_nestinset.h"
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma interface
|
||
|
#endif
|
||
|
|
||
|
|
||
|
class MathXYArrowInset : public MathNestInset {
|
||
|
public:
|
||
|
///
|
||
|
MathXYArrowInset();
|
||
|
///
|
||
|
MathInset * clone() const;
|
||
|
///
|
||
|
void metrics(MathMetricsInfo const & st) const;
|
||
|
///
|
||
|
MathXYArrowInset * asXYArrowInset() { return this; }
|
||
|
///
|
||
|
void normalize();
|
||
|
|
||
|
///
|
||
|
void write(WriteStream & os) const;
|
||
|
///
|
||
|
void normalize(NormalStream &) const;
|
||
|
};
|
||
|
|
||
|
#endif
|