mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
65962da47b
Patch from Ronen Abravanel. http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg161952.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35455 a592a061-630c-0410-9148-cb99ea01b6c8
61 lines
1.0 KiB
C++
61 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathDiagram.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
* \author Ronen Abravanel
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_DIAGRAM_H
|
|
#define MATH_DIAGRAM_H
|
|
|
|
#include "Length.h"
|
|
#include "InsetMathGrid.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
class InsetMathDiagram : public InsetMathGrid {
|
|
public:
|
|
///
|
|
InsetMathDiagram(Buffer * buf);
|
|
///
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
|
///
|
|
InsetMathDiagram const * asDiagramInset() const { return this; }
|
|
///
|
|
virtual int colsep() const;
|
|
///
|
|
virtual int rowsep() const;
|
|
|
|
///
|
|
void normalize();
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void infoize(odocstream & os) const;
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
InsetCode lyxCode() const { return MATH_DIAGRAM_CODE; }
|
|
|
|
private:
|
|
///
|
|
virtual Inset * clone() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
#endif
|