]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
move mouse click handling to LyXText::dispatch
[lyx.git] / src / BufferView.h
index 9168849a6881d485130a627d98670a7a502ce01e..8d72e59c0c50569ef4bd798a69763499a30f5cb0 100644 (file)
@@ -1,7 +1,8 @@
 // -*- C++ -*-
-/** \file
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+/**
+ * \file BufferView.h
+ * Copyright 2002 the LyX Team
+ * Read the file COPYING
  *
  *  \author Lars Gullik Bjønnes
 */
@@ -15,7 +16,6 @@
 
 #include "LString.h"
 #include "undo.h"
-#include "commandtags.h"
 
 #include "insets/inset.h"
 
@@ -29,6 +29,8 @@ class LyXScreen;
 class Language;
 class Painter;
 class UpdatableInset;
+class WordLangTuple;
+class WorkArea;
 
 ///
 class BufferView : boost::noncopyable {
@@ -55,12 +57,18 @@ public:
        Painter & painter() const;
        ///
        LyXScreen & screen() const;
+       /// return the work area for this bview
+       WorkArea & workarea() const;
        ///
        void buffer(Buffer * b);
        ///
        void resize();
-       ///
-       void redraw();
+       /**
+        * Repaint the pixmap. Used for when we don't want
+        * to go through the full update() logic, just a simple
+        * repaint of the whole screen.
+        */
+       void repaint();
        ///
        bool fitCursor();
        ///
@@ -74,10 +82,6 @@ public:
        ///
        void redoCurrentBuffer();
        ///
-       void cursorPrevious(LyXText *);
-       ///
-       void cursorNext(LyXText *);
-       ///
        bool available() const;
        ///
        LyXView * owner() const;
@@ -119,17 +123,11 @@ public:
        void endOfSpellCheck();
        ///
        void selectLastWord();
-       ///
-       string const nextWord(float & value);
+       /// return the next word
+       WordLangTuple const nextWord(float & value);
        ///
        bool gotoLabel(string const & label);
        ///
-       void paste();
-       ///
-       void cut(bool realcut = true);
-       ///
-       void copy();
-       ///
        void pasteEnvironment();
        ///
        void copyEnvironment();
@@ -144,15 +142,11 @@ public:
        ///
        void setCursorFromRow(int row);
        /** Insert an inset into the buffer.
-           Placie it in a layout of lout,
+           Place it in a layout of lout,
            if no_table make sure that it doesn't end up in a table.
        */
-       //bool insertInset(Inset * inset, string const & lout = string(),
-       //               bool no_table = false);
        bool insertInset(Inset * inset, string const & lout = string());
-       /** Inserts a lyx file at cursor position.
-           \return #false# if it fails.
-       */
+       /// Inserts a lyx file at cursor position. return #false# if it fails
        bool insertLyXFile(string const & file);
        ///
        bool lockInset(UpdatableInset * inset);
@@ -176,12 +170,14 @@ public:
        void toggleToggle();
        ///
        void center();
+       ///
+       int scroll(long time);
 
        /// Scroll the view by a number of pixels
        void scrollDocView(int);
 
        ///
-       void setState();
+       void switchKeyMap();
 
        ///
        bool ChangeInsets(Inset::Code code, string const & from,
@@ -193,11 +189,10 @@ public:
        ///
        string const getClipboard() const;
        ///
-       void pasteClipboard(bool asPara);
-       ///
        void stuffClipboard(string const &) const;
        ///
-       bool Dispatch(kb_action action, string const & argument);
+       bool dispatch(FuncRequest const & argument);
+
 private:
        ///
        struct Pimpl;