]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Move isMultiCell() to Cursor, and use it.
[lyx.git] / src / insets / InsetBibtex.h
index ff511d2479d1ce994ce68fa0131f2d3cb8e19645..ad6e064e712ef58d418a065b415f1f4ddffd287e 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
   */
 class InsetBibtex : public InsetCommand {
 public:
        ///
-       InsetBibtex(InsetCommandParams const &);
+       InsetBibtex(Buffer const &, InsetCommandParams const &);
+       ///
+       virtual ~InsetBibtex();
        ///
        docstring screenLabel() const;
        ///
+       docstring toolTip(BufferView const & bv, int x, int y) const;
+       ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetCode lyxCode() const { return BIBTEX_CODE; }
@@ -39,11 +44,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,23 +58,19 @@ 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
-       */
-       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);
-       /// embedded bib files
-       mutable EmbeddedFileList bibfiles_;
+       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); }
 };