X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FText.h;h=0ebc1eeace21fc92b40aa046facff4d2075a9106;hb=6b651f2ad9f698c01993dcc6e340682c279f1c55;hp=ba665b7f3bdc4667314701d61ab7c1e6d0fd11ca;hpb=d35d25460b57c14e67a26c593881dfff31b35da5;p=lyx.git diff --git a/src/Text.h b/src/Text.h index ba665b7f3b..0ebc1eeace 100644 --- a/src/Text.h +++ b/src/Text.h @@ -14,16 +14,9 @@ #ifndef TEXT_H #define TEXT_H -#include "Bidi.h" -#include "DispatchResult.h" -#include "Font.h" -#include "Layout.h" -#include "lyxlayout_ptr_fwd.h" +#include "DocIterator.h" #include "ParagraphList.h" -#include - - namespace lyx { class Buffer; @@ -32,11 +25,13 @@ class BufferView; class CursorSlice; class DocIterator; class ErrorList; +class Font; +class FontInfo; class FuncRequest; class FuncStatus; class Inset; -class Color_color; class Cursor; +class Lexer; class PainterInfo; class Spacing; @@ -53,9 +48,9 @@ public: bool empty() const; /// - Font getLayoutFont(Buffer const & buffer, pit_type pit) const; + FontInfo getLayoutFont(Buffer const & buffer, pit_type pit) const; /// - Font getLabelFont(Buffer const & buffer, + FontInfo getLabelFont(Buffer const & buffer, Paragraph const & par) const; /** Set font of character at position \p pos in paragraph \p pit. * Must not be called if \p pos denotes an inset with text contents, @@ -75,7 +70,7 @@ public: Font const & font, bool toggleall = false); /// what you expect when pressing \ at cursor position - void breakParagraph(Cursor & cur, bool keep_layout = false); + void breakParagraph(Cursor & cur, bool inverse_logic = false); /// set layout over selection void setLayout(Buffer const & buffer, pit_type start, pit_type end, @@ -169,20 +164,20 @@ public: /// void recUndo(Cursor & cur, pit_type first) const; - /// Move cursor one position left + /// Move cursor one position backwards /** * Returns true if an update is needed after the move. */ - bool cursorLeft(Cursor & cur); - /// Move cursor one position right + bool cursorBackward(Cursor & cur); + /// Move cursor one position forward /** * Returns true if an update is needed after the move. */ - bool cursorRight(Cursor & cur); + bool cursorForward(Cursor & cur); /// - bool cursorLeftOneWord(Cursor & cur); + bool cursorBackwardOneWord(Cursor & cur); /// - bool cursorRightOneWord(Cursor & cur); + bool cursorForwardOneWord(Cursor & cur); /// Delete from cursor up to the end of the current or next word. void deleteWordForward(Cursor & cur); /// Delete from cursor to start of current or prior word. @@ -206,15 +201,6 @@ public: bool dissolveInset(Cursor & cur); /// bool selectWordWhenUnderCursor(Cursor & cur, word_location); - /// - enum TextCase { - /// - text_lowercase = 0, - /// - text_capitalization = 1, - /// - text_uppercase = 2 - }; /// Change the case of the word at cursor position. void changeCase(Cursor & cur, TextCase action); /// Transposes the character at the cursor with the one before it @@ -272,6 +258,14 @@ public: /// from \first to \last paragraph void deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool trackChanges); + /// To resolve macros properly the texts get their DocIterator. + /// Every macro definition is stored with its DocIterator + /// as well. Only those macros with a smaller iterator become + /// visible in a paragraph. + DocIterator macrocontextPosition() const; + /// + void setMacrocontextPosition(DocIterator const & pos); + public: /// ParagraphList pars_; @@ -293,7 +287,7 @@ private: /// handle the case where bibitems were deleted bool handleBibitems(Cursor & cur); /// - void charInserted(); + void charInserted(Cursor & cur); /// set 'number' font property void number(Cursor & cur); @@ -302,6 +296,9 @@ private: /// \param asParagraphs whether to paste as paragraphs or as lines void pasteString(Cursor & cur, docstring const & str, bool asParagraphs); + + /// position of the text in the buffer. + DocIterator macrocontext_position_; }; } // namespace lyx