X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathChar.h;h=65fac82fffb04c5067ebec2c0d4beb7f9e793068;hb=89342f2946abd5d01b019a729d1f160b0c9d3d50;hp=c1d5b1974a1608927410608c1795d1e0cb847bc7;hpb=696b5d29b5d5822845eabe42bfc064c4271ade76;p=lyx.git diff --git a/src/mathed/InsetMathChar.h b/src/mathed/InsetMathChar.h index c1d5b1974a..65fac82fff 100644 --- a/src/mathed/InsetMathChar.h +++ b/src/mathed/InsetMathChar.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -14,8 +14,6 @@ #include "InsetMath.h" -#include "Font.h" - namespace lyx { /// The base character inset. @@ -26,30 +24,34 @@ public: /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// - Dimension const dimension(BufferView const &) const { return dim_; } - /// void draw(PainterInfo & pi, int x, int y) const; /// void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; /// void drawT(TextPainter &, int x, int y) const; /// - int kerning() const { return kerning_; } + int kerning(BufferView const *) const { return kerning_; } /// void write(WriteStream & os) const; /// + void validate(LaTeXFeatures & features) const; + /// void normalize(NormalStream & ns) const; /// void octave(OctaveStream & os) const; /// void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; /// identifies Charinsets InsetMathChar const * asCharInset() const { return this; } /// char_type getChar() const { return char_; } /// bool isRelOp() const; + /// + InsetCode lyxCode() const { return MATH_CHAR_CODE; } private: virtual Inset * clone() const; @@ -57,8 +59,6 @@ private: char_type char_; /// cached kerning for superscript mutable int kerning_; - /// FIXME: move this out to BufferView - mutable Dimension dim_; }; } // namespace lyx