]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
Alfredo's second patch
[lyx.git] / src / bufferlist.h
index d049c71bf9a626f870b257d170b7d0837a54bba9..0dbd2434b380af635077c51efb3d9d5dd9f8732b 100644 (file)
@@ -1,10 +1,13 @@
 // -*- C++ -*-
-/** \file
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+/**
+ * \file bufferlist.C
+ * 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
@@ -36,15 +39,15 @@ public:
        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();
 
@@ -63,7 +66,7 @@ public:
        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 +89,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<Buffer *> BufferStorage;
+
        /// storage of all buffers
        BufferStorage bstore;