X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibtex.h;h=0a7cbf7093a71798a37cca582c9a118b35bb216a;hb=5603df4a5b7e511b31026c9a4f8f55b2b10fde57;hp=70939a88c14640350b77121a70692b2a220f2003;hpb=d9779172132ccfb57cee0cdf108ff47dc24277a2;p=lyx.git diff --git a/src/insets/insetbibtex.h b/src/insets/insetbibtex.h index 70939a88c1..0a7cbf7093 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 @@ -23,33 +23,32 @@ public: /// InsetBibtex(InsetCommandParams const &); /// - ~InsetBibtex(); + std::auto_ptr clone() const; /// - std::auto_ptr clone() const { - return std::auto_ptr(new InsetBibtex(params())); - } - /// small wrapper for the time being - virtual dispatch_result localDispatch(FuncRequest const & cmd); - /// - string const getScreenLabel(Buffer const *) const; + std::string const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; } /// - int latex(Buffer const *, std::ostream &, - LatexRunParams const &) const; + bool display() const { return true; } /// - void fillWithBibKeys(Buffer const * buffer, - std::vector > & keys) const; + int latex(Buffer const &, std::ostream &, + OutputParams const &) const; /// - std::vector const getFiles(Buffer const &) const; + void fillWithBibKeys(Buffer const & buffer, + std::vector > & keys) const; /// - bool addDatabase(string const &); + std::vector const getFiles(Buffer const &) const; /// - bool delDatabase(string const &); + bool addDatabase(std::string const &); /// - bool display() const { return true; } + bool delDatabase(std::string const &); + /// + void validate(LaTeXFeatures &) const; +protected: + /// + virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd); }; #endif // INSET_BIBTEX_H