2001-02-28 11:56:36 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_DOTSINSET_H
|
|
|
|
#define MATH_DOTSINSET_H
|
|
|
|
|
2001-08-03 17:55:10 +00:00
|
|
|
#include "math_diminset.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-28 11:56:36 +00:00
|
|
|
|
2002-07-17 10:25:33 +00:00
|
|
|
class latexkeys;
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/// The different kinds of ellipsis
|
2001-08-03 17:55:10 +00:00
|
|
|
class MathDotsInset : public MathDimInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2002-07-17 10:25:33 +00:00
|
|
|
explicit MathDotsInset(latexkeys const * l);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-07-26 16:14:23 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-08-05 07:09:11 +00:00
|
|
|
void metrics(MathMetricsInfo & mi) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-08-05 07:09:11 +00:00
|
|
|
void draw(MathPainterInfo & pi, int x, int y) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2002-08-05 07:09:11 +00:00
|
|
|
string name() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
protected:
|
2001-08-06 17:20:26 +00:00
|
|
|
/// cache for the thing's heigth
|
|
|
|
mutable int dh_;
|
2001-02-16 09:25:43 +00:00
|
|
|
///
|
2002-07-17 10:25:33 +00:00
|
|
|
latexkeys const * key_;
|
2002-03-21 17:42:56 +00:00
|
|
|
};
|
2001-02-13 13:28:32 +00:00
|
|
|
#endif
|