]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/tex_helpers.h
port the minipage dialog to the new scheme. Various other small changes
[lyx.git] / src / frontends / controllers / tex_helpers.h
1 /**
2  * \file tex_helpers.h
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Herbert Voss
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef TEX_HELPERS_H
12 #define TEX_HELPERS_H
13
14
15 #include "LString.h"
16
17 // build filelists of all availabe bst/cls/sty-files. done through
18 // kpsewhich and an external script, saved in *Files.lst
19 void rescanTexStyles();
20
21 /// rebuild the textree
22 void texhash();
23
24 /// return one of the three texfiles
25 string const getTexFileList(string const & filename, bool withFullPath);
26
27 /// get the options of stylefile
28 string const getListOfOptions(string const & classname, string const & type);
29
30 /// get a class with full path from the list
31 string const getTexFileFromList(string const & classname, string const & type);
32
33 #endif // TEX_HELPERS_H