]> 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 05fb37451e01d5cee422b4ce4dedf04710f17056..7950b486fac84dab65e1bc6dbf42a8ee3bb725c6 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"
 
-class EmbeddedFileList;
+#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 const getScreenLabel(Buffer const &) const;
+       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; }
        ///
        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;
        ///
-       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;
        ///
+       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"; }
+       /// 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(Buffer const &, EmbeddedFileList &) const;
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       void updateEmbeddedFile(Buffer const & buf, EmbeddedFile const & file);
-       
-protected:
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
-private:
+       void editDatabases() const;
        ///
-       virtual Inset * clone() const;
-
+       Inset * clone() const { return new InsetBibtex(*this); }
 };