X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fbufferlist.h;h=4cedb64c9b5e0e2334626d521c1230861df352b2;hb=09e01879979643949f1f2c7216023f1f35d5ada2;hp=d049c71bf9a626f870b257d170b7d0837a54bba9;hpb=9fc9bd98f6b52732ec7e43e163e2db4df9f80a2d;p=lyx.git diff --git a/src/bufferlist.h b/src/bufferlist.h index d049c71bf9..4cedb64c9b 100644 --- a/src/bufferlist.h +++ b/src/bufferlist.h @@ -1,10 +1,13 @@ // -*- C++ -*- -/** \file - * Copyright 2002 the LyX Team - * Read the file COPYING +/** + * \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 * - * \author Lars Gullik Bjønnes -*/ + * Full author contact details are available in file CREDITS + */ #ifndef BUFFER_LIST_H #define BUFFER_LIST_H @@ -16,6 +19,7 @@ #include class Buffer; +class LatexRunParams; /** * The class holds all all open buffers, and handles construction @@ -25,45 +29,29 @@ class BufferList : boost::noncopyable { public: BufferList(); - /** - Loads a LyX file or... - - \param filename The filename to read from. - \param tolastfiles Wether the file should be put in the - last opened files list or not. - \return The newly loaded LyX file. - */ - Buffer * loadLyXFile(string const & filename, - bool tolastfiles = true); - - /// write all buffers, asking the user - bool qwriteAll(); + /// write all buffers, asking the user, returns false if cancelled + bool quitWriteAll(); /// create a new buffer Buffer * newBuffer(string const & s, bool ronly = false); /// delete a buffer void release(Buffer * b); - + /// Close all open buffers. void closeAll(); - /// read the given file - Buffer * readFile(string const &, bool ro); - - /// Make a new file (buffer) using a template - Buffer * newFile(string const &, string, bool isNamed = false); /// returns a vector with all the buffers filenames std::vector const getFileNames() const; /// FIXME - void updateIncludedTeXfiles(string const &); + void updateIncludedTeXfiles(string const &, LatexRunParams const &); /// emergency save for all buffers void emergencyWriteAll(); /// close buffer. Returns false if cancelled by user - bool close(Buffer * buf); + bool close(Buffer * buf, bool ask); /// return true if no buffers loaded bool empty() const; @@ -86,12 +74,11 @@ public: void setCurrentAuthor(string const & name, string const & email); private: - /// ask to save a buffer on quit - bool qwriteOne(Buffer * buf, string const & fname, - string & unsaved_list); + /// ask to save a buffer on quit, returns false if should cancel + bool quitWriteBuffer(Buffer * buf); typedef std::vector BufferStorage; - + /// storage of all buffers BufferStorage bstore;