]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_textinset.h
fix #1073
[lyx.git] / src / mathed / math_textinset.h
index db8b391daa1f9cd17bcfe78d794095503f6e1b9c..c5fb02531f31e287a7cdca0ced0a7992b54da572 100644 (file)
@@ -1,9 +1,6 @@
 #ifndef MATH_TEXTINSET_H
 #define MATH_TEXTINSET_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "math_gridinset.h"
 
@@ -18,16 +15,16 @@ public:
        /// get cursor position
        void getPos(idx_type idx, pos_type pos, int & x, int & y) const;
        /// this stores metrics information in cache_
-       void metrics(MathMetricsInfo & mi) const;
+       void metrics(MetricsInfo & mi) 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,
+       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(idx_type &, pos_type & pos, bool up, int targetx) const;
 protected:
-       /// row corresponding to given position 
+       /// row corresponding to given position
        idx_type pos2row(pos_type pos) const;
        /// cached metrics
        mutable MathGridInset cache_;