X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibtex.h;h=f2148395a000d878877176f09310bbb0c6af75fd;hb=10ba1b8918e7da14334bb5573ce2a707671c8b51;hp=4d0ca5e4e187a680b7f4a76496526030e8fff255;hpb=eab569812bc5501fc1c73168a6b48b435974f5bb;p=lyx.git diff --git a/src/insets/insetbibtex.h b/src/insets/insetbibtex.h index 4d0ca5e4e1..f2148395a0 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,8 +16,6 @@ #include #include "insetcommand.h" -//class Buffer; - /** Used to insert BibTeX's information */ class InsetBibtex : public InsetCommand { @@ -25,42 +23,32 @@ public: /// InsetBibtex(InsetCommandParams const &); /// - ~InsetBibtex(); - /// - 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 &); /// - 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; + }; #endif // INSET_BIBTEX_H