mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
cda53633ff
Qt users should autogen.sh Gnome users --- you're on your own ;-) Happy recompiling. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6253 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
896 B
C++
40 lines
896 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlBibtex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef CONTROLBIBTEX_H
|
|
#define CONTROLBIBTEX_H
|
|
|
|
|
|
#include "ControlCommand.h"
|
|
|
|
|
|
/** A controller for Bibtex dialogs.
|
|
*/
|
|
class ControlBibtex : public ControlCommand {
|
|
public:
|
|
///
|
|
ControlBibtex(Dialog &);
|
|
|
|
/// Browse for a file
|
|
string const Browse(string const &, string const &, string const &);
|
|
/// get the list of bst files
|
|
string const getBibStyles() const;
|
|
/// get the list of bib files
|
|
string const getBibFiles() const;
|
|
/// build filelists of all availabe bib/bst/cls/sty-files. done through
|
|
/// kpsewhich and an external script, saved in *Files.lst
|
|
void rescanBibStyles() const;
|
|
};
|
|
|
|
|
|
#endif // CONTROLBIBTEX_H
|