]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlBibtex.h
fix crash due to invalidated iterator
[lyx.git] / src / frontends / controllers / ControlBibtex.h
index 2be3c6c241f4401ecea4798dfe5b3bd4f4ffb260..0dc3d0db628beadd92e488a9777840b238454171 100644 (file)
@@ -1,38 +1,56 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
+/**
+ * \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
  *
- * \file ControlBibtex.h
- * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CONTROLBIBTEX_H
 #define CONTROLBIBTEX_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 #include "ControlCommand.h"
+#include <vector>
+
+namespace lyx {
+namespace support {
+
+class FileFilterList;
+
+} // namespace support
+
+
+namespace frontend {
 
 /** A controller for Bibtex dialogs.
  */
-class ControlBibtex : public ControlCommand
-{
+class ControlBibtex : public ControlCommand {
 public:
        ///
-       ControlBibtex(LyXView &, Dialogs &);
+       ControlBibtex(Dialog &);
 
-protected:
-       /// Get changed parameters and Dispatch them to the kernel.
-       virtual void apply();
+       /// Browse for a .bib file
+       std::string const browseBib(std::string const & in_name) const;
+
+       /// Browse for a .bst file
+       std::string const browseBst(std::string const & in_name) const;
+
+       /// get the list of bst files
+       void getBibStyles(std::vector<std::string> & data) const;
+       /// get the list of bib files
+       void getBibFiles(std::vector<std::string> & data) 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;
+       /// do we use bibtopic (for sectioned bibliography)?
+       bool usingBibtopic() const;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // CONTROLBIBTEX_H