X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibtex.h;h=3c461d73bb02d76936b632af361c4f0a4f98017d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=7c7b2676ef12c8c0dc863ea818721b58f45e315d;hpb=cda53633ff3a06b87889f37e9fb5b905dec4c80d;p=lyx.git diff --git a/src/insets/insetbibtex.h b/src/insets/insetbibtex.h index 7c7b2676ef..3c461d73bb 100644 --- a/src/insets/insetbibtex.h +++ b/src/insets/insetbibtex.h @@ -6,7 +6,7 @@ * * \author Alejandro Aguilar Sierra * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef INSET_BIBTEX_H @@ -16,53 +16,46 @@ #include #include "insetcommand.h" -class Buffer; +#include "support/filename.h" + + +namespace lyx { /** Used to insert BibTeX's information */ class InsetBibtex : public InsetCommand { public: /// - InsetBibtex(InsetCommandParams const &, bool same_id = false); - /// - ~InsetBibtex(); - /// - Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetBibtex(params(), same_id); - } + InsetBibtex(InsetCommandParams const &); /// - string const getScreenLabel(Buffer const *) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - Inset::Code lyxCode() const { return Inset::BIBTEX_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::BIBTEX_CODE; } /// - void edit(BufferView *, int x, int y, mouse_button::state button); - /// - void edit(BufferView * bv, bool front = true); + bool display() const { return true; } /// - int latex(Buffer const *, std::ostream &, - bool fragile, bool freespace) const; + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - void fillWithBibKeys(Buffer const *, - std::vector > &) const; + void fillWithBibKeys(Buffer const & buffer, + std::vector > & keys) const; /// - std::vector const getFiles(Buffer const &) const; + std::vector const getFiles(Buffer const &) const; /// - bool addDatabase(string const &); + bool addDatabase(std::string const &); /// - bool delDatabase(string const &); + bool delDatabase(std::string const &); /// - bool display() const { return true; } - /// - struct Holder { - InsetBibtex * inset; - BufferView * view; - }; - + void validate(LaTeXFeatures &) const; +protected: + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: - /// - Holder holder; + virtual std::auto_ptr doClone() const; + }; + +} // namespace lyx + #endif // INSET_BIBTEX_H