X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Flyxtext.h;h=5bf93d8278def4cd6aa4c2fee3d53d6eeb340f40;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=75cb8021144e4c227a23e6b7848d12e05d2257f1;hpb=d06475855c85e16fec9b708779509cab1dd3a470;p=lyx.git diff --git a/src/lyxtext.h b/src/lyxtext.h index 75cb802114..5bf93d8278 100644 --- a/src/lyxtext.h +++ b/src/lyxtext.h @@ -96,7 +96,9 @@ public: /// Set font over selection paragraphs and rebreak. void setFont(LCursor & cur, LyXFont const &, bool toggleall = false); - /// rebreaks the given par + /// Rebreaks the given paragraph. + /// \retval true if a full screen redraw is needed. + /// \retval false if a single paragraph redraw is enough. bool redoParagraph(BufferView &, pit_type pit); /// returns pos in given par at given x coord @@ -178,8 +180,15 @@ public: void recUndo(LCursor & cur, pit_type first) const; /// returns true if par was empty and was removed bool setCursorFromCoordinates(LCursor & cur, int x, int y); - /// + + /// sets cursor recursively descending into nested editable insets + /** + \return the inset pointer if x,y is covering that inset + \param x,y are absolute screen coordinates. + \retval inset is non-null if the cursor is positionned inside + */ InsetBase * editXY(LCursor & cur, int x, int y); + /// Move cursor one line up. /** * Returns true if an update is needed after the move. @@ -244,6 +253,8 @@ public: }; /// Change the case of the word at cursor position. void changeCase(LCursor & cur, TextCase action); + /// Transposes the character at the cursor with the one before it + void charsTranspose(LCursor & cur); /** the DTP switches for paragraphs. LyX will store the top settings always in the first physical paragraph, the bottom settings in the @@ -253,7 +264,7 @@ public: void setParagraph(LCursor & cur, Spacing const & spacing, LyXAlignment align, - std::string const & labelwidthstring, + docstring const & labelwidthstring, bool noindent); /* these things are for search and replace */ @@ -315,7 +326,7 @@ public: /// double spacing(Buffer const & buffer, Paragraph const & par) const; /// make a suggestion for a label - std::string getPossibleLabel(LCursor & cur) const; + docstring getPossibleLabel(LCursor & cur) const; /// is this paragraph right-to-left? bool isRTL(Buffer const &, Paragraph const & par) const; /// @@ -383,7 +394,8 @@ private: /// sets row.end to the pos value *after* which a row should break. /// for example, the pos after which isNewLine(pos) == true - void rowBreakPoint(Buffer const &, pit_type pit, Row & row) const; + void rowBreakPoint(Buffer const &, int right_margin, pit_type pit, + Row & row) const; /// sets row.width to the minimum space a row needs on the screen in pixel void setRowWidth(Buffer const &, pit_type pit, Row & row) const; /// the minimum space a manual label needs on the screen in pixels