]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibtex.h
Fix bug #6315: counters in insets that don't produce output have ghost values.
[lyx.git] / src / insets / InsetBibtex.h
index 59b61c5e82bfbf3526d29cffaf109f4efa30b6e8..75d010aa7c39b20dcbab7cddfa82df8c23b22a7e 100644 (file)
 #ifndef INSET_BIBTEX_H
 #define INSET_BIBTEX_H
 
-
-#include <vector>
 #include "InsetCommand.h"
 
-#include "support/filename.h"
+namespace lyx {
 
+class BiblioInfo;
 
-namespace lyx {
+namespace support {
+       class FileName;
+       class FileNameList;
+}
 
 /** Used to insert BibTeX's information
   */
 class InsetBibtex : public InsetCommand {
 public:
        ///
-       InsetBibtex(InsetCommandParams const &);
+       InsetBibtex(Buffer *, InsetCommandParams const &);
+       ///
+       ~InsetBibtex();
+
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       support::FileNameList getBibFiles() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool addDatabase(docstring const &);
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::BIBTEX_CODE; }
+       bool delDatabase(docstring const &);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
-       bool display() const { return true; }
+       docstring toolTip(BufferView const & bv, int x, int y) const;
        ///
-       int latex(Buffer const &, odocstream &, OutputParams const &) const;
+       bool hasSettings() const { return true; }
        ///
-       void fillWithBibKeys(Buffer const & buffer,
-               std::vector<std::pair<std::string, docstring> > & keys) const;
+       InsetCode lyxCode() const { return BIBTEX_CODE; }
        ///
-       std::vector<support::FileName> const getFiles(Buffer const &) const;
+       DisplayType display() const { return AlignCenter; }
        ///
-       bool addDatabase(std::string const &);
+       int latex(odocstream &, OutputParams const &) const;
        ///
-       bool delDatabase(std::string const &);
+       void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        ///
        void validate(LaTeXFeatures &) const;
-protected:
-       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       ///
+       docstring contextMenu(BufferView const &, int, int) const;
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "bibtex"; }
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "bibtex"; }
+       //@}
+
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       /// look up the path to the file using TeX
+       static support::FileName 
+               getBibTeXPath(docstring const & filename, Buffer const & buf);
+       ///
+       void editDatabases() const;
 
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
+       bool getStatus(Cursor & cur, FuncRequest const & cmd,
+               FuncStatus & flag) const;
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       Inset * clone() const { return new InsetBibtex(*this); }
+       //@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
 };