mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
40 lines
819 B
C
40 lines
819 B
C
|
// -*- C++ -*-
|
|||
|
/**
|
|||
|
* \file math_boxedinset.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.
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef MATH_BOXEDINSET_H
|
|||
|
#define MATH_BOXEDINSET_H
|
|||
|
|
|||
|
#include "math_nestinset.h"
|
|||
|
|
|||
|
|
|||
|
/// Non-AMS-style frame
|
|||
|
class MathBoxedInset : public MathNestInset {
|
|||
|
public:
|
|||
|
///
|
|||
|
MathBoxedInset();
|
|||
|
///
|
|||
|
std::auto_ptr<InsetBase> clone() const;
|
|||
|
///
|
|||
|
void validate(LaTeXFeatures & features) const;
|
|||
|
///
|
|||
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|||
|
///
|
|||
|
void draw(PainterInfo & pi, int x, int y) const;
|
|||
|
///
|
|||
|
void write(WriteStream & os) const;
|
|||
|
/// write normalized content
|
|||
|
void normalize(NormalStream & ns) const;
|
|||
|
///
|
|||
|
void infoize(std::ostream & os) const;
|
|||
|
};
|
|||
|
|
|||
|
#endif
|