X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_textinset.h;h=04826766c09bb9768239aaf97b78eb25a1f2597b;hb=b447408de232872fef1537fca542abc23702d572;hp=19ed4f080b5ee144083dc6632b67f8fcb1f4eccd;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/mathed/math_textinset.h b/src/mathed/math_textinset.h index 19ed4f080b..04826766c0 100644 --- a/src/mathed/math_textinset.h +++ b/src/mathed/math_textinset.h @@ -1,9 +1,20 @@ +// -*- C++ -*- +/** + * \file math_textinset.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_TEXTINSET_H #define MATH_TEXTINSET_H - #include "math_gridinset.h" + // not yet a substitute for the real text inset... class MathTextInset : public MathNestInset { @@ -11,18 +22,18 @@ public: /// MathTextInset(); /// - MathInset * clone() const; + virtual std::auto_ptr clone() const; /// get cursor position - void getPos(idx_type idx, pos_type pos, int & x, int & y) const; + void getCursorPos(CursorSlice const & cur, int & x, int & y) const; /// this stores metrics information in cache_ - void metrics(MathMetricsInfo & mi) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// draw according to cached metrics - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// draw selection background - void drawSelection(MathPainterInfo & pi, - idx_type idx1, pos_type pos1, idx_type idx2, pos_type pos2) const; + //void drawSelection(PainterInfo & pi, + // idx_type idx1, pos_type pos1, idx_type idx2, pos_type pos2) const; /// moves cursor up or down - bool idxUpDown(idx_type &, pos_type & pos, bool up, int targetx) const; + //bool idxUpDown2(LCursor & pos, bool up) const; protected: /// row corresponding to given position idx_type pos2row(pos_type pos) const;