]> git.lyx.org Git - lyx.git/blob - src/bufferview_funcs.h
split LyXFunc::getStatus() into inset specific chunks
[lyx.git] / src / bufferview_funcs.h
1 // -*- C++ -*-
2 /**
3  * \file bufferview_funcs.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  * \author Jean-Marc Lasgouttes
9  * \author Angus Leeming
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef BUFFERVIEW_FUNCS_H
15 #define BUFFERVIEW_FUNCS_H
16
17 #include <string>
18
19 class LyXFont;
20
21
22 namespace bv_funcs {
23
24 /// Set \param data using \param font and \param toggle. Return success.
25 bool font2string(LyXFont const & font, bool toggle, std::string & data);
26
27 /// Set \param font and \param toggle using \param data. Return success.
28 bool string2font(std::string const & data, LyXFont & font, bool & toggle);
29
30 /** Returns the current freefont, encoded as a std::string to be passed to the
31  *  frontends.
32  */
33 std::string const freefont2string();
34
35 } // namespace bv_funcs
36
37 #endif