X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBufferView.h;h=74e29c6424681ff0048a9dc660bb8768acd0659f;hb=0ed820fa0b8ea11a390c182286c5b34a2686058a;hp=2478e609349857d2ae1ce47c28f8c8891caff053;hpb=90cfe4ec3b4ff22ef798a63e98ca70d0d33a1656;p=lyx.git diff --git a/src/BufferView.h b/src/BufferView.h index 2478e60934..74e29c6424 100644 --- a/src/BufferView.h +++ b/src/BufferView.h @@ -34,19 +34,18 @@ class Change; class CoordCache; class Cursor; class CursorSlice; +class Dimension; class DispatchResult; class DocIterator; -class DocumentClass; class FuncRequest; class FuncStatus; class Intl; class Inset; class Length; -class ParIterator; +class MathData; +class MathRow; class ParagraphMetrics; class Point; -class Row; -class TexRow; class Text; class TextMetrics; @@ -102,9 +101,12 @@ public: /// right margin int rightMargin() const; - /// left margin int leftMargin() const; + /// top margin + int topMargin() const; + /// bottom margin + int bottomMargin() const; /// return the on-screen size of this length /* @@ -146,11 +148,6 @@ public: int horizScrollOffset(Text const * text, pit_type pit, pos_type pos) const; - // Returns true if the row of text starting at (pit, pos) was scrolled - // at the last draw event. - bool hadHorizScrollOffset(Text const * text, - pit_type pit, pos_type pos) const; - /// reset the scrollbar to reflect current view position. void updateScrollbar(); /// return the Scrollbar Parameters. @@ -221,7 +218,7 @@ public: /// return the inline completion postfix. docstring const & inlineCompletion() const; /// return the number of unique characters in the inline completion. - size_t const & inlineCompletionUniqueChars() const; + size_t inlineCompletionUniqueChars() const; /// return the position in the buffer of the inline completion postfix. DocIterator const & inlineCompletionPos() const; /// make sure inline completion position is OK @@ -241,7 +238,7 @@ public: /// request an X11 selection. /// \return the selected string. - docstring const requestSelection(); + docstring requestSelection(); /// clear the X11 selection. void clearSelection(); @@ -301,16 +298,19 @@ public: /// CoordCache const & coordCache() const; + /// + MathRow const & mathRow(MathData const * cell) const; + /// + void setMathRow(MathData const * cell, MathRow const & mrow); + /// Point getPos(DocIterator const & dit) const; /// is the paragraph of the cursor visible ? bool paragraphVisible(DocIterator const & dit) const; - /// is the cursor currently visible in the view - bool cursorInView(Point const & p, int h) const; - /// set the ascent and descent of the caret - void setCaretAscentDescent(int asc, int des); + /// is the caret currently visible in the view + bool caretInView() const; /// get the position and height of the caret - void caretPosAndHeight(Point & p, int & h) const; + void caretPosAndDim(Point & p, Dimension & dim) const; /// void draw(frontend::Painter & pain, bool paint_caret); @@ -332,7 +332,7 @@ public: /// 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); + Inset * inset = nullptr); /// This signal is emitted when some dialogs needs to be updated. void updateDialog(std::string const & name, std::string const & data); @@ -345,7 +345,7 @@ public: // 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); + void insertLyXFile(support::FileName const & f, bool const ignorelang = false); /// save temporary bookmark for jump back navigation void bookmarkEditPosition(); /// Find and return the inset associated with given dialog name.