X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBox.h;h=e07fed9c48176c3511a317da759635190bcc0819;hb=38c2cde0d8695ac5287bae218c4a33a2acf18ef8;hp=fc8d9aa977a93b2d8a4d1f18c7f8e832ef644106;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathBox.h b/src/mathed/InsetMathBox.h index fc8d9aa977..e07fed9c48 100644 --- a/src/mathed/InsetMathBox.h +++ b/src/mathed/InsetMathBox.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,17 +14,14 @@ #include "InsetMathNest.h" -#include - -class LyXFont; +namespace lyx { /// Support for \\mbox - class InsetMathBox : public InsetMathNest { public: /// - explicit InsetMathBox(std::string const & name); + explicit InsetMathBox(Buffer * buf, docstring const & name); /// mode_type currentMode() const { return TEXT_MODE; } /// @@ -36,13 +33,113 @@ public: /// void normalize(NormalStream & ns) const; /// - void infoize(std::ostream & os) const; + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// + void infoize(odocstream & os) const; + /// + void validate(LaTeXFeatures & features) const; + /// + InsetCode lyxCode() const { return MATH_BOX_CODE; } private: - virtual std::auto_ptr doClone() const; + Inset * clone() const { return new InsetMathBox(*this); } + /// + docstring name_; +}; + + +/// Non-AMS-style frame +class InsetMathFBox : public InsetMathNest { +public: + /// + explicit InsetMathFBox(Buffer * buf); + /// + mode_type currentMode() const { return TEXT_MODE; } + /// + marker_type marker(BufferView const *) const { return NO_MARKER; } + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; + /// + void write(WriteStream & os) const; + /// write normalized content + void normalize(NormalStream & ns) const; + /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// + void infoize(odocstream & os) const; + /// + void validate(LaTeXFeatures & features) const; +private: /// - std::string name_; + Inset * clone() const { return new InsetMathFBox(*this); } }; -#endif +/// Extra nesting: \\makebox or \\framebox. +class InsetMathMakebox : public InsetMathNest { +public: + /// + InsetMathMakebox(Buffer * buf, bool framebox); + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; + /// + void write(WriteStream & os) const; + /// write normalized content + void normalize(NormalStream & ns) const; + /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// + mode_type currentMode() const { return TEXT_MODE; } + /// + void infoize(odocstream & os) const; + /// + void validate(LaTeXFeatures & features) const; +private: + Inset * clone() const { return new InsetMathMakebox(*this); } + /// + bool framebox_; +}; + + + +/// AMS-style frame +class InsetMathBoxed : public InsetMathNest { +public: + /// + explicit InsetMathBoxed(Buffer * buf); + /// + marker_type marker(BufferView const *) const { return NO_MARKER; } + /// + void validate(LaTeXFeatures & features) const; + /// + void metrics(MetricsInfo & mi, Dimension & dim) const; + /// + void draw(PainterInfo & pi, int x, int y) const; + /// + void write(WriteStream & os) const; + /// + void mathmlize(MathStream & ms) const; + /// + void htmlize(HtmlStream & ms) const; + /// write normalized content + void normalize(NormalStream & ns) const; + /// + void infoize(odocstream & os) const; +private: + Inset * clone() const { return new InsetMathBoxed(*this); } +}; + + +} // namespace lyx + +#endif // MATH_MBOX