2002-06-24 15:37:14 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
#ifndef MATH_FBOXINSET_H
|
|
|
|
|
#define MATH_FBOXINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
2003-03-21 14:20:48 +00:00
|
|
|
|
#include "metricsinfo.h"
|
2002-06-24 15:37:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Extra nesting
|
2002-09-11 08:26:02 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-06-24 15:37:14 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2002-07-30 16:04:41 +00:00
|
|
|
|
class latexkeys;
|
|
|
|
|
|
2002-06-24 15:37:14 +00:00
|
|
|
|
class MathFboxInset : public MathNestInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
2002-07-30 16:04:41 +00:00
|
|
|
|
MathFboxInset(latexkeys const * key);
|
2002-06-24 15:37:14 +00:00
|
|
|
|
///
|
|
|
|
|
MathInset * clone() const;
|
|
|
|
|
///
|
2002-07-30 16:04:41 +00:00
|
|
|
|
mode_type currentMode() const;
|
2002-06-24 15:37:14 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void metrics(MetricsInfo & mi) const;
|
2002-06-24 15:37:14 +00:00
|
|
|
|
///
|
2003-03-21 14:20:48 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2002-06-24 15:37:14 +00:00
|
|
|
|
///
|
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
/// write normalized content
|
|
|
|
|
void normalize(NormalStream & ns) const;
|
2002-07-30 16:04:41 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
latexkeys const * key_;
|
2002-06-24 15:37:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|