]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.h
Replace boost::shared_ptr<TextClass> with a global cache of sorts of the TextClass...
[lyx.git] / src / BufferView.h
index 8781866c5e76fea4a69fb82ec0473da769e77269..a79c7bbb62e6b9da5c663fcb7bdfbdc8995362ab 100644 (file)
 #ifndef BUFFER_VIEW_H
 #define BUFFER_VIEW_H
 
-#include <boost/utility.hpp>
+#include "update_flags.h"
 
-#include <string>
+#include "support/strfwd.h"
+#include "support/types.h"
+
+namespace lyx {
+
+namespace support { class FileName; }
+
+namespace frontend { class Painter; }
+namespace frontend { class GuiBufferViewDelegate; }
 
 class Buffer;
 class Change;
-class CursorSlice;
-class Encoding;
-class ErrorList;
+class CoordCache;
+class Cursor;
+class DocIterator;
 class FuncRequest;
-class InsetOld;
-class Language;
-class LCursor;
-class LyXText;
-class LyXScreen;
-class LyXView;
-class Painter;
-class TeXErrors;
-class UpdatableInset;
+class FuncStatus;
+class Intl;
+class Inset;
+class Menu;
+class ParIterator;
+class ParagraphMetrics;
+class Point;
+class Text;
+class TextMetrics;
+
+enum CursorStatus {
+       CUR_INSIDE,
+       CUR_ABOVE,
+       CUR_BELOW
+};
 
+/// Scrollbar Parameters.
+struct ScrollbarParameters
+{
+       /// Minimum scrollbar position in pixels.
+       int min;
+       /// Maximum scrollbar position in pixels.
+       int max;
+       /// Current position in the document in pixels.
+       int position;
+       /// Line-scroll amount in pixels.
+       int single_step;
+       /// Page-scroll amount in pixels.
+       int page_step;
+};
 
+/// Screen view of a Buffer.
 /**
- * A buffer view encapsulates a view onto a particular
+ * A BufferView encapsulates a view onto a particular
  * buffer, and allows access to operate upon it. A view
  * is a sliding window of the entire document rendering.
+ * It is the official interface between the LyX core and
+ * the frontend WorkArea.
  *
- * Eventually we will allow several views onto a single
- * buffer, but not yet.
+ * \sa WorkArea
+ * \sa Buffer
+ * \sa CoordCache
  */
-class BufferView : boost::noncopyable {
+class BufferView {
 public:
-       /**
-        * Create a view with the given owner main window,
-        * of the given dimensions.
-        */
-       BufferView(LyXView * owner, int x, int y, int w, int h);
-
+       ///
+       explicit BufferView(Buffer & buffer);
+       ///
        ~BufferView();
 
-       /// set the buffer we are viewing
-       void buffer(Buffer * b);
-       /// return the buffer being viewed
-       Buffer * buffer() const;
+       /// return the buffer being viewed.
+       Buffer & buffer();
+       Buffer const & buffer() const;
 
-       /// return the painter object for drawing onto the view
-       Painter & painter() const;
-       /// return the screen object for handling re-drawing
-       LyXScreen & screen() const;
-       /// return the owning main view
-       LyXView * owner() const;
-
-       /// return the visible top y
-       int top_y() const;
+       ///
+       void setFullScreen(bool full_screen) { full_screen_ = full_screen; }
 
-       /// set the visible top y
-       void top_y(int);
+       /// right margin
+       int rightMargin() const;
 
-       /// resize event has happened
-       void resize();
+       /// left margin
+       int leftMargin() const;
 
-       /// reload the contained buffer
-       void reload();
-       /// create a new buffer based on template
-       bool newFile(std::string const & fname, std::string const & tname,
-                    bool named = true);
-       /// load a buffer into the view
-       bool loadLyXFile(std::string const & name, bool tolastfiles = true);
+       /// perform pending metrics updates.
+       /** \c Update::FitCursor means first to do a FitCursor, and to
+        * force an update if screen position changes.
+        * \c Update::Force means to force an update in any case.
+        * \retval true if a screen redraw is needed
+        */
+       void processUpdateFlags(Update::flags flags);
 
-       /// fit the user cursor within the visible view
+       /// move the screen to fit the cursor.
+       /// Only to be called with good y coordinates (after a bv::metrics)
        bool fitCursor();
-       /// perform pending painting updates
-       void update();
-       /// reset the scrollbar to reflect current view position
+       /// reset the scrollbar to reflect current view position.
        void updateScrollbar();
-       /// FIXME
-       void redoCurrentBuffer();
-
-       /// FIXME
-       bool available() const;
+       /// return the Scrollbar Parameters.
+       ScrollbarParameters const & scrollbarParameters() const;
+       /// \return Tool tip for the given position.
+       docstring toolTip(int x, int y) const;
+       /// \return the context menu for the given position.
+       docstring contextMenu(int x, int y) const;
+
+       /// Save the current position as bookmark.
+       /// if idx == 0, save to temp_bookmark
+       void saveBookmark(unsigned int idx);
+       /// goto a specified position, try top_id first, and then bottom_pit.
+       /// \return true if success
+       bool moveToPosition(
+               pit_type bottom_pit, ///< Paragraph pit, used when par_id is zero or invalid.
+               pos_type bottom_pos, ///< Paragraph pit, used when par_id is zero or invalid.
+               int top_id, ///< Paragraph ID, \sa Paragraph
+               pos_type top_pos ///< Position in the \c Paragraph
+               );
+       /// return the current change at the cursor.
+       Change const getCurrentChange() const;
+
+       /// move cursor to the named label.
+       void gotoLabel(docstring const & label);
+
+       /// set the cursor based on the given TeX source row.
+       void setCursorFromRow(int row);
 
-       /// Save the current position as bookmark i
-       void savePosition(unsigned int i);
-       /// Restore the position from bookmark i
-       void restorePosition(unsigned int i);
-       /// does the given bookmark have a saved position ?
-       bool isSavedPosition(unsigned int i);
+       /// Ensure that the BufferView cursor is visible.
+       /// This method will automatically scroll and update the BufferView
+       /// if needed.
+       void showCursor();
+       /// Ensure the passed cursor \p dit is visible.
+       /// This method will automatically scroll and update the BufferView
+       /// if needed.
+       void showCursor(DocIterator const & dit);
+       /// LFUN_SCROLL Helper.
+       void lfunScroll(FuncRequest const & cmd);
+       /// scroll down document by the given number of pixels.
+       void scrollDown(int pixels);
+       /// scroll up document by the given number of pixels.
+       void scrollUp(int pixels);
+       /// scroll document by the given number of pixels.
+       void scroll(int pixels);
+       /// Scroll the view by a number of pixels.
+       void scrollDocView(int pixels);
+       /// Set the cursor position based on the scrollbar one.
+       void setCursorFromScrollbar();
+
+       /// return the pixel width of the document view.
+       int workWidth() const;
+       /// return the pixel height of the document view.
+       int workHeight() const;
 
-       /// return the current change at the cursor
-       Change const getCurrentChange();
+       /// return the inline completion postfix.
+       docstring const & inlineCompletion() const;
+       /// return the number of unique characters in the inline completion.
+       size_t const & inlineCompletionUniqueChars() const;
+       /// return the position in the buffer of the inline completion postfix.
+       DocIterator const & inlineCompletionPos() const;
+       /// set the inline completion postfix and its position in the buffer.
+       /// Updates the updateFlags in \c cur.
+       void setInlineCompletion(Cursor & cur, DocIterator const & pos,
+               docstring const & completion, size_t uniqueChars = 0);
+
+       /// translate and insert a character, using the correct keymap.
+       void translateAndInsert(char_type c, Text * t, Cursor & cur);
+
+       /// return true for events that will handle.
+       FuncStatus getStatus(FuncRequest const & cmd);
+       /// execute the given function.
+       /// \return true if the function has been processed.
+       bool dispatch(FuncRequest const & argument);
 
-       /// return the lyxtext we are using
-       LyXText * getLyXText() const;
+       /// request an X11 selection.
+       /// \return the selected string.
+       docstring const requestSelection();
+       /// clear the X11 selection.
+       void clearSelection();
 
-       /// update paragraph dialogs
-       void updateParagraphDialog();
+       /// resize the BufferView.
+       /// \sa WorkArea
+       void resize(int width, int height);
 
-       /// return the current encoding at the cursor
-       Encoding const * getEncoding() const;
+       /// dispatch method helper for \c WorkArea
+       /// \sa WorkArea
+       void mouseEventDispatch(FuncRequest const & ev);
 
-       /// return the parent language of the given inset
-       Language const * getParentLanguage(InsetOld * inset) const;
+       /// access to anchor.
+       pit_type anchor_ref() const;
 
-       /// replace the currently selected word
-       void replaceWord(std::string const & replacestring);
+       ///
+       CursorStatus cursorStatus(DocIterator const & dit) const;
+       /// access to full cursor.
+       Cursor & cursor();
+       /// access to full cursor.
+       Cursor const & cursor() const;
+       /// sets cursor.
+       /// This will also open all relevant collapsable insets.
+       void setCursor(DocIterator const &);
+       /// Check deleteEmptyParagraphMechanism and update metrics if needed.
+       /// \retval true if an update was needed.
+       bool checkDepm(Cursor & cur, Cursor & old);
+       /// sets cursor.
+       /// This is used when handling LFUN_MOUSE_PRESS.
+       bool mouseSetCursor(Cursor & cur, bool select = false);
+
+       /// sets the selection.
+       /* When \c backwards == false, set anchor
+        * to \c cur and cursor to \c cur + \c length. When \c
+        * backwards == true, set anchor to \c cur and cursor to \c
+        * cur + \c length.
+        */
+       void putSelectionAt(DocIterator const & cur,
+               int length, bool backwards);
 
-       /// move cursor to the named label
-       void gotoLabel(std::string const & label);
+       /// update the internal \c ViewMetricsInfo.
+       void updateMetrics();
 
-       /// undo last action
-       void undo();
-       /// redo last action
-       void redo();
+       ///
+       TextMetrics const & textMetrics(Text const * t) const;
+       TextMetrics & textMetrics(Text const * t);
+       ///
+       ParagraphMetrics const & parMetrics(Text const *, pit_type) const;
 
-       /// get the stored error list
-       ErrorList const & getErrorList() const;
-       /// show the error list to the user
-       void showErrorList(std::string const &) const;
-       /// set the cursor based on the given TeX source row
-       void setCursorFromRow(int row);
+       ///
+       CoordCache & coordCache();
+       ///
+       CoordCache const & coordCache() const;
 
-       /**
-        * Insert an inset into the buffer.
-        * Place it in a layout of lout,
-        */
-       bool insertInset(InsetOld * inset, std::string const & lout = std::string());
+       ///
+       Point getPos(DocIterator const & dit, bool boundary) const;
 
-       /// Inserts a lyx file at cursor position. return false if it fails
-       bool insertLyXFile(std::string const & file);
 
-       /// FIXME
-       bool fitLockedInsetCursor(int x, int y, int asc, int desc);
+       ///
+       void draw(frontend::Painter & pain);
 
-       /// hide the cursor if it is visible
-       void hideCursor();
+       /// get this view's keyboard map handler.
+       Intl & getIntl();
+       ///
+       Intl const & getIntl() const;
 
-       /// center the document view around the cursor
-       void center();
-       /// scroll document by the given number of lines of default height
-       void scroll(int lines);
-       /// Scroll the view by a number of pixels
-       void scrollDocView(int);
+       //
+       // Messages to the GUI
+       //
+       /// This signal is emitted when some message shows up.
+       void message(docstring const & msg);
 
-       /// return the pixel width of the document view
-       int workWidth() const;
-       /// return the pixel height of the document view
-       int workHeight() const;
+       /// This signal is emitted when some dialog needs to be shown.
+       void showDialog(std::string const & name);
 
-       /// switch between primary and secondary keymaps for RTL entry
-       void switchKeyMap();
+       /// This signal is emitted when some dialog needs to be shown with
+       /// some data.
+       void showDialog(std::string const & name, std::string const & data,
+               Inset * inset = 0);
 
-       /// FIXME
-       bool ChangeRefsIfUnique(std::string const & from, std::string const & to);
+       /// This signal is emitted when some dialogs needs to be updated.
+       void updateDialog(std::string const & name, std::string const & data);
 
-       /// get the contents of the window system clipboard
-       std::string const getClipboard() const;
-       /// fill the window system clipboard
-       void stuffClipboard(std::string const &) const;
-       /// tell the window system we have a selection
-       void haveSelection(bool sel);
+       ///
+       void setGuiDelegate(frontend::GuiBufferViewDelegate *);
 
-       /// 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 full cursor
-       LCursor & fullCursor();
-       /// access to full cursor
-       void fullCursor(LCursor const &);
-       /// access to full cursor
-       LCursor const & fullCursor() const;
-       /// access to topmost cursor slice
-       CursorSlice & cursor();
-       /// access to topmost cursor slice
-       CursorSlice const & cursor() const;
-       /// access to selection anchor
-       CursorSlice & anchor();
-       /// access to selection anchor
-       CursorSlice const & anchor() const;
-       ///
-       UpdatableInset * innerInset() const;
-       ///
-       LyXText * text() const;
-       /// 
-       void resetAnchor();
+       ///
+       docstring contentsOfPlaintextFile(support::FileName const & f);
+       // Insert plain text file (if filename is empty, prompt for one)
+       void insertPlaintextFile(support::FileName const & f, bool asParagraph);
+       ///
+       void insertLyXFile(support::FileName const & f);
 
 private:
+       /// noncopyable
+       BufferView(BufferView const &);
+       void operator=(BufferView const &);
+
+       // the position relative to (0, baseline) of outermost paragraph
+       Point coordOffset(DocIterator const & dit, bool boundary) const;
+       /// Update current paragraph metrics.
+       /// \return true if no further update is needed.
+       bool singleParUpdate();
+
+       /// Search recursively for the the innermost inset that covers (x, y) position.
+       /// \retval 0 if no inset is found.
+       Inset const * getCoveringInset(
+               Text const & text, //< The Text where we start searching.
+               int x, //< x-coordinate on screen
+               int y  //< y-coordinate on screen
+               ) const;
+
        ///
-       struct Pimpl;
+       int width_;
        ///
-       friend struct BufferView::Pimpl;
+       int height_;
        ///
-       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_;
+       bool full_screen_;
+       ///
+       Buffer & buffer_;
 
+       struct Private;
+       Private * const d;
 };
 
+/// some space for drawing the 'nested' markers (in pixel)
+inline int nestMargin() { return 15; }
+
+/// margin for changebar
+inline int changebarMargin() { return 12; }
+
+} // namespace lyx
+
 #endif // BUFFERVIEW_H