X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbuffer.h;h=280fc05c8d23b3eb5c279cd1e7115bb9c00f1fd0;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=a58eb3f79e0dc76b123c44085ae7dffebb6428a4;hpb=eaa81aa13efc832ec9080556c496e6912cb1c058;p=lyx.git diff --git a/src/buffer.h b/src/buffer.h index a58eb3f79e..280fc05c8d 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -54,6 +54,7 @@ class ParConstIterator; class ParIterator; class TeXErrors; class TexRow; +class TocBackend; class Undo; class StableDocIterator; @@ -119,7 +120,7 @@ public: bool hasParWithID(int id) const; /// This signal is emitted when the buffer is changed. - boost::signal changed; + boost::signal changed; /// This signal is emitted when some parsing error shows up. boost::signal errors; /// This signal is emitted when some message shows up. @@ -146,7 +147,7 @@ public: bool writeFile(std::string const &) const; /// Just a wrapper for the method below, first creating the ofstream. - void makeLaTeXFile(std::string const & filename, + bool makeLaTeXFile(std::string const & filename, std::string const & original_path, OutputParams const &, bool output_preamble = true, @@ -169,6 +170,8 @@ public: Language const * getLanguage() const; /// get l10n translated to the buffers language docstring const B_(std::string const & l10n) const; + /// translate \p label to the buffer language if possible + docstring const translateLabel(docstring const & label) const; /// int runChktex(); @@ -355,6 +358,11 @@ public: ErrorList & errorList(std::string const & type); //@} + //@{ + TocBackend & tocBackend(); + TocBackend const & tocBackend() const; + //@} + private: /** Inserts a file into a document \return \c false if method fails.