lyx_mirror/src/mathed/InsetMathUnderset.h

48 lines
930 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file InsetMathUnderset.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
*
* Full author contact details are available in file CREDITS.
*/
#ifndef MATH_UNDERSETINSET_H
#define MATH_UNDERSETINSET_H
#include "InsetMathFracBase.h"
namespace lyx {
/// Inset for underset
class InsetMathUnderset : public InsetMathFracBase {
public:
///
bool metrics(MetricsInfo & mi, Dimension & dim) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
bool idxFirst(LCursor & cur) const;
///
bool idxLast(LCursor & cur) const;
///
bool idxUpDown(LCursor & cur, bool up) const;
///
void write(WriteStream & ws) const;
///
void normalize(NormalStream & ns) const;
///
void validate(LaTeXFeatures & features) const;
private:
virtual std::auto_ptr<InsetBase> doClone() const;
};
} // namespace lyx
#endif