]> git.lyx.org Git - lyx.git/blob - src/buffer_funcs.h
Small update to README
[lyx.git] / src / buffer_funcs.h
1 // -*- C++ -*-
2 /* \file buffer_funcs.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Alfredo Braunstein
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef BUFFER_FUNCS_H
13 #define BUFFER_FUNCS_H
14
15 #include <string>
16
17 namespace lyx {
18
19 namespace support { class FileName; }
20
21 class Buffer;
22 class DocIterator;
23 class ParIterator;
24
25 /**
26  *  Checks and loads a LyX file \param filename.
27  *  \retval the newly created \c Buffer pointer if successful or 0.
28  *  \retval 0 if the \c Buffer could not be created.
29  */
30 Buffer * checkAndLoadLyXFile(support::FileName const & filename,
31                 bool acceptDirty = false);
32
33 /** Make a new file (buffer) with name \c filename based on a template
34  *  named \c templatename
35  */
36 Buffer * newFile(std::string const & filename, std::string const & templatename,
37                  bool isNamed = false);
38
39 /** Make a new unnamed file (buffer) with prefix \c prefix
40  *  based on a template named \c templatename
41  */
42 Buffer * newUnnamedFile(support::FileName const & path,
43         std::string const & prefix, std::string const & templatename = "");
44
45 /// Load the file with name \c fname, and returns the buffer. If the
46 /// file was already loaded it just returns the associated buffer.
47 Buffer * loadIfNeeded(support::FileName const & fname);
48
49 } // namespace lyx
50
51 #endif // BUFFER_FUNCS_H