]> git.lyx.org Git - features.git/blobdiff - src/lyxtext.h
Introducing a number of tags parametrizing various
[features.git] / src / lyxtext.h
index b662e0859449cba52d7618ad42217ceaed3bd198..ba8329128fc57ca9e891c991864d371e0bbe282d 100644 (file)
@@ -18,6 +18,7 @@
 #include "Bidi.h"
 #include "layout.h"
 #include "lyxfont.h"
+#include "lyxtextclass.h"
 #include "ParagraphList_fwd.h"
 #include "RowList_fwd.h"
 #include "textcursor.h"
@@ -49,26 +50,16 @@ class VSpace;
 // The inheritance from TextCursor should go. It's just there to ease
 // transition...
 class LyXText : public TextCursor {
+       // Public Functions
 public:
        /// Constructor
        LyXText(BufferView *, InsetText *, bool ininset, ParagraphList & plist);
-
-       void init(BufferView *);
-       ///
-       int height;
-       ///
-       unsigned int width;
-       /// the current font settings
-       LyXFont current_font;
-       /// the current font
-       LyXFont real_current_font;
-       /// our buffer's default layout font
-       LyXFont defaultfont_;
        ///
-       InsetText * inset_owner;
+       void init(BufferView *);
 
-       /// update all cached row positions
-       void updateRowPositions();
+
+       /// update y coordinate cache of all paragraphs
+       void updateParPositions();
        ///
        LyXFont getFont(ParagraphList::iterator pit, lyx::pos_type pos) const;
        ///
@@ -120,10 +111,6 @@ public:
 
        /// rebreaks the cursor par
        void redoParagraph();
-private:
-       /// rebreaks the given par
-       void redoParagraphInternal(ParagraphList::iterator pit);
-public:
 
        ///
        void toggleFree(LyXFont const &, bool toggleall = false);
@@ -152,10 +139,6 @@ public:
 
        friend class LyXScreen;
 
-public:
-       /// only the top-level LyXText has this non-zero
-       BufferView * bv_owner;
-
        /// returns an iterator pointing to a cursor paragraph
        ParagraphList::iterator getPar(LyXCursor const & cursor) const;
        ///
@@ -167,9 +150,9 @@ public:
        ///
        RowList::iterator cursorRow() const;
 
-       /** returns a pointer to the row near the specified y-coordinate
-         (relative to the whole text). y is set to the real beginning
-         of this row
+       /** returns an iterator pointing to the row near the specified
+         * y-coordinate (relative to the whole text). y is set to the
+         * real beginning of this row
          */
        RowList::iterator getRowNearY(int y,
                ParagraphList::iterator & pit) const;
@@ -227,9 +210,9 @@ public:
        ///
        void cursorDown(bool selecting = false);
        ///
-       void cursorLeft(bool internal = true);
+       bool cursorLeft(bool internal = true);
        ///
-       void cursorRight(bool internal = true);
+       bool cursorRight(bool internal = true);
        ///
        void cursorLeftOneWord();
        ///
@@ -317,33 +300,12 @@ public:
        ///
        void gotoInset(InsetOld::Code code, bool same_content);
 
-       ///
-       int workWidth() const;
+       /// current max text width
+       int textWidth() const;
 
-private:
-       ///
-       float getCursorX(ParagraphList::iterator pit,
-            Row const & row, lyx::pos_type pos, bool boundary) const;
-       /// used in setlayout
-       void makeFontEntriesLayoutSpecific(BufferParams const &, Paragraph & par);
-
-       /// Calculate and set the height of the row
-       void setHeightOfRow(ParagraphList::iterator, Row & row);
-
-       // fix the cursor `cur' after a characters has been deleted at `where'
-       // position. Called by deleteEmptyParagraphMechanism
-       void fixCursorAfterDelete(LyXCursor & cur, LyXCursor const & where);
-
-       /// delete double space (false) or empty paragraphs (true) around old_cursor
-       bool deleteEmptyParagraphMechanism(LyXCursor const & old_cursor);
-
-public:
-       /** Updates all counters starting BEHIND the row. Changed paragraphs
-        * with a dynamic left margin will be rebroken. */
+       /// updates all counters
        void updateCounters();
-       /**
-        * Returns an inset if inset was hit, or 0 if not.
-        */
+       /// Returns an inset if inset was hit, or 0 if not.
        InsetOld * checkInsetHit(int x, int y);
 
        ///
@@ -361,54 +323,15 @@ public:
         * in LaTeX the beginning of the text fits in some cases
         * (for example sections) exactly the label-width.
         */
-       int leftMargin(ParagraphList::iterator pit, Row const & row) const;
+       int leftMargin(ParagraphList::iterator pit, lyx::pos_type pos) const;
+       int leftMargin(ParagraphList::iterator pit) const;
        ///
-       int rightMargin(Paragraph const & par, Buffer const &) const;
+       int rightMargin(Paragraph const & par) const;
 
        /** this calculates the specified parameters. needed when setting
         * the cursor and when creating a visible row */
        void prepareToPrint(ParagraphList::iterator pit, Row & row) const;
 
-private:
-       ///
-       void setCounter(Buffer const &, ParagraphList::iterator pit);
-       ///
-       void deleteWordForward();
-       ///
-       void deleteWordBackward();
-       ///
-       void deleteLineForward();
-
-       /// sets row.end to the pos value *after* which a row should break.
-       /// for example, the pos after which isNewLine(pos) == true
-       void rowBreakPoint(ParagraphList::iterator pit, Row & row) const;
-
-       /// sets row.witdh to the minimum space a row needs on the screen in pixel
-       void fill(ParagraphList::iterator pit, Row & row, int workwidth) const;
-
-       /**
-        * returns the minimum space a manual label needs on the
-        * screen in pixels
-        */
-       int labelFill(ParagraphList::iterator pit, Row const & row) const;
-
-       /// FIXME
-       int labelEnd(ParagraphList::iterator pit, Row const & row) const;
-
-       ///
-       void charInserted();
-       /// set 'number' font property
-       void number();
-       /// is the cursor paragraph right-to-left?
-       bool rtl() const;
-
-public:
-       ///
-       mutable Bidi bidi;
-       ///
-       bool in_inset_;
-       ///
-       ParagraphList * paragraphs_;
        //
        // special owner functions
        ///
@@ -417,6 +340,13 @@ public:
        /// return true if this is owned by an inset.
        bool isInInset() const;
 
+       ///
+       ParagraphList::iterator firstPar() const;
+       ///
+       ParagraphList::iterator lastPar() const;
+       ///
+       ParagraphList::iterator endPar() const;
+       
        /// return first row of text
        RowList::iterator firstRow() const;
        /// return last row of text
@@ -444,21 +374,113 @@ public:
        ///
        void cursorRightOneWord(LyXCursor &);
 
+       ///
+       DispatchResult moveRight();
+       ///
+       DispatchResult moveLeft();
+       ///
+       DispatchResult moveRightIntern(bool front,
+               bool activate_inset, bool selecting);
+       ///
+       DispatchResult moveLeftIntern(bool front,
+               bool activate_inset, bool selecting);
+       ///
+       DispatchResult moveUp();
+       ///
+       DispatchResult moveDown();
+       ///
+       bool checkAndActivateInset(bool front);
+
+
+public:
+       ///
+       int height;
+       ///
+       unsigned int width;
+       ///
+       int textwidth_;
+       /// the current font settings
+       LyXFont current_font;
+       /// the current font
+       LyXFont real_current_font;
+       /// our buffer's default layout font
+       LyXFont defaultfont_;
+       ///
+       InsetText * inset_owner;
+
+       /// only the top-level LyXText has this non-zero
+       BufferView * bv_owner;
+
+       ///
+       mutable Bidi bidi;
+       ///
+       bool in_inset_;
+       ///
+       ParagraphList * paragraphs_;
+
+       /// absolute document pixel coordinates of this LyXText
+       int xo_;
+       int yo_;
+
+
 private:
-       /** Cursor related data.
-         Later this variable has to be removed. There should be now internal
-         cursor in a text */
+       /// rebreaks the given par
+       void redoParagraphInternal(ParagraphList::iterator pit);
+
        ///
-       ///TextCursor cursor_;
-       /// prohibit this as long as there are back pointers...
-       LyXText(LyXText const &);
+       float getCursorX(ParagraphList::iterator pit,
+            Row const & row, lyx::pos_type pos, bool boundary) const;
+       /// used in setlayout
+       void makeFontEntriesLayoutSpecific(BufferParams const &, Paragraph & par);
+
+       /// Calculate and set the height of the row
+       void setHeightOfRow(ParagraphList::iterator, Row & row);
+
+       // fix the cursor `cur' after a characters has been deleted at `where'
+       // position. Called by deleteEmptyParagraphMechanism
+       void fixCursorAfterDelete(LyXCursor & cur, LyXCursor const & where);
+
+       /// delete double space (false) or empty paragraphs (true) around old_cursor
+       bool deleteEmptyParagraphMechanism(LyXCursor const & old_cursor);
+
+       ///
+       void setCounter(Buffer const &, ParagraphList::iterator pit);
+       ///
+       void deleteWordForward();
+       ///
+       void deleteWordBackward();
+       ///
+       void deleteLineForward();
+
+       /// sets row.end to the pos value *after* which a row should break.
+       /// for example, the pos after which isNewLine(pos) == true
+       void rowBreakPoint(ParagraphList::iterator pit, Row & row) const;
+
+       /// sets row.witdh to the minimum space a row needs on the screen in pixel
+       void fill(ParagraphList::iterator pit, Row & row, int workwidth) const;
 
-       // cache for cursorPar()
-       mutable ParagraphList::iterator cache_par_;
-       mutable int cache_pos_;
+       /**
+        * returns the minimum space a manual label needs on the
+        * screen in pixels
+        */
+       int labelFill(ParagraphList::iterator pit, Row const & row) const;
+
+       /// FIXME
+       int labelEnd(ParagraphList::iterator pit) const;
+
+       ///
+       void charInserted();
+       /// set 'number' font property
+       void number();
+       /// is the cursor paragraph right-to-left?
+       bool rtl() const;
 };
 
 /// return the default height of a row in pixels, considering font zoom
 extern int defaultRowHeight();
 
+///
+std::string expandLabel(LyXTextClass const & textclass,
+               LyXLayout_ptr const & layout, bool appendix);
+
 #endif // LYXTEXT_H