]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
"Inter-word Space"
[lyx.git] / src / bufferlist.h
index d049c71bf9a626f870b257d170b7d0837a54bba9..5ba7e6ffc581c5bb16fc9a4135ba6b140f23b051 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
@@ -16,6 +19,7 @@
 #include <vector>
 
 class Buffer;
+class LatexRunParams;
 
 /**
  * The class holds all all open buffers, and handles construction
@@ -36,15 +40,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();
 
@@ -57,13 +61,13 @@ public:
        std::vector<string> 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 +90,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;