X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_hullinset.h;h=6c9237351a8faf37ed5d09b131482d4398791400;hb=cd03e2b7db8379a91f3d31eac2c5bc25b159c541;hp=d35c9a7bce259585d14fffad357c71f347b6baab;hpb=bf2e2d58f3905625b65d51a6b258603e8071701c;p=lyx.git diff --git a/src/mathed/math_hullinset.h b/src/mathed/math_hullinset.h index d35c9a7bce..6c9237351a 100644 --- a/src/mathed/math_hullinset.h +++ b/src/mathed/math_hullinset.h @@ -1,21 +1,23 @@ // -*- C++ -*- +/** + * \file math_hullinset.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_HULLINSET_H #define MATH_HULLINSET_H #include "math_gridinset.h" -#ifdef __GNUG__ -#pragma interface -#endif - -/** This provides an interface between "LyX insets" and "LyX math insets" - * \author André Pönitz - * - * Full author contact details are available in file CREDITS - */ class LaTeXFeatures; +/// This provides an interface between "LyX insets" and "LyX math insets" class MathHullInset : public MathGridInset { public: /// @@ -23,15 +25,15 @@ public: /// explicit MathHullInset(string const & type); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// mode_type currentMode() const; /// - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// - void metricsT(TextMetricsInfo const & mi) const; + void metricsT(TextMetricsInfo const & mi, Dimension & dim) const; /// void drawT(TextPainter &, int x, int y) const; /// @@ -49,8 +51,8 @@ public: /// bool ams() const; /// local dispatcher - result_type dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos); - /// + dispatch_result dispatch(FuncRequest const & cmd, idx_type & idx, pos_type & pos); + /// void getLabelList(std::vector &) const; /// void validate(LaTeXFeatures & features) const; @@ -82,6 +84,8 @@ public: /// bool idxLast(idx_type &, pos_type &) const; + /// + string fileInsetLabel() const; /// void write(WriteStream & os) const; /// @@ -92,7 +96,7 @@ public: void infoize(std::ostream & os) const; protected: - /// + /// string eolString(row_type row, bool fragile) const; private: