]> git.lyx.org Git - lyx.git/blobdiff - src/Text.h
* Paragraph: erase unused some method and move some members to Paragraph::Private.
[lyx.git] / src / Text.h
index 0c432f8d9b210b5b22a4625b34d50e2b7783a8f0..f6883e8bd59da0658ea07b2c3abdeb015fcb419f 100644 (file)
@@ -30,6 +30,7 @@ class FuncStatus;
 class Inset;
 class Color_color;
 class Cursor;
+class Lexer;
 class PainterInfo;
 class Spacing;
 
@@ -162,16 +163,16 @@ public:
        ///
        void recUndo(Cursor & cur, pit_type first) const;
 
-       /// Move cursor one position left
+       /// Move cursor one position backwards
        /**
         * Returns true if an update is needed after the move.
         */
-       bool cursorLeft(Cursor & cur);
-       /// Move cursor one position right
+       bool cursorBackward(Cursor & cur);
+       /// Move cursor one position forward
        /**
         * Returns true if an update is needed after the move.
         */
-       bool cursorRight(Cursor & cur);
+       bool cursorForward(Cursor & cur);
        ///
        bool cursorLeftOneWord(Cursor & cur);
        ///
@@ -286,7 +287,7 @@ private:
        /// handle the case where bibitems were deleted
        bool handleBibitems(Cursor & cur);
        ///
-       void charInserted();
+       void charInserted(Cursor & cur);
        /// set 'number' font property
        void number(Cursor & cur);