]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / bufferlist.h
index d049c71bf9a626f870b257d170b7d0837a54bba9..4cedb64c9b5e0e2334626d521c1230861df352b2 100644 (file)
@@ -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 <vector>
 
 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<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 +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<Buffer *> BufferStorage;
+
        /// storage of all buffers
        BufferStorage bstore;