]> 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 c9c7fe5a492237a3255cfc85d4c327e9c57aa1ac..64cab78beac8b478bc4aec91cf3dc6e0a9edf4e6 100644 (file)
 #ifndef INSET_BIBTEX_H
 #define INSET_BIBTEX_H
 
-#include <map>
-#include "InsetCommand.h"
 #include "BiblioInfo.h"
+#include "InsetCommand.h"
 
-namespace lyx {
+#include "support/FileNameList.h"
 
-namespace support {
-class EmbeddedFileList;
-}
+#include <map>
 
+namespace lyx {
 
 /** Used to insert BibTeX's information
   */
@@ -30,7 +28,7 @@ public:
        ///
        InsetBibtex(InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -38,35 +36,32 @@ public:
        ///
        DisplayType display() const { return AlignCenter; }
        ///
-       int latex(Buffer const &, odocstream &, OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       virtual void fillWithBibKeys(Buffer const &,
-               BiblioInfo &, InsetIterator const &) const;
+       void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        ///
-       support::EmbeddedFileList 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;
        ///
-       static CommandInfo const * findInfo(std::string const &);
+       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:
        ///
-       void registerEmbeddedFiles(Buffer const &, EmbeddedFiles &) const;
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       void updateEmbeddedFile(Buffer const & buf, EmbeddedFile const & file);
-       
-protected:
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
-private:
-       virtual Inset * clone() const;
-
+       Inset * clone() const { return new InsetBibtex(*this); }
 };