2002-02-14 14:52:23 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_substackinset.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.
|
|
|
|
|
*/
|
|
|
|
|
|
2002-02-14 14:52:23 +00:00
|
|
|
|
#ifndef MATH_SUBSTACK_H
|
|
|
|
|
#define MATH_SUBSTACK_H
|
|
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
|
|
|
2003-05-14 16:29:25 +00:00
|
|
|
|
/// support for AMS's \\substack
|
2002-02-14 14:52:23 +00:00
|
|
|
|
|
|
|
|
|
class MathSubstackInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2002-02-14 14:52:23 +00:00
|
|
|
|
///
|
|
|
|
|
MathSubstackInset();
|
|
|
|
|
///
|
2003-07-25 17:11:25 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
2002-02-14 14:52:23 +00:00
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
2002-02-14 14:52:23 +00:00
|
|
|
|
///
|
2003-05-14 16:29:25 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
///
|
2002-02-14 14:52:23 +00:00
|
|
|
|
MathSubstackInset const * asSubstackInset() const { return this; }
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void normalize();
|
|
|
|
|
///
|
2003-05-14 16:29:25 +00:00
|
|
|
|
void infoize(std::ostream & os) const;
|
|
|
|
|
///
|
2002-02-14 14:52:23 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
|
|
|
|
///
|
|
|
|
|
void normalize(NormalStream &) const;
|
|
|
|
|
///
|
2003-02-14 14:30:09 +00:00
|
|
|
|
void maple(MapleStream &) const;
|
2002-02-14 14:52:23 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|