]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBibtex.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiBibtex.h
index c2df10317bdee2ad383ef1aa5bef641c4860e1c7..3ce3ada32d5031665519c8972927f94e9c25eade 100644 (file)
 #include "ui_BibtexUi.h"
 #include "ui_BibtexAddUi.h"
 
-#include "support/docstring.h"
+#include "insets/InsetCommandParams.h"
 
-#include <vector>
 
 namespace lyx {
-
-namespace support { class FileFilterList; }
-
 namespace frontend {
 
 class GuiBibtexAddDialog : public QDialog, public Ui::BibtexAddUi
@@ -39,12 +35,12 @@ public:
 };
 
 
-class GuiBibtex : public GuiCommand, public Ui::BibtexUi
+class GuiBibtex : public GuiDialog, public Ui::BibtexUi
 {
        Q_OBJECT
 
 public:
-       GuiBibtex(GuiView & lv);
+       explicit GuiBibtex(GuiView & lv);
 
 private Q_SLOTS:
        void change_adaptor();
@@ -58,9 +54,7 @@ private Q_SLOTS:
        void databaseChanged();
        void availableChanged();
        void bibEDChanged();
-
-private:
-       void closeEvent(QCloseEvent * e);
+       void rescanClicked();
 
 private:
        ///
@@ -71,15 +65,13 @@ private:
        void updateContents();
 
        /// Browse for a .bib file
-       docstring const browseBib(docstring const & in_name) const;
-
+       QString browseBib(QString const & in_name) const;
        /// Browse for a .bst file
-       docstring const browseBst(docstring const & in_name) const;
-
+       QString browseBst(QString const & in_name) const;
        /// get the list of bst files
-       void getBibStyles(std::vector<std::string> & data) const;
+       QStringList bibStyles() const;
        /// get the list of bib files
-       void getBibFiles(std::vector<std::string> & data) const;
+       QStringList bibFiles() 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;
@@ -88,8 +80,20 @@ private:
        /// should we put the bibliography to the TOC?
        bool bibtotoc() const;
        /// which stylefile do we use?
-       std::string const getStylefile() const;
+       QString styleFile() const;
 
+       ///
+       bool initialiseParams(std::string const & data);
+       /// clean-up on hide.
+       void clearParams() { params_.clear(); }
+       /// clean-up on hide.
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
+
+private:
+       ///
+       InsetCommandParams params_;
        ///
        GuiBibtexAddDialog * add_;
        ///