]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/tex_helpers.h
Small clean-up.
[lyx.git] / src / frontends / controllers / tex_helpers.h
1 // -*- C++ -*-
2 /**
3  * \file tex_helpers.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Herbert Voß
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef TEX_HELPERS_H
13 #define TEX_HELPERS_H
14
15
16 #include "support/std_string.h"
17 #include <vector>
18
19
20 // build filelists of all availabe bst/cls/sty-files. done through
21 // kpsewhich and an external script, saved in *Files.lst
22 void rescanTexStyles();
23
24 /// rebuild the textree
25 void texhash();
26
27 /** Fill \c contents from one of the three texfiles.
28  *  Each entry in the file list is returned as a name_with_path
29  */
30 void getTexFileList(string const & filename, std::vector<string> & contents);
31
32 /// get the options of stylefile
33 string const getListOfOptions(string const & classname, string const & type);
34
35 /// get a class with full path from the list
36 string const getTexFileFromList(string const & classname, string const & type);
37
38 #endif // TEX_HELPERS_H