]> git.lyx.org Git - lyx.git/blobdiff - src/lyxtext.h
Alfredo's second patch
[lyx.git] / src / lyxtext.h
index fc1a76e12769135ed275828b6b890207b117b3fe..7e44bfb02ce1c21cc425cecbb0a62628554ba846 100644 (file)
@@ -1,13 +1,15 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
+/**
+ * \file lyxtext.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+ * \author unknown
+ * \author Lars Gullik Bjønnes
+ * \author John Levon
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef LYXTEXT_H
 #define LYXTEXT_H
@@ -18,6 +20,7 @@
 #include "LColor.h"
 #include "insets/inset.h"
 #include "RowList.h"
+#include "bufferview_funcs.h"
 
 class Buffer;
 class BufferParams;
@@ -80,17 +83,19 @@ private:
        /** the 'anchor' row: the position of this row remains constant
         *  with respect to the top of the screen
         */
-       Row * anchor_row_;
+       RowList::iterator anchor_row_;
        /** the pixel offset with respect to this row of top_y
         */
        int anchor_row_offset_;
 public:
+       /// update all cached row positions
+       void updateRowPositions();
        /// get the y coord. of the top of the screen (relative to doc start)
        int top_y() const;
        /// set the y coord. of the top of the screen (relative to doc start)
        void top_y(int newy);
        /// set the anchoring row. top_y will be computed relative to this
-       void anchor_row(Row * row);
+       void anchor_row(RowList::iterator rit);
        ///
        InsetText * inset_owner;
        ///
@@ -99,41 +104,43 @@ public:
        ///
        int getRealCursorX() const;
        ///
