mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
4709a0c535
* src/mathed/MathExtern.C (pipeThroughOctave): take into account that the output from octave may contain ansi control sequences. * src/mathed/InsetMathRoot.[Ch] (InsetMathRoot::mathematica): new virtual method to output n-th roots in mathematica syntax. * src/mathed/InsetMathRoot.C (InsetMathRoot::octave): octave has not a root() command. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16559 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
1000 B
C++
54 lines
1000 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathRoot.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef MATH_ROOT_H
|
|
#define MATH_ROOT_H
|
|
|
|
#include "InsetMathNest.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
|
/// The general n-th root inset.
|
|
class InsetMathRoot : public InsetMathNest {
|
|
public:
|
|
///
|
|
InsetMathRoot();
|
|
///
|
|
bool idxUpDown(LCursor & cur, bool up) const;
|
|
///
|
|
bool metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
|
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void mathmlize(MathStream &) const;
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void mathematica(MathematicaStream &) const;
|
|
///
|
|
void octave(OctaveStream &) const;
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
};
|
|
|
|
|
|
|
|
} // namespace lyx
|
|
#endif
|