]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetText.h
Allow LyX format to be written to View>Source window.
[lyx.git] / src / insets / InsetText.h
index ebb11a29f1c165fe1ab55d3a767d72ff1beb5763..0110adf867a999ea9792f7bd6b0a207d502124ff 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,14 @@ 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 setMacrocontextPositionRecursive(DocIterator const & pos);
        ///
-       void addToToc(DocIterator const &);
+       void toString(odocstream &) const;
+       ///
+       void forToc(docstring &, size_t) const;
+       ///
+       void addToToc(DocIterator const &) const;
        ///
        Inset * clone() const { return new InsetText(*this); }
        ///
@@ -193,10 +197,15 @@ public:
        /// returns the text to be used as tooltip
        /// \param prefix: a string that will preced the tooltip,
        /// e.g., "Index: ".
-       docstring toolTipText(docstring prefix = empty_docstring()) const;
+       /// \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;
 
        ///
-       docstring contextMenuName() const;
+       std::string contextMenu(BufferView const &, int, int) const;
+       ///
+       std::string contextMenuName() const;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
 protected: