]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
Point fix, earlier forgotten
[lyx.git] / src / BufferView.h
index 3aad4654fa4515f6d99f50959a6ca39bff25f6b7..029c139c38cc37b8269e1b1284d7847f2219c8de 100644 (file)
@@ -1,17 +1,21 @@
 // -*- C++ -*-
 /**
  * \file BufferView.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *  \author Lars Gullik Bjønnes
-*/
+ * \author Alfredo Braustein
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef BUFFER_VIEW_H
 #define BUFFER_VIEW_H
 
 #include "LString.h"
-#include "undo.h"
 
 #include "insets/inset.h"
 
@@ -28,6 +32,7 @@ class Painter;
 class UpdatableInset;
 class WordLangTuple;
 class Encoding;
+class ErrorList;
 
 /**
  * A buffer view encapsulates a view onto a particular
@@ -39,17 +44,6 @@ class Encoding;
  */
 class BufferView : boost::noncopyable {
 public:
-       /**
-        * Codes to store necessary pending updates
-        * of the document rendering.
-        */
-       enum UpdateCodes {
-               UPDATE = 0, //< FIXME
-               SELECT = 1, //< selection change
-               FITCUR = 2, //< the cursor needs fitting into the view
-               CHANGE = 4  //< document data has changed
-       };
-
        /**
         * Create a view with the given owner main window,
         * of the given dimensions.
@@ -70,23 +64,32 @@ public:
        /// return the owning main view
        LyXView * owner() const;
 
+       /// return the visible top y
+       int top_y() const;
+
+       /// set the visible top y
+       void top_y(int);
+
        /// resize event has happened
        void resize();
-       /**
-        * 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();
+
+       /// reload the contained buffer
+       void reload();
+       /// create a new buffer based on template
+       bool newFile(string const & fname, string const & tname,
+                    bool named = true);
+       /// load a buffer into the view
+       bool loadLyXFile(string const & name, bool tolastfiles = true);
 
        /// fit the user cursor within the visible view
        bool fitCursor();
        /// perform pending painting updates
        void update();
-       // update for a particular lyxtext
-       void update(LyXText *, UpdateCodes uc);
-       /// update for a particular inset
-       void updateInset(Inset * inset, bool mark_dirty);
+       /** 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.
+        */
+       void updateInset(InsetOld const *);
        /// reset the scrollbar to reflect current view position
        void updateScrollbar();
        /// FIXME
@@ -104,7 +107,7 @@ public:
        void restorePosition(unsigned int i);
        /// does the given bookmark have a saved position ?
        bool isSavedPosition(unsigned int i);
+
        /// return the current change at the cursor
        Change const getCurrentChange();
 
@@ -129,7 +132,7 @@ public:
        Encoding const * getEncoding() const;
 
        /// return the parent language of the given inset
-       Language const * getParentLanguage(Inset * inset) const;
+       Language const * getParentLanguage(InsetOld * inset) const;
 
        /// Select the "current" word
        void selectLastWord();
@@ -141,22 +144,17 @@ public:
        WordLangTuple const nextWord(float & value);
 
        /// move cursor to the named label
-       bool gotoLabel(string const & label);
-
-       /// copy the environment type from current paragraph
-       void copyEnvironment();
-       /// set the current paragraph's environment type
-       void pasteEnvironment();
+       void gotoLabel(string const & label);
 
        /// undo last action
        void undo();
        /// redo last action
        void redo();
 
-       /// removes all autodeletable insets
-       bool removeAutoInsets();
-       /// insert all errors found when running latex
-       void insertErrors(TeXErrors & terr);
+       /// get the stored error list
+       ErrorList const & getErrorList() const;
+       /// show the error list to the user
+       void showErrorList(string const &) const;
        /// set the cursor based on the given TeX source row
        void setCursorFromRow(int row);
 
@@ -164,27 +162,16 @@ public:
         * Insert an inset into the buffer.
         * Place it in a layout of lout,
         */
-       bool insertInset(Inset * inset, string const & lout = string());
+       bool insertInset(InsetOld * inset, string const & lout = string());
 
        /// Inserts a lyx file at cursor position. return false if it fails
        bool insertLyXFile(string const & file);
 
-       /// show the user cursor
-       void showCursor();
-       /// hide the user cursor
-       void hideCursor();
-       /// FIXME
-       void showLockedInsetCursor(int x, int y, int asc, int desc);
-       /// FIXME
-       void hideLockedInsetCursor();
        /// FIXME
        bool fitLockedInsetCursor(int x, int y, int asc, int desc);
-       /// FIXME
-       void lockedInsetStoreUndo(Undo::undo_kind kind);
-       /// FIXME
-       void toggleSelection(bool = true);
-       /// FIXME: my word !
-       void toggleToggle();
+
+       /// hide the cursor if it is visible
+       void hideCursor();
 
        /// center the document view around the cursor
        void center();
@@ -193,8 +180,6 @@ public:
        /// Scroll the view by a number of pixels
        void scrollDocView(int);
 
-       /// height of a normal line in pixels (zoom factor considered)
-       int defaultHeight() const;
        /// return the pixel width of the document view
        int workWidth() const;
        /// return the pixel height of the document view
@@ -205,8 +190,6 @@ public:
 
        /// FIXME
        bool ChangeRefsIfUnique(string const & from, string const & to);
-       /// FIXME
-       bool ChangeCitationsIfUnique(string const & from, string const & to);
 
        /// get the contents of the window system clipboard
        string const getClipboard() const;
@@ -222,15 +205,12 @@ private:
        /// Set the current locking inset
        void theLockingInset(UpdatableInset * inset);
 
-       /// return the lyxtext containing this inset
-       LyXText * getParentText(Inset * inset) const;
-
        /**
         * Change all insets with the given code's contents to a new
         * string. May only be used with InsetCommand-derived insets
         * Returns true if a screen update is needed.
         */
-       bool ChangeInsets(Inset::Code code, string const & from,
+       bool ChangeInsets(InsetOld::Code code, string const & from,
                          string const & to);
 
 
@@ -240,8 +220,4 @@ private:
        Pimpl * pimpl_;
 };
 
-
-BufferView::UpdateCodes operator|(BufferView::UpdateCodes uc1,
-                                 BufferView::UpdateCodes uc2);
-
 #endif // BUFFERVIEW_H