]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
more cursor dispatch
[lyx.git] / src / BufferView.h
index 47f2da3b3cac81a64c6af62967055d842be266b5..fa89ca527c11461e7d96e22631fd0ac5cb083d17 100644 (file)
@@ -15,6 +15,8 @@
 #ifndef BUFFER_VIEW_H
 #define BUFFER_VIEW_H
 
+#include "support/types.h"
+
 #include <boost/utility.hpp>
 
 #include <string>
@@ -24,6 +26,7 @@ class Change;
 class Encoding;
 class ErrorList;
 class FuncRequest;
+class InsetBase;
 class InsetOld;
 class Language;
 class LCursor;
@@ -31,10 +34,11 @@ class LyXText;
 class LyXScreen;
 class LyXView;
 class Painter;
+class ParIterator;
+class PosIterator;
 class TeXErrors;
 class UpdatableInset;
 
-
 /**
  * A buffer view encapsulates a view onto a particular
  * buffer, and allows access to operate upon it. A view
@@ -118,6 +122,8 @@ public:
 
        /// replace the currently selected word
        void replaceWord(std::string const & replacestring);
+       /// simple replacing. Use the font of the first selected character 
+       void replaceSelectionWithString(std::string const & str);
 
        /// move cursor to the named label
        void gotoLabel(std::string const & label);
@@ -138,7 +144,7 @@ public:
         * Insert an inset into the buffer.
         * Place it in a layout of lout,
         */
-       bool insertInset(InsetOld * inset, std::string const & lout = std::string());
+       bool insertInset(InsetBase * inset, std::string const & lout = std::string());
 
        /// Inserts a lyx file at cursor position. return false if it fails
        bool insertLyXFile(std::string const & file);
@@ -177,22 +183,19 @@ public:
        /// execute the given function
        bool dispatch(FuncRequest const & argument);
        
-       /// set target x position of cursor
-       void x_target(int x);
-       /// return target x position of cursor
-       int x_target() const;
-
        /// clear the X selection
        void unsetXSel();
 
-       /// access to cursor
+       /// access to full cursor
        LCursor & cursor();
-       /// access to cursor
+       /// access to full cursor
        LCursor const & cursor() const;
        ///
-       UpdatableInset * innerInset() const;
-       ///
        LyXText * text() const;
+       ///
+       void setCursor(ParIterator const & par, lyx::pos_type pos);
+       ///
+       void putSelectionAt(PosIterator const & cur, int length, bool backwards);
 
 private:
        ///
@@ -201,21 +204,6 @@ private:
        friend struct BufferView::Pimpl;
        ///
        Pimpl * pimpl_;
-
-       /**
-        * The target x position of the cursor. This is used for when
-        * we have text like :
-        *
-        * blah blah blah blah| blah blah blah
-        * blah blah blah
-        * blah blah blah blah blah blah
-        *
-        * When we move onto row 3, we would like to be vertically aligned
-        * with where we were in row 1, despite the fact that row 2 is
-        * shorter than x()
-        */
-       int x_target_;
-
 };
 
 #endif // BUFFERVIEW_H