]> git.lyx.org Git - lyx.git/blob - src/lyx_cb.h
* Application.C (Application): initialize correctly current_view_.
[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 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 insertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
36 ///
37 std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
38 ///
39 void reconfigure(LyXView & lv);
40
41 } // namespace lyx
42
43 #endif