]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
more cursor dispatch
[lyx.git] / src / BufferView.h
index d3ec1cb83351a6d304d8d27be12939a979897466..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
@@ -86,19 +90,6 @@ public:
        bool fitCursor();
        /// perform pending painting updates
        void update();
-       /** update for a particular inset. Gets a pointer and not a
-        *  reference because we really need the pointer information
-        *  to find it in the buffer.
-   *
-        * Extracted from Matthias notes:
-        *
-        * If a inset wishes any redraw and/or update it just has to call
-        * updateInset(this). It's is completly irrelevant, where the inset is.
-   * UpdateInset will find it in any paragraph in any buffer.
-        * Of course the insets in the current paragraph/buffer
-        * are checked first, so no performance problem should occur.
-        */
-       void updateInset(InsetOld const *);
        /// reset the scrollbar to reflect current view position
        void updateScrollbar();
        /// FIXME
@@ -117,11 +108,6 @@ public:
        /// return the current change at the cursor
        Change const getCurrentChange();
 
-       /**
-        * This holds the mapping between buffer paragraphs and screen rows.
-        * This should be private...but not yet. (Lgb)
-        */
-       LyXText * text;
        /// return the lyxtext we are using
        LyXText * getLyXText() const;
 
@@ -136,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);
@@ -156,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);
@@ -195,38 +183,27 @@ public:
        /// execute the given function
        bool dispatch(FuncRequest const & argument);
        
-       /// set target x position of cursor
-       void BufferView::x_target(int x);
-       /// return target x position of cursor
-       int BufferView::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:
+       ///
        struct Pimpl;
+       ///
        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