]> git.lyx.org Git - lyx.git/blob - src/callback.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / callback.h
1 // -*- C++ -*-
2 /**
3  * \file callback.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 CALLBACK_H
13 #define CALLBACK_H
14
15 #include "support/docstring.h"
16
17 namespace lyx {
18
19 class Buffer;
20 class BufferView;
21 class LyXView;
22
23 ///
24 extern bool quitting;
25
26 ///
27 bool menuWrite(Buffer * buffer);
28 /// write the given file, or ask if no name given
29 bool writeAs(Buffer * buffer, std::string const & filename = std::string());
30 ///
31 void autoSave(BufferView * bv);
32 ///
33 void newFile(BufferView * bv, std::string const & filename);
34 ///
35 void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
36 /// read plain text file (if \p f is empty, prompt for a filename)
37 docstring const getContentsOfPlaintextFile(BufferView * bv,
38                 std::string const & f, bool asParagraph);
39 ///
40 void reconfigure(LyXView & lv);
41
42 } // namespace lyx
43
44 #endif