]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/tex_helpers.h
Create a grfx::Loader class and so move large chunks of code out of
[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 #include "LString.h"
13
14 // build filelists of all availabe bst/cls/sty-files. done through
15 // kpsewhich and an external script, saved in *Files.lst
16 void rescanTexStyles();
17
18 /// rebuild the textree
19 void texhash();
20
21 /// return one of the three texfiles
22 string const getTexFileList(string const & filename, bool withFullPath);
23
24 /// get the options of stylefile
25 string const getListOfOptions(string const & classname, string const & type);
26
27 /// get a class with full path from the list
28 string const getTexFileFromList(string const & classname, string const & type);
29
30 #endif // TEX_HELPERS_H