mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
361bd53bc3
This done according to the TeXbook. This class replaces the individual isMathXXX() methods. The mathClass() method (currently unused) is provided for the following insets: * InsetMathChar (with a revised list of affected characters) * InsetMathSymbol: the class is given by the `extra' field Operators defined in lib/symbols (e.g. \log) are MC_OP * InsetMathFrac is MC_INNER (except nicefrac and units) * InsetDelimiters is MC_INNER * InsetStackrel is MC_REL * The class of InsetScript is the class of the last element of its nucleus (yes, it is a hack, but doing it right is more work). Remove the explicit spacing that was done in the different insets. The spacing will be reintroduced properly in a forthcoming commit.
96 lines
2.1 KiB
C++
96 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetMathSymbol.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_SYMBOLINSET_H
|
|
#define MATH_SYMBOLINSET_H
|
|
|
|
#include "InsetMath.h"
|
|
|
|
namespace lyx {
|
|
|
|
class latexkeys;
|
|
|
|
|
|
/** "normal" symbols that don't take limits and don't grow in displayed
|
|
* formulae.
|
|
*/
|
|
class InsetMathSymbol : public InsetMath {
|
|
public:
|
|
///
|
|
explicit InsetMathSymbol(latexkeys const * l);
|
|
///
|
|
explicit InsetMathSymbol(char const * name);
|
|
///
|
|
explicit InsetMathSymbol(docstring const & name);
|
|
///
|
|
void metrics(MetricsInfo & mi, Dimension & dim) const;
|
|
///
|
|
void draw(PainterInfo &, int x, int y) const;
|
|
///
|
|
int kerning(BufferView const *) const { return kerning_; }
|
|
|
|
///
|
|
mode_type currentMode() const;
|
|
///
|
|
MathClass mathClass() const;
|
|
///
|
|
bool isOrdAlpha() const;
|
|
/// do we take scripts?
|
|
bool isScriptable() const;
|
|
/// do we take \limits or \nolimits?
|
|
bool takesLimits() const;
|
|
/// identifies SymbolInset as such
|
|
InsetMathSymbol const * asSymbolInset() const { return this; }
|
|
/// the LaTeX name of the symbol (without the backslash)
|
|
docstring name() const;
|
|
/// request "external features"
|
|
void validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
|
void normalize(NormalStream &) const;
|
|
///
|
|
void maple(MapleStream &) const;
|
|
///
|
|
void maxima(MaximaStream &) const;
|
|
///
|
|
void mathematica(MathematicaStream &) const;
|
|
///
|
|
void mathmlize(MathStream &) const;
|
|
///
|
|
void htmlize(HtmlStream &) const;
|
|
/// \param spacing controls whether we print spaces around
|
|
/// "operator"-type symbols or just print them raw
|
|
void htmlize(HtmlStream &, bool spacing) const;
|
|
///
|
|
void octave(OctaveStream &) const;
|
|
///
|
|
void write(WriteStream & os) const;
|
|
///
|
|
void infoize2(odocstream & os) const;
|
|
///
|
|
InsetCode lyxCode() const { return MATH_SYMBOL_CODE; }
|
|
|
|
private:
|
|
virtual Inset * clone() const;
|
|
///
|
|
latexkeys const * sym_;
|
|
///
|
|
mutable int h_;
|
|
/// cached superscript kerning
|
|
mutable int kerning_;
|
|
///
|
|
mutable bool scriptable_;
|
|
};
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|