// -*- C++ -*- /** * \file GuiBibtex.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 GUIBIBTEX_H #define GUIBIBTEX_H #include "GuiDialog.h" #include "ButtonController.h" #include "ui_BibtexUi.h" #include "ui_BibtexAddUi.h" #include "support/docstring.h" #include namespace lyx { namespace support { class FileFilterList; } namespace frontend { class GuiBibtexAddDialog : public QDialog, public Ui::BibtexAddUi { public: GuiBibtexAddDialog(QWidget * parent) : QDialog(parent) { Ui::BibtexAddUi::setupUi(this); QDialog::setModal(true); } }; class GuiBibtex : public GuiCommand, public Ui::BibtexUi { Q_OBJECT public: GuiBibtex(GuiView & lv); private Q_SLOTS: void change_adaptor(); void browsePressed(); void browseBibPressed(); void addPressed(); void addDatabase(); void deletePressed(); void databaseChanged(); void availableChanged(); void bibEDChanged(); private: void closeEvent(QCloseEvent * e); private: /// bool isValid(); /// Apply changes void applyView(); /// update void updateContents(); /// Browse for a .bib file docstring const browseBib(docstring const & in_name) const; /// Browse for a .bst file docstring const browseBst(docstring const & in_name) const; /// get the list of bst files void getBibStyles(std::vector & data) const; /// get the list of bib files void getBibFiles(std::vector & 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; /// should we put the bibliography to the TOC? bool bibtotoc() const; /// which stylefile do we use? std::string const getStylefile() const; /// GuiBibtexAddDialog * add_; /// ButtonController add_bc_; }; } // namespace frontend } // namespace lyx #endif // GUIBIBTEX_H