2001-02-13 13:28:32 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#ifndef MATH_DELIMINSET_H
|
|
|
|
#define MATH_DELIMINSET_H
|
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
#include "math_nestinset.h"
|
2001-08-09 15:19:31 +00:00
|
|
|
#include "LString.h"
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-02-16 09:25:43 +00:00
|
|
|
/** A delimiter
|
|
|
|
\author Alejandro Aguilar Sierra
|
|
|
|
*/
|
2001-08-09 15:19:31 +00:00
|
|
|
|
2001-08-03 17:10:22 +00:00
|
|
|
class MathDelimInset : public MathNestInset {
|
2001-02-13 13:28:32 +00:00
|
|
|
public:
|
|
|
|
///
|
2001-09-12 12:51:55 +00:00
|
|
|
MathDelimInset(string const &, string const &);
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * clone() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-08-06 17:20:26 +00:00
|
|
|
void draw(Painter &, int x, int y) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void write(MathWriteInfo & os) const;
|
2001-10-24 16:10:38 +00:00
|
|
|
/// write normalized content
|
2001-11-08 12:06:56 +00:00
|
|
|
void writeNormal(NormalStream &) const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-10-19 11:25:48 +00:00
|
|
|
void metrics(MathMetricsInfo const & st) const;
|
2001-11-07 08:51:35 +00:00
|
|
|
///
|
2001-11-07 10:21:51 +00:00
|
|
|
bool isMatrix() const;
|
|
|
|
///
|
2001-11-07 17:30:26 +00:00
|
|
|
void maplize(MapleStream &) const;
|
2001-11-07 18:15:24 +00:00
|
|
|
///
|
|
|
|
void mathmlize(MathMLStream &) const;
|
|
|
|
///
|
|
|
|
void octavize(OctaveStream &) const;
|
2001-02-16 09:25:43 +00:00
|
|
|
private:
|
2001-08-09 15:19:31 +00:00
|
|
|
///
|
2001-06-25 00:06:33 +00:00
|
|
|
int dw() const;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-09-12 12:51:55 +00:00
|
|
|
string left_;
|
|
|
|
///
|
|
|
|
string right_;
|
2001-02-13 13:28:32 +00:00
|
|
|
///
|
2001-09-12 12:51:55 +00:00
|
|
|
static string latexName(string const & name);
|
2001-02-13 13:28:32 +00:00
|
|
|
};
|
|
|
|
#endif
|