X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibtex.h;h=3c461d73bb02d76936b632af361c4f0a4f98017d;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=9911bf48a56bae01bc89d6623b4cbca2606a251c;hpb=a52418b360ee26b57dee1969e03e13ef23519037;p=lyx.git diff --git a/src/insets/insetbibtex.h b/src/insets/insetbibtex.h index 9911bf48a5..3c461d73bb 100644 --- a/src/insets/insetbibtex.h +++ b/src/insets/insetbibtex.h @@ -16,6 +16,11 @@ #include #include "insetcommand.h" +#include "support/filename.h" + + +namespace lyx { + /** Used to insert BibTeX's information */ class InsetBibtex : public InsetCommand { @@ -23,36 +28,34 @@ public: /// InsetBibtex(InsetCommandParams const &); /// - ~InsetBibtex(); - /// - std::auto_ptr clone() const; - /// - void metrics(MetricsInfo &, Dimension &) const; - /// - void draw(PainterInfo & pi, int x, int y) const; - /// small wrapper for the time being - virtual dispatch_result localDispatch(FuncRequest const & cmd); - /// - string const getScreenLabel(Buffer const &) const; + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - InsetOld::Code lyxCode() const { return InsetOld::BIBTEX_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::BIBTEX_CODE; } /// - int latex(Buffer const &, std::ostream &, - LatexRunParams const &) const; + bool display() const { return true; } + /// + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// void fillWithBibKeys(Buffer const & buffer, - std::vector > & keys) const; + 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 &); -private: + bool delDatabase(std::string const &); /// - mutable unsigned int center_indent_; + void validate(LaTeXFeatures &) const; +protected: + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); +private: + virtual std::auto_ptr doClone() const; + }; + +} // namespace lyx + #endif // INSET_BIBTEX_H