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