2001-02-16 09:25:43 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-13 13:28:32 +00:00
|
|
|
#ifndef MATH_FRACINSET_H
|
|
|
|
#define MATH_FRACINSET_H
|
|
|
|
|
2001-08-08 17:26:30 +00:00
|
|
|
#include "math_fracbase.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-08-08 17:26:30 +00:00
|
|
|
/** Fraction like objects (frac, binom)
|
2001-02-16 09:25:43 +00:00
|
|
|
\author Alejandro Aguilar Sierra
|
|
|
|
*/
|
2001-08-08 17:26:30 +00:00
|
|
|
class MathFracInset : public MathFracbaseInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-08-17 17:50:00 +00:00
|
|
|
explicit MathFracInset(bool atop = false);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void write(MathWriteInfo & os) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void writeNormal(std::ostream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
2001-04-25 15:43:57 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-08-17 17:50:00 +00:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
const bool atop_;
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
2001-02-16 09:25:43 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
#endif
|