]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetBibtex.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[features.git] / src / insets / InsetBibtex.h
index 94f8836ec14dc64e0b817fb2e9196df154faa8a5..64cab78beac8b478bc4aec91cf3dc6e0a9edf4e6 100644 (file)
 #ifndef INSET_BIBTEX_H
 #define INSET_BIBTEX_H
 
-
-#include <vector>
+#include "BiblioInfo.h"
 #include "InsetCommand.h"
 
-#include "support/FileName.h"
+#include "support/FileNameList.h"
 
+#include <map>
 
 namespace lyx {
 
@@ -28,31 +28,40 @@ public:
        ///
        InsetBibtex(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::BIBTEX_CODE; }
+       InsetCode lyxCode() const { return BIBTEX_CODE; }
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int latex(Buffer const &, odocstream &, OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       void fillWithBibKeys(Buffer const & buffer,
-               std::vector<std::pair<std::string, docstring> > & keys) const;
+       void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        ///
-       std::vector<support::FileName> const getFiles(Buffer const &) const;
+       support::FileNameList getBibFiles() const;
        ///
-       bool addDatabase(std::string const &);
+       bool addDatabase(docstring const &);
        ///
-       bool delDatabase(std::string const &);
+       bool delDatabase(docstring const &);
        ///
        void validate(LaTeXFeatures &) const;
-protected:
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "bibtex"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "bibtex"; }
+       /// look up the path to the file using TeX
+       static support::FileName 
+               getBibTeXPath(docstring const & filename, Buffer const & buf);
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
-
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       Inset * clone() const { return new InsetBibtex(*this); }
 };