2001-02-16 09:25:43 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_fracinset.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
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
|
|
|
|
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/// Fraction like objects (frac, binom)
|
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
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2001-04-25 15:43:57 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo &, int x, int y) const;
|
2001-11-13 18:33:48 +00:00
|
|
|
|
///
|
2003-05-28 13:22:36 +00:00
|
|
|
|
void metricsT(TextMetricsInfo const & mi, Dimension & dim) const;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
///
|
2002-03-21 06:57:13 +00:00
|
|
|
|
void drawT(TextPainter &, int x, int y) const;
|
2002-08-08 16:08:11 +00:00
|
|
|
|
/// identifies FracInsets
|
2001-11-13 18:33:48 +00:00
|
|
|
|
MathFracInset * asFracInset();
|
2002-08-08 16:08:11 +00:00
|
|
|
|
/// identifies FracInsets
|
|
|
|
|
MathFracInset const * asFracInset() const;
|
2002-08-01 15:53:46 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string name() const;
|
2001-11-09 08:35:57 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2001-11-07 17:30:26 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void mathematica(MathematicaStream &) const;
|
2002-07-01 11:17:14 +00:00
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void octave(OctaveStream &) const;
|
2002-04-25 15:37:10 +00:00
|
|
|
|
///
|
2001-11-07 17:30:26 +00:00
|
|
|
|
void mathmlize(MathMLStream &) const;
|
2001-08-17 17:50:00 +00:00
|
|
|
|
public:
|
2004-11-23 23:04:52 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2001-08-17 17:50:00 +00:00
|
|
|
|
///
|
2004-11-23 23:04:52 +00:00
|
|
|
|
bool const 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
|