X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=93d172068604fd7b1215cb0e0405b2e8602647eb;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=84f9a8047ed5e30b52ff3d00ad056c97c4ddeeb4;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index 84f9a8047e..93d1720686 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -14,10 +14,14 @@ #include +#include #include + +namespace lyx { + class Buffer; -class LatexRunParams; +class OutputParams; /** * The class holds all all open buffers, and handles construction @@ -43,7 +47,7 @@ public: std::vector const getFileNames() const; /// FIXME - void updateIncludedTeXfiles(std::string const &, LatexRunParams const &); + void updateIncludedTeXfiles(std::string const &, OutputParams const &); /// emergency save for all buffers void emergencyWriteAll(); @@ -67,6 +71,20 @@ public: Buffer * getBuffer(std::string const &); /// returns a pointer to the buffer with the given number. Buffer * getBuffer(unsigned int); + /// returns a pointer to the buffer whose temppath matches the string + Buffer * getBufferFromTmp(std::string const &); + + /** returns a pointer to the buffer that follows argument in + * buffer list. The buffer following the last in list is the + * first one. + */ + Buffer * next(Buffer const *) const; + + /** returns a pointer to the buffer that precedes argument in + * buffer list. The buffer preceding the first in list is the + * last one. + */ + Buffer * previous(Buffer const *) const; /// reset current author for all buffers void setCurrentAuthor(std::string const & name, std::string const & email); @@ -84,4 +102,10 @@ private: void emergencyWrite(Buffer * buf); }; +/// Implementation is in lyx_main.C +extern BufferList & theBufferList(); + + +} // namespace lyx + #endif // BUFFERLIST_H