]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetBibtex.h
index 3d841e9f5f995ee03c81a80373932a74007d969f..7950b486fac84dab65e1bc6dbf42a8ee3bb725c6 100644 (file)
 #define INSET_BIBTEX_H
 
 #include "BiblioInfo.h"
-#include "EmbeddedFiles.h"
 #include "InsetCommand.h"
 
+#include "support/FileNameList.h"
+
 #include <map>
 
 namespace lyx {
 
-
 /** Used to insert BibTeX's information
   */
 class InsetBibtex : public InsetCommand {
 public:
        ///
-       InsetBibtex(InsetCommandParams const &);
+       InsetBibtex(Buffer const &, InsetCommandParams const &);
        ///
-       virtual void setBuffer(Buffer & buffer);
+       virtual ~InsetBibtex();
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return BIBTEX_CODE; }
        ///
@@ -42,39 +44,37 @@ public:
        ///
        void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        ///
-       EmbeddedFileList const & getBibFiles() 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;
        ///
+       docstring xhtml(odocstream &, OutputParams const &) const;
+       ///
        static ParamInfo const & findInfo(std::string const &);
        ///
        static std::string defaultCommand() { return "bibtex"; };
        ///
        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
-       */
-       void createBibFiles(docstring const & bibfiles, docstring const & embed) 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);
+       ///
+       docstring contextMenu(BufferView const &, int, int) const;
 private:
        ///
-       void registerEmbeddedFiles(EmbeddedFileList &) const;
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       void updateEmbeddedFile(EmbeddedFile const & file);
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
        ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       void editDatabases() const;
        ///
        Inset * clone() const { return new InsetBibtex(*this); }
-       /// embedded bib files
-       mutable EmbeddedFileList bibfiles_;
 };