]> git.lyx.org Git - lyx.git/blob - src/lyx_cb.h
* Painter.h:
[lyx.git] / src / lyx_cb.h
1 // -*- C++ -*-
2 /**
3  * \file lyx_cb.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_CB_H
13 #define LYX_CB_H
14
15 #include <string>
16
17 namespace lyx {
18
19 class Buffer;
20 class BufferView;
21
22 ///
23 extern bool quitting;
24
25 ///
26 bool menuWrite(Buffer * buffer);
27 /// write the given file, or ask if no name given
28 bool writeAs(Buffer * buffer, std::string const & filename = std::string());
29 ///
30 void autoSave(BufferView * bv);
31 ///
32 void newFile(BufferView * bv, std::string const & filename);
33 ///
34 void insertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
35 ///
36 std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
37 ///
38 void reconfigure(BufferView * bv);
39
40 } // namespace lyx
41
42 #endif