]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/tex_helpers.h
Merge Herbert's bibtex patch; it doesn't introduce any new bugs and
[lyx.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 // build filelists of all availabe bst/cls/sty-files. done through
13 // kpsewhich and an external script, saved in *Files.lst
14 void rescanTexStyles();
15
16 /// rebuild the textree
17 void texhash();
18
19 /// return one of the three texfiles
20 string const getTexFileList(string const & filename, bool withFullPath);
21
22 /// get the options of stylefile
23 string const getListOfOptions(string const & classname,
24                             string const & type);
25
26 /// get a class with full path from the list
27 string const getTexFileFromList(string const & classname,
28                             string const & type);
29
30 #endif // TEX_HELPERS_H