2002-02-01 10:33:06 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_undersetinset.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2002-09-11 08:26:02 +00:00
|
|
|
|
*
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-11 08:26:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2002-02-01 10:33:06 +00:00
|
|
|
|
#ifndef MATH_UNDERSETINSET_H
|
|
|
|
|
#define MATH_UNDERSETINSET_H
|
|
|
|
|
|
|
|
|
|
|
2002-09-11 08:26:02 +00:00
|
|
|
|
#include "math_fracbase.h"
|
|
|
|
|
|
|
|
|
|
/// Inset for underset
|
2002-02-01 10:33:06 +00:00
|
|
|
|
class MathUndersetInset : public MathFracbaseInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2003-08-22 16:14:26 +00:00
|
|
|
|
std::auto_ptr<InsetBase> clone() const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool idxFirst(LCursor & cur) const;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool idxLast(LCursor & cur) const;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool idxUpDown(LCursor & cur, bool up) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
void write(WriteStream & ws) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
void normalize(NormalStream & ns) const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|