]> git.lyx.org Git - lyx.git/blob - src/bufferlist.h
da970e6fe8774ebfc0c420399fe4278edb1a28bb
[lyx.git] / src / bufferlist.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor         
6  *           Copyright 1995 Matthias Ettrich
7  *           Copyright 1995-2000 The LyX Team
8  *
9  *           This file is Copyright 1996-2000
10  *           Lars Gullik Bjønnes
11  *
12  * ====================================================== */
13
14 #ifndef BUFFER_LIST_H
15 #define BUFFER_LIST_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "buffer.h"
22 #include "debug.h"
23 #include "support/utility.hpp"
24
25 /** A class to hold all the buffers in a structure
26   The point of this class is to hide from bufferlist what kind
27   of structure the buffers are stored in. Should be no concern for
28   bufferlist if the buffers is in a array or in a linked list.
29
30   This class should ideally be enclosed inside class BufferList, but that
31   gave me an "internal gcc error".
32   */
33 class BufferStorage : public noncopyable {
34 public:
35         ///
36         typedef std::vector<Buffer *> Container;
37         ///
38         typedef Container::iterator iterator;
39         ///
40         typedef Container::const_iterator const_iterator;
41         ///
42         bool empty() const { return container.empty(); }
43         ///
44         void release(Buffer * buf);
45         ///
46         Buffer * newBuffer(string const & s, bool = false);
47         ///
48         Container::iterator begin() { return container.begin(); }
49         ///
50         Container::iterator end() { return container.end(); }
51         ///
52         Container::const_iterator begin() const { return container.begin(); }
53         ///
54         Container::const_iterator end() const { return container.end(); }
55         ///
56         Buffer * front() { return container.front(); }
57         ///
58         Buffer * operator[](int c) { return container[c]; }
59         ///
60         int size() const { return container.size(); }
61 private:
62         ///
63         Container container;
64 };
65
66
67 /** The class govern all open buffers.
68  */
69 class BufferList : public noncopyable {
70 public:
71         ///
72         BufferList();
73
74         /// state info
75         enum list_state {
76                 ///
77                 OK,
78                 ///
79                 CLOSING
80         };
81
82         /// returns the state of the bufferlist
83         list_state getState() const { return state_; }
84         
85         /** loads a LyX file or...
86             If the optional argument tolastfiles is false (default is
87             true), the file name will not be added to the last opened
88             files list
89         */  
90         Buffer * loadLyXFile(string const & filename, 
91                              bool tolastfiles = true);
92         
93         ///
94         bool empty() const;
95
96         ///
97         bool QwriteAll();
98
99         /// Close all open buffers.
100         void closeAll();
101
102         ///
103         void resize();
104
105         /// Read a file into a buffer readonly or not.
106         Buffer * readFile(string const &, bool ro);
107
108         /// Make a new file (buffer) using a template
109         Buffer * newFile(string const &, string, bool isNamed=false);
110         /// returns a vector with all the buffers filenames
111         std::vector<string> getFileNames() const;
112
113         ///
114         int unlockInset(UpdatableInset *);
115
116         ///
117         void updateIncludedTeXfiles(string const &);
118
119         ///
120         void emergencyWriteAll();
121
122         /** Close buffer.
123             @param buf the buffer that should be closed
124             @return #false# if operation was canceled
125           */
126         bool close(Buffer * buf);
127
128         ///
129         Buffer * first();
130         
131         /// returns true if the buffer exists already
132         bool exists(string const &) const;
133
134         /// returns true if the buffer is loaded
135         bool isLoaded(Buffer const * b) const;
136         
137         /// returns a pointer to the buffer with the given name.
138         Buffer * getBuffer(string const &);
139         /// returns a pointer to the buffer with the given number.
140         Buffer * getBuffer(int);
141
142 private:
143         ///
144         BufferStorage bstore;
145         
146         ///
147         list_state state_;
148 };
149
150 #endif