]> 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 ca15e131ec5e3f8ed78744bfeaa28f20a8f189bb..64cab78beac8b478bc4aec91cf3dc6e0a9edf4e6 100644 (file)
 #ifndef INSET_BIBTEX_H
 #define INSET_BIBTEX_H
 
-#include <map>
-#include "InsetCommand.h"
 #include "BiblioInfo.h"
-#include "EmbeddedFiles.h"
+#include "InsetCommand.h"
 
-namespace lyx {
+#include "support/FileNameList.h"
 
+#include <map>
+
+namespace lyx {
 
 /** Used to insert BibTeX's information
   */
@@ -39,11 +40,11 @@ public:
        ///
        void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        ///
-       EmbeddedFileList embeddedFiles() 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;
        ///
@@ -53,25 +54,10 @@ public:
        ///
        static bool isCompatibleCommand(std::string const & s) 
                { return s == "bibtex"; }
-       /// create bibfiles_ from params bibfiles and embed
-       /**
-               \param bibfiles comma separated bib files
-               \param embed comma separated embed status
-               \param boolStatus if true, embed has values true/false, which 
-                       needs to be converted to inzip names.
-               \param updateFile whether or not try to update file.
-       */
-       void createBibFiles(docstring const & bibfiles, docstring const & embed,
-               bool boolStatus, bool updateFile) const;
-       /// update bibfiles and embed from bibfiles_
-       void updateParam();
+       /// look up the path to the file using TeX
+       static support::FileName 
+               getBibTeXPath(docstring const & filename, Buffer const & buf);
 private:
-       ///
-       void registerEmbeddedFiles(EmbeddedFileList &) const;
-       ///
-       void updateEmbeddedFile(EmbeddedFile const & file);
-       /// embedded bib files
-       mutable EmbeddedFileList bibfiles_;
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///