X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=2ca9fefe551d2db3404e8b16ba85323abf66b422;hb=b9963e1a57135c3e2ab128a9ec4300f0e4886992;hp=84f9a8047ed5e30b52ff3d00ad056c97c4ddeeb4;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index 84f9a8047e..2ca9fefe55 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -14,10 +14,11 @@ #include +#include #include class Buffer; -class LatexRunParams; +class OutputParams; /** * The class holds all all open buffers, and handles construction @@ -43,7 +44,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 +68,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);