2002-02-01 10:33:06 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file InsetMathUnderset.h
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "InsetMathFracBase.h"
|
2002-09-11 08:26:02 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2002-09-11 08:26:02 +00:00
|
|
|
|
/// Inset for underset
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathUnderset : public InsetMathFracBase {
|
2002-02-01 10:33:06 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool 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
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxFirst(Cursor & cur) const;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxLast(Cursor & cur) const;
|
2003-08-22 16:14:26 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool idxUpDown(Cursor & 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;
|
2004-11-07 10:13:59 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
private:
|
2007-04-29 13:39:47 +00:00
|
|
|
|
virtual std::auto_ptr<Inset> doClone() const;
|
2002-02-01 10:33:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|
2002-02-01 10:33:06 +00:00
|
|
|
|
#endif
|