lyx_mirror/src/mathed/InsetMathDots.h

45 lines
830 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file InsetMathDots.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_DOTSINSET_H
#define MATH_DOTSINSET_H
#include "InsetMathDim.h"
namespace lyx {
class latexkeys;
/// The different kinds of ellipsis
class InsetMathDots : public InsetMathDim {
public:
///
explicit InsetMathDots(latexkeys const * l);
///
bool metrics(MetricsInfo & mi, Dimension & dim) const;
///
void draw(PainterInfo & pi, int x, int y) const;
///
docstring name() const;
protected:
/// cache for the thing's height
mutable int dh_;
///
latexkeys const * key_;
private:
virtual std::auto_ptr<InsetBase> doClone() const;
};
} // namespace lyx
#endif