X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=93d172068604fd7b1215cb0e0405b2e8602647eb;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=a9f8768c1d2d9afe29d3bfb79a4fd62df46f9cd8;hpb=2d8eb4b9d466e8293534ef7410737aa9448361c6;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index a9f8768c1d..93d1720686 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -1,25 +1,27 @@ // -*- C++ -*- /** - * \file bufferlist.C + * \file bufferlist.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Lars Gullik Bjønnes * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef BUFFER_LIST_H #define BUFFER_LIST_H -#include "LString.h" - #include +#include #include + +namespace lyx { + class Buffer; -class LatexRunParams; +class OutputParams; /** * The class holds all all open buffers, and handles construction @@ -33,7 +35,7 @@ public: bool quitWriteAll(); /// create a new buffer - Buffer * newBuffer(string const & s, bool ronly = false); + Buffer * newBuffer(std::string const & s, bool ronly = false); /// delete a buffer void release(Buffer * b); @@ -42,10 +44,10 @@ public: void closeAll(); /// returns a vector with all the buffers filenames - std::vector const getFileNames() const; + std::vector const getFileNames() const; /// FIXME - void updateIncludedTeXfiles(string const &, LatexRunParams const &); + void updateIncludedTeXfiles(std::string const &, OutputParams const &); /// emergency save for all buffers void emergencyWriteAll(); @@ -60,18 +62,32 @@ public: Buffer * first(); /// returns true if the buffer exists already - bool exists(string const &) const; + bool exists(std::string const &) const; /// returns true if the buffer is loaded bool isLoaded(Buffer const * b) const; /// returns a pointer to the buffer with the given name. - Buffer * getBuffer(string const &); + 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(string const & name, string const & email); + void setCurrentAuthor(std::string const & name, std::string const & email); private: /// ask to save a buffer on quit, returns false if should cancel @@ -86,4 +102,10 @@ private: void emergencyWrite(Buffer * buf); }; +/// Implementation is in lyx_main.C +extern BufferList & theBufferList(); + + +} // namespace lyx + #endif // BUFFERLIST_H