]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/tex_helpers.h
Really dull and boring header shit
[lyx.git] / src / frontends / controllers / tex_helpers.h
1 /**
2  * \file tex_helpers.h
3  * Read the file COPYING
4  *
5  * \author Herbert Voss 
6  *
7  * Full author contact details are available in file CREDITS
8  */
9
10 #ifndef TEX_HELPERS_H
11 #define TEX_HELPERS_H
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "LString.h"
18
19 // build filelists of all availabe bst/cls/sty-files. done through
20 // kpsewhich and an external script, saved in *Files.lst
21 void rescanTexStyles();
22
23 /// rebuild the textree
24 void texhash();
25
26 /// return one of the three texfiles
27 string const getTexFileList(string const & filename, bool withFullPath);
28
29 /// get the options of stylefile
30 string const getListOfOptions(string const & classname, string const & type);
31
32 /// get a class with full path from the list
33 string const getTexFileFromList(string const & classname, string const & type);
34
35 #endif // TEX_HELPERS_H