Consider the case where there is not any layout name.
[lyx.git] / src / buffer_funcs.h
blob4b8758ce33a65711ff309e1982b2c88093c60d50
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.
6 * \author Lars Gullik Bjønnes
7 * \author Alfredo Braunstein
9 * Full author contact details are available in file CREDITS.
12 #ifndef BUFFER_FUNCS_H
13 #define BUFFER_FUNCS_H
15 #include "lyxlayout_ptr_fwd.h"
17 #include <string>
20 class Buffer;
21 class DocIterator;
22 class ErrorList;
23 class TeXErrors;
25 /**
26 * Loads a LyX file \c filename into \c Buffer
27 * and \return success status.
29 bool loadLyXFile(Buffer *, std::string const & filename);
31 /* Make a new file (buffer) with name \c filename based on a template
32 * named \c templatename
34 Buffer * newFile(std::string const & filename, std::string const & templatename,
35 bool isNamed = false);
37 ///return the format of the buffer on a string
38 std::string const BufferFormat(Buffer const & buffer);
39 ///
40 void bufferErrors(Buffer const &, TeXErrors const &);
41 ///
42 void bufferErrors(Buffer const &, ErrorList const &);
44 /// Count the number of words in the text between these two iterators
45 int countWords(DocIterator const & from, DocIterator const & to);
47 /// Expand the counters for the labelstring of \c layout
48 std::string expandLabel(Buffer const & buf, LyXLayout_ptr const & layout,
49 bool appendix);
51 /// updates all counters
52 void updateCounters(Buffer const &);
55 #endif // BUFFER_FUNCS_H