2001-09-05 12:57:13 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_splitinset.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.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-09-05 12:57:13 +00:00
|
|
|
|
#ifndef MATH_SPLITINSET_H
|
|
|
|
|
#define MATH_SPLITINSET_H
|
|
|
|
|
|
|
|
|
|
#include "math_gridinset.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MathSplitInset : public MathGridInset {
|
2002-03-21 17:42:56 +00:00
|
|
|
|
public:
|
2001-09-05 12:57:13 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
explicit MathSplitInset(std::string const & name);
|
2001-09-05 12:57:13 +00:00
|
|
|
|
///
|
2001-11-09 08:35:57 +00:00
|
|
|
|
void write(WriteStream & os) const;
|
2001-09-05 12:57:13 +00:00
|
|
|
|
///
|
2001-11-20 17:16:21 +00:00
|
|
|
|
int defaultColSpace(col_type) { return 0; }
|
2001-09-05 12:57:13 +00:00
|
|
|
|
///
|
2002-02-15 14:50:40 +00:00
|
|
|
|
char defaultColAlign(col_type);
|
|
|
|
|
private:
|
2004-11-23 23:04:52 +00:00
|
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
2002-02-15 14:50:40 +00:00
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
std::string name_;
|
2001-09-05 12:57:13 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|