-       LyXFont const getFont(Buffer const *, Paragraph * par,
+       LyXFont const getFont(Buffer const *, ParagraphList::iterator pit,
                lyx::pos_type pos) const;
        ///
-       LyXFont const getLayoutFont(Buffer const *, Paragraph * par) const;
+       LyXFont const getLayoutFont(Buffer const *,
+                                   ParagraphList::iterator pit) const;
        ///
-       LyXFont const getLabelFont(Buffer const *, Paragraph * par) const;
+       LyXFont const getLabelFont(Buffer const *,
+                                  ParagraphList::iterator pit) const;
        ///
-       void setCharFont(Buffer const *, Paragraph * par,
+       void setCharFont(Buffer const *, ParagraphList::iterator pit,
                         lyx::pos_type pos, LyXFont const & font);
-       void setCharFont(Paragraph * par,
-                        lyx::pos_type pos, LyXFont const & font, bool toggleall);
+       void setCharFont(ParagraphList::iterator pit,
+                        lyx::pos_type pos,
+                        LyXFont const & font, bool toggleall);
 
        ///
-       void breakAgainOneRow(Row * row);
+       void breakAgainOneRow(RowList::iterator rit);
        /// what you expect when pressing <enter> at cursor position
        void breakParagraph(ParagraphList & paragraphs, char keep_layout = 0);
 
        /** set layout over selection and make a total rebreak of
          those paragraphs
          */
-       Paragraph * setLayout(LyXCursor & actual_cursor,
-                             LyXCursor & selection_start,
-                             LyXCursor & selection_end,
-                             string const & layout);
+       ParagraphList::iterator
+       setLayout(LyXCursor & actual_cursor,
+                 LyXCursor & selection_start,
+                 LyXCursor & selection_end,
+                 string const & layout);
        ///
        void setLayout(string const & layout);
 
-       /** increment depth over selection and make a total rebreak of those
-         paragraphs
-         */
-       void incDepth();
-
-       /** decrement depth over selection and make a total rebreak of those
-         paragraphs */
-       void decDepth();
+       /**
+        * Increase or decrease the nesting depth of the selected paragraph(s)
+        * if test_only, don't change any depths. Returns whether something
+        * (would have) changed
+        */
+       bool changeDepth(bv_funcs::DEPTH_CHANGE type, bool test_only);
 
        /// get the depth at current cursor position
        int getDepth() const;
@@ -150,7 +157,7 @@ public:
          This function is needed after SetLayout and SetFont etc.
          */
        void redoParagraphs(LyXCursor const & cursor,
-                           Paragraph const * end_par);
+                           ParagraphList::iterator endpit);
        ///
        void redoParagraph();
 
@@ -177,7 +184,7 @@ public:
        void fullRebreak();
 
        ///
-       Row * need_break_row;
+       RowList::iterator need_break_row;
 
        /// clear any pending paints
        void clearPaint();
@@ -190,7 +197,7 @@ public:
        /**
         * Mark the given row at position y as needing a repaint.
         */
-       void postRowPaint(Row * row, int start_y);
+       void postRowPaint(RowList::iterator rit, int start_y);
 
        ///
        Inset::RESULT dispatch(FuncRequest const & cmd);
@@ -221,7 +228,7 @@ private:
         * This must be set if the pending update is REFRESH_ROW.
         * It doesn't make any difference for REFRESH_AREA.
         */
-       Row * refresh_row;
+       RowList::iterator refresh_row;
 
        refresh_status refresh_status_;
 
@@ -233,23 +240,21 @@ public:
          (relative to the whole text). y is set to the real beginning
          of this row
          */
-       Row * getRowNearY(int & y) const;
+       RowList::iterator getRowNearY(int & y) const;
 
        /** returns the column near the specified x-coordinate of the row
         x is set to the real beginning of this column
         */
-       lyx::pos_type getColumnNearX(Row * row,
-                                           int & x, bool & boundary) const;
+       lyx::pos_type getColumnNearX(RowList::iterator rit,
+                                    int & x, bool & boundary) const;
 
        /** returns a pointer to a specified row. y is set to the beginning
         of the row
         */
-       Row * getRow(Paragraph * par, lyx::pos_type pos, int & y) const;
+       RowList::iterator
+       getRow(ParagraphList::iterator pit, lyx::pos_type pos, int & y) const;
 
-       RowList & rows() {
-               return rowlist_;
-       }
-       RowList const & rows() const {
+       RowList & rows() const {
                return rowlist_;
        }
 
@@ -331,16 +336,16 @@ public:
        ///
        void selectSelectedWord();
        /// returns true if par was empty and was removed
-       bool setCursor(Paragraph * par,
+       bool setCursor(ParagraphList::iterator pit,
                       lyx::pos_type pos,
                       bool setfont = true,
                       bool boundary = false);
        ///
-       void setCursor(LyXCursor &, Paragraph * par,
+       void setCursor(LyXCursor &, ParagraphList::iterator pit,
                       lyx::pos_type pos,
                       bool boundary = false);
        ///
-       void setCursorIntern(Paragraph * par,
+       void setCursorIntern(ParagraphList::iterator pit,
                             lyx::pos_type pos,
                             bool setfont = true,
                             bool boundary = false);
@@ -348,10 +353,10 @@ public:
        void setCurrentFont();
 
        ///
-       bool isBoundary(Buffer const *, Paragraph * par,
+       bool isBoundary(Buffer const *, Paragraph const & par,
                        lyx::pos_type pos) const;
        ///
-       bool isBoundary(Buffer const *, Paragraph * par,
+       bool isBoundary(Buffer const *, Paragraph const & par,
                         lyx::pos_type pos,
                         LyXFont const & font) const;
 
@@ -385,8 +390,6 @@ public:
        ///
        void cursorNext();
        ///
-       void cursorTab();
-       ///
        void cursorTop();
        ///
        void cursorBottom();
@@ -407,8 +410,6 @@ public:
        };
        /// Change the case of the word at cursor position.
        void changeCase(TextCase action);
-       ///
-       void transposeChars();
 
        ///
        void toggleInset();
@@ -418,10 +419,6 @@ public:
        void copySelection();
        ///
        void pasteSelection();
-       ///
-       void copyEnvironmentType();
-       ///
-       void pasteEnvironmentType();
 
        /** the DTP switches for paragraphs. LyX will store the top settings
         always in the first physical paragraph, the bottom settings in the
@@ -471,14 +468,14 @@ public:
        /// returns false if inset wasn't found
        bool updateInset(Inset *);
        ///
-       void checkParagraph(Paragraph * par, lyx::pos_type pos);
+       void checkParagraph(ParagraphList::iterator pit, lyx::pos_type pos);
        ///
        int workWidth() const;
        ///
        int workWidth(Inset * inset) const;
 
        ///
-       void computeBidiTables(Buffer const *, Row * row) const;
+       void computeBidiTables(Buffer const *, RowList::iterator row) const;
        /// Maps positions in the visual string to positions in logical string.
        lyx::pos_type log2vis(lyx::pos_type pos) const;
        /// Maps positions in the logical string to positions in visual string.
@@ -489,12 +486,12 @@ public:
        bool bidi_InRange(lyx::pos_type pos) const;
 private:
        ///
-       RowList rowlist_;
+       mutable RowList rowlist_;
        ///
        void cursorLeftOneWord(LyXCursor &);
 
        ///
-       float getCursorX(Row *, lyx::pos_type pos,
+       float getCursorX(RowList::iterator rit, lyx::pos_type pos,
                         lyx::pos_type last, bool boundary) const;
        /// used in setlayout
        void makeFontEntriesLayoutSpecific(Buffer const &, Paragraph & par);
@@ -504,29 +501,24 @@ private:
            */
        void redoDrawingOfParagraph(LyXCursor const & cursor);
 
-       /** Copybuffer for copy environment type.
-         Asger has learned that this should be a buffer-property instead
-         Lgb has learned that 'char' is a lousy type for non-characters
-         */
-       string copylayouttype;
-
        /// removes the row and reset the touched counters
-       void removeRow(Row * row);
+       void removeRow(RowList::iterator rit);
 
        /// remove all following rows of the paragraph of the specified row.
-       void removeParagraph(Row * row);
+       void removeParagraph(RowList::iterator rit);
 
        /// insert the specified paragraph behind the specified row
-       void insertParagraph(Paragraph * par, RowList::iterator rowit);
+       void insertParagraph(ParagraphList::iterator pit,
+                            RowList::iterator rowit);
 
        /** appends  the implizit specified paragraph behind the specified row,
         * start at the implizit given position */
        void appendParagraph(RowList::iterator rowit);
 
        ///
-       void breakAgain(Row * row);
+       void breakAgain(RowList::iterator rit);
        /// Calculate and set the height of the row
-       void setHeightOfRow(Row * row_ptr);
+       void setHeightOfRow(RowList::iterator rit);
 
        // fix the cursor `cur' after a characters has been deleted at `where'
        // position. Called by deleteEmptyParagraphMechanism
@@ -549,10 +541,10 @@ public:
        Inset * checkInsetHit(int & x, int & y);
 
        ///
-       int singleWidth(Paragraph * par,
+       int singleWidth(ParagraphList::iterator pit,
                lyx::pos_type pos) const;
        ///
-       int singleWidth(Paragraph * par,
+       int singleWidth(ParagraphList::iterator pit,
                lyx::pos_type pos, char c) const;
 
        /// return the color of the canvas
@@ -561,7 +553,7 @@ public:
        ///
        mutable bool bidi_same_direction;
 
-       unsigned char transformChar(unsigned char c, Paragraph * par,
+       unsigned char transformChar(unsigned char c, Paragraph const & par,
                                    lyx::pos_type pos) const;
 
        /**
@@ -570,13 +562,13 @@ public:
         * in LaTeX the beginning of the text fits in some cases
         * (for example sections) exactly the label-width.
         */
-       int leftMargin(Row const * row) const;
+       int leftMargin(Row const & row) const;
        ///
        int rightMargin(Buffer const &, Row const & row) const;
 
        /** this calculates the specified parameters. needed when setting
         * the cursor and when creating a visible row */
-       void prepareToPrint(Row * row, float & x,
+       void prepareToPrint(RowList::iterator row, float & x,
                            float & fill_separator,
                            float & fill_hfill,
                            float & fill_label_hfill,
@@ -584,7 +576,7 @@ public:
 
 private:
        ///
-       void setCounter(Buffer const *, Paragraph * par);
+       void setCounter(Buffer const *, ParagraphList::iterator pit);
        ///
        void deleteWordForward();
        ///
@@ -602,7 +594,7 @@ private:
        lyx::pos_type rowBreakPoint(Row const & row) const;
 
        /// returns the minimum space a row needs on the screen in pixel
-       int fill(Row & row, int workwidth) const;
+       int fill(RowList::iterator row, int workwidth) const;
 
        /**
         * returns the minimum space a manual label needs on the
@@ -630,11 +622,7 @@ public:
        //
        // special owner functions
        ///
-       Paragraph * ownerParagraph() const;
-       //
-       void ownerParagraph(Paragraph *) const;
-       // set it searching first for the right owner using the paragraph id
-       void ownerParagraph(int id, Paragraph *) const;
+       ParagraphList & ownerParagraphs() const;
 
        /// return true if this is owned by an inset.
        bool isInInset() const;