mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
8a9d0934e9
* src/mathed/InsetMathSplit.[Ch] (InsetMathSplit): Add valignment argument to constructor * src/mathed/InsetMathSplit.C (InsetMathSplit::write): write vertical alignment if needed * src/mathed/MathParser.C (Parser::parse1): parse optional arguments of aligned, gathered and alignedat git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15202 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
926 B
C++
46 lines
926 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathSplit.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_SPLITINSET_H
|
|
#define MATH_SPLITINSET_H
|
|
|
|
#include "InsetMathGrid.h"
|
|
|
|
|
|
class InsetMathSplit : public InsetMathGrid {
|
|
public:
|
|
///
|
|
explicit InsetMathSplit(std::string const & name, char valign = 'c');
|
|
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
bool getStatus(LCursor & cur, FuncRequest const & cmd,
|
|
FuncStatus & flag) const;
|
|
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void infoize(std::ostream & os) const;
|
|
///
|
|
void validate(LaTeXFeatures & features) const;
|
|
///
|
|
int defaultColSpace(col_type) { return 0; }
|
|
///
|
|
char defaultColAlign(col_type);
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
///
|
|
std::string name_;
|
|
};
|
|
|
|
#endif
|