]> git.lyx.org Git - lyx.git/blobdiff - src/bufferlist.h
Make string conversion work with non-ucs2-characters if using qt 4.2
[lyx.git] / src / bufferlist.h
index 0b480edc03de4731b134351dd9369a0f697aa07d..161f95b7f520a63a2742f7ad0d10322164507795 100644 (file)
@@ -17,6 +17,9 @@
 #include <string>
 #include <vector>
 
+
+namespace lyx {
+
 class Buffer;
 class OutputParams;
 
@@ -25,9 +28,19 @@ class OutputParams;
  * and deletions of new ones.
  */
 class BufferList : boost::noncopyable {
+public:
+       typedef std::vector<Buffer *>::iterator iterator;
+       typedef std::vector<Buffer *>::const_iterator const_iterator;
+
 public:
        BufferList();
 
+       iterator begin();
+       const_iterator begin() const;
+
+       iterator end();
+       const_iterator end() const;
+
        /// write all buffers, asking the user, returns false if cancelled
        bool quitWriteAll();
 
@@ -58,6 +71,9 @@ public:
        /// return head of buffer list if any
        Buffer * first();
 
+       /// return back of buffer list if any
+       Buffer * last();
+
        /// returns true if the buffer exists already
        bool exists(std::string const &) const;
 
@@ -69,7 +85,7 @@ public:
        /// 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 * BufferList::getBufferFromTmp(std::string const &);
+       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
@@ -99,4 +115,10 @@ private:
        void emergencyWrite(Buffer * buf);
 };
 
+/// Implementation is in lyx_main.C
+extern BufferList & theBufferList();
+
+
+} // namespace lyx
+
 #endif // BUFFERLIST_H