]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetText.h
#7379 avoid the wrap spell check question when buffer is empty
[lyx.git] / src / insets / InsetText.h
index 5743be2f518a6bb04f82b8e7ff5ce4ca6f4e31ac..1f643c029fcc9a606ad35e576508e46bf05ceaea 100644 (file)
@@ -73,7 +73,7 @@ public:
        Text & text() { return text_; }
        Text const & text() const { return text_; }
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
@@ -163,10 +163,12 @@ public:
 
        /// Update the counters of this inset and of its contents
        virtual void updateBuffer(ParIterator const &, UpdateType);
-       /// the string that is passed to the TOC
-       void tocString(odocstream &) const;
+       /// 
+       void toString(odocstream &) const;
        ///
-       void addToToc(DocIterator const &);
+       void forToc(docstring &, size_t) const;
+       ///
+       void addToToc(DocIterator const &) const;
        ///
        Inset * clone() const { return new InsetText(*this); }
        ///
@@ -191,10 +193,17 @@ public:
        ///
        void completionPosAndDim(Cursor const &, int & x, int & y, Dimension & dim) const;
        /// returns the text to be used as tooltip
-       docstring toolTipText() const;
+       /// \param prefix: a string that will preced the tooltip,
+       /// e.g., "Index: ".
+       /// \param numlines: the number of lines in the tooltip
+       /// \param len: length of those lines
+       docstring toolTipText(docstring prefix = empty_docstring(),
+                       size_t numlines = 5, size_t len = 80) const;
 
        ///
-       virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
+       docstring contextMenu(BufferView const &, int, int) const;
+       ///
+       docstring contextMenuName() const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
 protected: